diff
stringlengths
41
2.03M
msg
stringlengths
1
1.5k
repo
stringlengths
5
40
sha
stringlengths
40
40
time
stringlengths
20
20
mmm a / test / unittests / wasm / function - body - decoder - unittest . cc <nl> ppp b / test / unittests / wasm / function - body - decoder - unittest . cc <nl> using F = std : : pair < ValueType , bool > ; <nl> class TestModuleBuilder { <nl> public : <nl> explicit TestModuleBuilder ( ModuleOrigin origin = kWasmOrigin ) <nl> - : allocator ( ) , mod ( std : : make_unique < Zone > ( & allocator , " TEST_ZONE " ) ) { <nl> + : allocator ( ) , mod ( std : : make_unique < Zone > ( & allocator , ZONE_NAME ) ) { <nl> mod . origin = origin ; <nl> } <nl> byte AddGlobal ( ValueType type , bool mutability = true ) { <nl> mmm a / test / unittests / wasm / subtyping - unittest . cc <nl> ppp b / test / unittests / wasm / subtyping - unittest . cc <nl> namespace internal { <nl> namespace wasm { <nl> namespace subtyping_unittest { <nl> <nl> - class WasmSubtypingTest : public TestWithZone { } ; <nl> + class WasmSubtypingTest : public : : testing : : Test { } ; <nl> using FieldInit = std : : pair < ValueType , bool > ; <nl> <nl> ValueType ref ( uint32_t index ) { return ValueType : : Ref ( index , kNonNullable ) ; } <nl> void DefineArray ( WasmModule * module , FieldInit element_type ) { <nl> <nl> TEST_F ( WasmSubtypingTest , Subtyping ) { <nl> v8 : : internal : : AccountingAllocator allocator ; <nl> - <nl> - WasmModule module_ ( std : : make_unique < Zone > ( * ( zone ( ) ) ) ) ; <nl> + WasmModule module_ ( std : : make_unique < Zone > ( & allocator , ZONE_NAME ) ) ; <nl> <nl> WasmModule * module = & module_ ; <nl> <nl>
[ cleanup ] Fix the way how Zones are created in tests
v8/v8
c7eb5e7281ce355608178198db462cd908c387fa
2020-07-03T10:30:10Z
mmm a / xbmc / video / ContextMenus . cpp <nl> ppp b / xbmc / video / ContextMenus . cpp <nl> bool CPlay : : IsVisible ( const CFileItem & itemIn ) const <nl> if ( IsActiveRecordingsFolder ( item ) ) <nl> return true ; <nl> <nl> + / / Music nav window has own " Play " context menu button , do not show this one . Playlist files <nl> + / / like . m3u and . strm return IsVideo ( ) true but from music nav window play with paplayer . <nl> + const int currentWindow = CServiceBroker : : GetGUI ( ) - > GetWindowManager ( ) . GetActiveWindow ( ) ; <nl> + if ( currentWindow = = WINDOW_MUSIC_NAV ) <nl> + return false ; <nl> + <nl> if ( item . m_bIsFolder ) <nl> return false ; / / ! @ todo implement <nl> <nl>
Fix extra " play " context menu for . m3u files on music Playlists node
xbmc/xbmc
70de0fb4ab88942d175769958644ec5fb888d8ec
2020-11-06T09:51:09Z
mmm a / Marlin / src / pins / pins . h <nl> ppp b / Marlin / src / pins / pins . h <nl> <nl> # include " pins_AZTEEG_X3_PRO . h " / / ATmega2560 env : megaatmega2560 <nl> # elif MB ( ULTIMAIN_2 ) <nl> # include " pins_ULTIMAIN_2 . h " / / ATmega2560 env : megaatmega2560 <nl> + # elif MB ( FORMBOT ) <nl> + # include " pins_FORMBOT . h " / / ATmega2560 env : megaatmega2560 <nl> # elif MB ( RUMBA ) <nl> # include " pins_RUMBA . h " / / ATmega2560 env : megaatmega2560 <nl> # elif MB ( BQ_ZUM_MEGA_3D ) <nl>
Update pins . h to include the Formbot board
MarlinFirmware/Marlin
62ce937540cc2948511e7bbe1aafae9126e6a843
2018-08-20T21:44:54Z
mmm a / src / app / ui / status_bar . cpp <nl> ppp b / src / app / ui / status_bar . cpp <nl> class StatusBar : : Indicators : public HBox { <nl> <nl> private : <nl> void onPaint ( ui : : PaintEvent & ev ) override { <nl> - SkinTheme * theme = static_cast < SkinTheme * > ( this - > theme ( ) ) ; <nl> Rect rc = clientBounds ( ) ; <nl> Graphics * g = ev . graphics ( ) ; <nl> <nl>
Remove unused variable
aseprite/aseprite
7c2786164d877b2cb928ed23625a484b52e0bade
2016-04-21T16:31:24Z
mmm a / editor / editor_about . cpp <nl> ppp b / editor / editor_about . cpp <nl> EditorAbout : : EditorAbout ( ) { <nl> tc - > add_child ( license_thirdparty ) ; <nl> <nl> Label * tpl_label = memnew ( Label ) ; <nl> - tpl_label - > set_custom_minimum_size ( Size2 ( 0 , 64 * EDSCALE ) ) ; <nl> tpl_label - > set_h_size_flags ( Control : : SIZE_EXPAND_FILL ) ; <nl> tpl_label - > set_autowrap ( true ) ; <nl> tpl_label - > set_text ( TTR ( " Godot Engine relies on a number of thirdparty free and open source libraries , all compatible with the terms of its MIT license . The following is an exhaustive list of all such thirdparty components with their respective copyright statements and license terms . " ) ) ; <nl> mmm a / scene / gui / label . cpp <nl> ppp b / scene / gui / label . cpp <nl> void Label : : set_autowrap ( bool p_autowrap ) { <nl> <nl> autowrap = p_autowrap ; <nl> word_cache_dirty = true ; <nl> - minimum_size_changed ( ) ; <nl> update ( ) ; <nl> } <nl> bool Label : : has_autowrap ( ) const { <nl> void Label : : set_uppercase ( bool p_uppercase ) { <nl> <nl> uppercase = p_uppercase ; <nl> word_cache_dirty = true ; <nl> - minimum_size_changed ( ) ; <nl> update ( ) ; <nl> } <nl> bool Label : : is_uppercase ( ) const { <nl> void Label : : _notification ( int p_what ) { <nl> xl_text = new_text ; <nl> <nl> regenerate_word_cache ( ) ; <nl> - minimum_size_changed ( ) ; <nl> update ( ) ; <nl> } <nl> <nl> void Label : : regenerate_word_cache ( ) { <nl> minsize . height = ( font - > get_height ( ) * line_count ) + ( line_spacing * ( line_count - 1 ) ) ; <nl> } <nl> <nl> + minimum_size_changed ( ) ; <nl> word_cache_dirty = false ; <nl> } <nl> <nl> void Label : : set_text ( const String & p_string ) { <nl> if ( percent_visible < 1 ) <nl> visible_chars = get_total_character_count ( ) * percent_visible ; <nl> update ( ) ; <nl> - if ( ! autowrap ) { <nl> - minimum_size_changed ( ) ; <nl> - } <nl> } <nl> <nl> void Label : : set_clip_text ( bool p_clip ) { <nl>
Merge pull request from Noshyaar / pr - about
godotengine/godot
d94ac4b9497923db3188742e270db67ed7f0fb79
2017-07-25T12:18:38Z
mmm a / xbmc / addons / AddonInstaller . cpp <nl> ppp b / xbmc / addons / AddonInstaller . cpp <nl> struct find_map : public binary_function < CAddonInstaller : : JobMap : : value_type , un <nl> <nl> CAddonInstaller : : CAddonInstaller ( ) <nl> { <nl> + m_repoUpdateJob = 0 ; <nl> } <nl> <nl> CAddonInstaller : : ~ CAddonInstaller ( ) <nl> CAddonInstaller & CAddonInstaller : : Get ( ) <nl> return addonInstaller ; <nl> } <nl> <nl> - void CAddonInstaller : : OnJobComplete ( unsigned int jobID , bool success , CJob * job2 ) <nl> + void CAddonInstaller : : OnJobComplete ( unsigned int jobID , bool success , CJob * job ) <nl> { <nl> CSingleLock lock ( m_critSection ) ; <nl> - JobMap : : iterator i = find_if ( m_downloadJobs . begin ( ) , m_downloadJobs . end ( ) , bind2nd ( find_map ( ) , jobID ) ) ; <nl> - if ( i ! = m_downloadJobs . end ( ) ) <nl> - m_downloadJobs . erase ( i ) ; <nl> - lock . Leave ( ) ; <nl> + if ( strncmp ( job - > GetType ( ) , " repoupdate " , 10 ) = = 0 ) <nl> + { / / repo job finished <nl> + m_repoUpdateJob = 0 ; <nl> + } <nl> + else <nl> + { / / download job <nl> + JobMap : : iterator i = find_if ( m_downloadJobs . begin ( ) , m_downloadJobs . end ( ) , bind2nd ( find_map ( ) , jobID ) ) ; <nl> + if ( i ! = m_downloadJobs . end ( ) ) <nl> + m_downloadJobs . erase ( i ) ; <nl> + lock . Leave ( ) ; <nl> + } <nl> <nl> if ( success ) <nl> CAddonMgr : : Get ( ) . FindAddons ( ) ; <nl> bool CAddonInstaller : : CheckDependencies ( const AddonPtr & addon ) <nl> return true ; <nl> } <nl> <nl> - void CAddonInstaller : : UpdateRepos ( bool force ) <nl> + void CAddonInstaller : : UpdateRepos ( bool force , bool wait ) <nl> { <nl> CSingleLock lock ( m_critSection ) ; <nl> if ( ! force & & m_repoUpdateWatch . IsRunning ( ) & & m_repoUpdateWatch . GetElapsedSeconds ( ) < 600 ) <nl> return ; <nl> + if ( m_repoUpdateJob ) <nl> + return ; <nl> m_repoUpdateWatch . StartZero ( ) ; <nl> VECADDONS addons ; <nl> CAddonMgr : : Get ( ) . GetAddons ( ADDON_REPOSITORY , addons ) ; <nl> void CAddonInstaller : : UpdateRepos ( bool force ) <nl> if ( force | | ! lastUpdate . IsValid ( ) | | lastUpdate + CDateTimeSpan ( 0 , 6 , 0 , 0 ) < CDateTime : : GetCurrentDateTime ( ) ) <nl> { <nl> CLog : : Log ( LOGDEBUG , " Checking repositories for updates ( triggered by % s ) " , addons [ i ] - > Name ( ) . c_str ( ) ) ; <nl> - CJobManager : : GetInstance ( ) . AddJob ( new CRepositoryUpdateJob ( addons ) , this ) ; <nl> + m_repoUpdateJob = CJobManager : : GetInstance ( ) . AddJob ( new CRepositoryUpdateJob ( addons ) , this ) ; <nl> return ; <nl> } <nl> } <nl> mmm a / xbmc / addons / AddonInstaller . h <nl> ppp b / xbmc / addons / AddonInstaller . h <nl> class CAddonInstaller : public IJobCallback <nl> CCriticalSection m_critSection ; <nl> JobMap m_downloadJobs ; <nl> CStopWatch m_repoUpdateWatch ; / / / < repository updates are done based on this counter <nl> + unsigned int m_repoUpdateJob ; / / / < the job ID of the repository updates <nl> } ; <nl> <nl> class CAddonInstallJob : public CFileOperationJob <nl> mmm a / xbmc / addons / Repository . h <nl> ppp b / xbmc / addons / Repository . h <nl> namespace ADDON <nl> CRepositoryUpdateJob ( const VECADDONS & repos ) ; <nl> virtual ~ CRepositoryUpdateJob ( ) { } <nl> <nl> + virtual const char * GetType ( ) const { return " repoupdate " ; } ; <nl> virtual bool DoWork ( ) ; <nl> static VECADDONS GrabAddons ( RepositoryPtr & repo , bool check ) ; <nl> <nl>
allow only one repository update job at a time
xbmc/xbmc
ea3ab0c074882dd2868d93d8af8d03075e57a063
2011-03-16T20:25:52Z
mmm a / lib / SILGen / SILGenApply . cpp <nl> ppp b / lib / SILGen / SILGenApply . cpp <nl> class Callee { <nl> case Kind : : WitnessMethod : { <nl> auto constantInfo = SGF . getConstantInfo ( * constant ) ; <nl> <nl> - auto proto = cast < ProtocolDecl > ( <nl> - Constant . getDecl ( ) - > getDeclContext ( ) ) ; <nl> - auto lookupType = getSubstFormalType ( ) <nl> - . getInput ( ) <nl> - - > getRValueInstanceType ( ) <nl> - - > getCanonicalType ( ) ; <nl> + auto proto = cast < ProtocolDecl > ( Constant . getDecl ( ) - > getDeclContext ( ) ) ; <nl> + auto genericSig = cast < AbstractFunctionDecl > ( Constant . getDecl ( ) ) <nl> + - > getGenericSignature ( ) ; <nl> + auto subMap = genericSig - > getSubstitutionMap ( Substitutions ) ; <nl> + auto selfType = proto - > getSelfInterfaceType ( ) - > getCanonicalType ( ) ; <nl> + auto lookupType = selfType . subst ( subMap ) - > getCanonicalType ( ) ; <nl> + auto conformance = * subMap . lookupConformance ( selfType , proto ) ; <nl> <nl> SILValue fn ; <nl> <nl> if ( ! constant - > isForeign ) { <nl> + <nl> fn = SGF . B . createWitnessMethod ( <nl> - Loc , lookupType , ProtocolConformanceRef ( proto ) , * constant , <nl> + Loc , lookupType , conformance , * constant , <nl> constantInfo . getSILType ( ) ) ; <nl> } else { <nl> fn = SGF . B . createObjCMethod ( Loc , borrowedSelf - > getValue ( ) , <nl>
SILGen : Use a concrete conformance if we have a witness_method call on a concrete type
apple/swift
b2e85f7eb5e92d9f2e99ce3c93e96ea09601edbe
2018-04-06T00:17:24Z
mmm a / dbms / tests / clickhouse - test <nl> ppp b / dbms / tests / clickhouse - test <nl> if __name__ = = ' __main__ ' : <nl> args . tmp = ' / tmp / clickhouse - test ' <nl> if args . tmp is None : <nl> args . tmp = args . queries <nl> - <nl> if args . client is None : <nl> if os . access ( args . binary + ' - client ' , os . X_OK ) : <nl> args . client = args . binary + ' - client ' <nl> - else : <nl> + elif os . access ( args . binary , os . X_OK ) : <nl> args . client = args . binary + ' client ' <nl> + else : <nl> + print ( " No clickhouse binary found " ) <nl> + parser . print_help ( ) ; <nl> + exit ( 0 ) ; <nl> if args . configclient : <nl> args . client + = ' - - config - file = ' + args . configclient <nl> if os . getenv ( " CLICKHOUSE_HOST " ) : <nl>
Fixes to clickhouse - test script
ClickHouse/ClickHouse
e3d5b21d6a0c4a591d1d7852af79bad238f8cc01
2019-01-23T14:05:11Z
mmm a / SConstruct <nl> ppp b / SConstruct <nl> import sys <nl> import types <nl> import re <nl> import shutil <nl> + import urllib <nl> + import urllib2 <nl> <nl> # mmm options mmm - <nl> AddOption ( ' - - prefix ' , <nl> testEnv . AlwaysBuild ( " smokeAllNoJs " ) <nl> import atexit <nl> atexit . register ( stopMongodForTests ) <nl> <nl> - def submitStub ( obj ) : <nl> - print ( obj ) <nl> + def machine_info ( extra_info = " " ) : <nl> + " " " Get a dict representing the " machine " section of a benchmark result . <nl> + <nl> + ie : <nl> + { <nl> + " os_name " : " OS X " , <nl> + " os_version " : " 10 . 5 " , <nl> + " processor " : " 2 . 4 GHz Intel Core 2 Duo " , <nl> + " memory " : " 3 GB 667 MHz DDR2 SDRAM " , <nl> + " extra_info " : " Python 2 . 6 " <nl> + } <nl> + <nl> + Must have a settings . py file on sys . path that defines " processor " and " memory " <nl> + variables . <nl> + " " " <nl> + sys . path . append ( " " ) <nl> + import settings <nl> + <nl> + machine = { } <nl> + ( machine [ " os_name " ] , _ , machine [ " os_version " ] , _ , _ ) = os . uname ( ) <nl> + machine [ " processor " ] = settings . processor <nl> + machine [ " memory " ] = settings . memory <nl> + machine [ " extra_info " ] = extra_info <nl> + return machine <nl> + <nl> + def post_data ( data , machine_extra_info = " " , post_url = " http : / / mongo - db . appspot . com / benchmark " ) : <nl> + " " " Post a benchmark data point . <nl> + <nl> + data should be a Python dict that looks like : <nl> + { <nl> + " benchmark " : { <nl> + " project " : " http : / / github . com / mongodb / mongo - python - driver " , <nl> + " name " : " insert test " , <nl> + " description " : " test inserting 10000 documents with the C extension enabled " , <nl> + " tags " : [ " insert " , " python " ] <nl> + } , <nl> + " trial " : { <nl> + " server_hash " : " 4f5a8d52f47507a70b6c625dfb5dbfc87ba5656a " , <nl> + " client_hash " : " 8bf2ad3d397cbde745fd92ad41c5b13976fac2b5 " , <nl> + " result " : 67 . 5 , <nl> + " extra_info " : " some logs or something " <nl> + } <nl> + } <nl> + " " " <nl> + try : <nl> + import json <nl> + except : <nl> + import simplejson as json # needed for python < 2 . 6 <nl> + <nl> + data [ " machine " ] = machine_info ( machine_extra_info ) <nl> + urllib2 . urlopen ( post_url , urllib . urlencode ( { " payload " : json . dumps ( data ) } ) ) <nl> <nl> def recordPerformance ( env , target , source ) : <nl> global perftest <nl> def recordPerformance ( env , target , source ) : <nl> sub [ " trial " ] [ " server_hash " ] = getGitVersion ( ) <nl> sub [ " trial " ] [ " client_hash " ] = " " <nl> sub [ " trial " ] [ " result " ] = val <nl> - submitStub ( sub ) <nl> + post_data ( sub ) <nl> <nl> addSmoketest ( " recordPerf " , [ " perftest " ] , [ recordPerformance ] ) <nl> <nl>
submit perf test data to web app
mongodb/mongo
c5cd549a5a14cc67410402cb95ee607178cbffee
2009-04-22T21:06:31Z
mmm a / fdbclient / DatabaseContext . h <nl> ppp b / fdbclient / DatabaseContext . h <nl> class DatabaseContext : public ReferenceCounted < DatabaseContext > , public FastAll <nl> void invalidateCache ( const KeyRef & , bool isBackward = false ) ; <nl> void invalidateCache ( const KeyRangeRef & ) ; <nl> <nl> - bool sampleReadTags ( ) ; <nl> + bool sampleReadTags ( ) const ; <nl> + bool sampleOnCost ( uint64_t cost ) const ; <nl> <nl> Reference < ProxyInfo > getMasterProxies ( bool useProvisionalProxies ) ; <nl> Future < Reference < ProxyInfo > > getMasterProxiesFuture ( bool useProvisionalProxies ) ; <nl> class DatabaseContext : public ReferenceCounted < DatabaseContext > , public FastAll <nl> Counter transactionsResourceConstrained ; <nl> Counter transactionsProcessBehind ; <nl> Counter transactionsThrottled ; <nl> + Counter transactionsExpensiveClearCostEstCount ; <nl> <nl> ContinuousSample < double > latencies , readLatencies , commitLatencies , GRVLatencies , mutationsPerCommit , bytesPerCommit ; <nl> <nl> class DatabaseContext : public ReferenceCounted < DatabaseContext > , public FastAll <nl> HealthMetrics healthMetrics ; <nl> double healthMetricsLastUpdated ; <nl> double detailedHealthMetricsLastUpdated ; <nl> + Smoother smoothMidShardSize ; <nl> <nl> UniqueOrderedOptionList < FDBTransactionOptions > transactionDefaults ; <nl> <nl> mmm a / fdbclient / Knobs . cpp <nl> ppp b / fdbclient / Knobs . cpp <nl> void ClientKnobs : : initialize ( bool randomize ) { <nl> init ( BACKOFF_GROWTH_RATE , 2 . 0 ) ; <nl> init ( RESOURCE_CONSTRAINED_MAX_BACKOFF , 30 . 0 ) ; <nl> init ( PROXY_COMMIT_OVERHEAD_BYTES , 23 ) ; / / The size of serializing 7 tags ( 3 primary , 3 remote , 1 log router ) + 2 for the tag length <nl> + init ( SHARD_STAT_SMOOTH_AMOUNT , 5 . 0 ) ; <nl> + init ( INIT_MID_SHARD_BYTES , 200000 ) ; if ( randomize & & BUGGIFY ) INIT_MID_SHARD_BYTES = 40000 ; / / The same value as SERVER_KNOBS - > MIN_SHARD_BYTES <nl> <nl> init ( TRANSACTION_SIZE_LIMIT , 1e7 ) ; <nl> init ( KEY_SIZE_LIMIT , 1e4 ) ; <nl> void ClientKnobs : : initialize ( bool randomize ) { <nl> init ( STORAGE_METRICS_TOO_MANY_SHARDS_DELAY , 15 . 0 ) ; <nl> init ( AGGREGATE_HEALTH_METRICS_MAX_STALENESS , 0 . 5 ) ; <nl> init ( DETAILED_HEALTH_METRICS_MAX_STALENESS , 5 . 0 ) ; <nl> + init ( MID_SHARD_SIZE_MAX_STALENESS , 10 . 0 ) ; <nl> init ( TAG_ENCODE_KEY_SERVERS , true ) ; if ( randomize & & BUGGIFY ) TAG_ENCODE_KEY_SERVERS = false ; <nl> <nl> / / KeyRangeMap <nl> void ClientKnobs : : initialize ( bool randomize ) { <nl> / / transaction tags <nl> init ( MAX_TAGS_PER_TRANSACTION , 5 ) ; <nl> init ( MAX_TRANSACTION_TAG_LENGTH , 16 ) ; <nl> + init ( COMMIT_SAMPLE_COST , 100 ) ; if ( randomize & & BUGGIFY ) COMMIT_SAMPLE_COST = 10 ; <nl> + init ( WRITE_COST_BYTE_FACTOR , 16384 ) ; if ( randomize & & BUGGIFY ) WRITE_COST_BYTE_FACTOR = 4096 ; <nl> + init ( INCOMPLETE_SHARD_PLUS , 4096 ) ; <nl> init ( READ_TAG_SAMPLE_RATE , 0 . 01 ) ; if ( randomize & & BUGGIFY ) READ_TAG_SAMPLE_RATE = 1 . 0 ; / / Communicated to clients from cluster <nl> init ( TAG_THROTTLE_SMOOTHING_WINDOW , 2 . 0 ) ; <nl> init ( TAG_THROTTLE_RECHECK_INTERVAL , 5 . 0 ) ; if ( randomize & & BUGGIFY ) TAG_THROTTLE_RECHECK_INTERVAL = 0 . 0 ; <nl> mmm a / fdbclient / Knobs . h <nl> ppp b / fdbclient / Knobs . h <nl> class ClientKnobs : public Knobs { <nl> double BACKOFF_GROWTH_RATE ; <nl> double RESOURCE_CONSTRAINED_MAX_BACKOFF ; <nl> int PROXY_COMMIT_OVERHEAD_BYTES ; <nl> + double SHARD_STAT_SMOOTH_AMOUNT ; <nl> + int INIT_MID_SHARD_BYTES ; <nl> <nl> int TRANSACTION_SIZE_LIMIT ; <nl> int64_t KEY_SIZE_LIMIT ; <nl> class ClientKnobs : public Knobs { <nl> double STORAGE_METRICS_TOO_MANY_SHARDS_DELAY ; <nl> double AGGREGATE_HEALTH_METRICS_MAX_STALENESS ; <nl> double DETAILED_HEALTH_METRICS_MAX_STALENESS ; <nl> + double MID_SHARD_SIZE_MAX_STALENESS ; <nl> bool TAG_ENCODE_KEY_SERVERS ; <nl> <nl> / / KeyRangeMap <nl> class ClientKnobs : public Knobs { <nl> / / transaction tags <nl> int MAX_TRANSACTION_TAG_LENGTH ; <nl> int MAX_TAGS_PER_TRANSACTION ; <nl> + int COMMIT_SAMPLE_COST ; / / The expectation of sampling is every COMMIT_SAMPLE_COST sample once <nl> + int WRITE_COST_BYTE_FACTOR ; <nl> + int INCOMPLETE_SHARD_PLUS ; / / The size of ( possible ) incomplete shard when estimate clear range <nl> double READ_TAG_SAMPLE_RATE ; / / Communicated to clients from cluster <nl> double TAG_THROTTLE_SMOOTHING_WINDOW ; <nl> double TAG_THROTTLE_RECHECK_INTERVAL ; <nl> mmm a / fdbclient / MasterProxyInterface . h <nl> ppp b / fdbclient / MasterProxyInterface . h <nl> struct ClientDBInfo { <nl> int64_t clientTxnInfoSizeLimit ; <nl> Optional < Value > forward ; <nl> double transactionTagSampleRate ; <nl> + double transactionTagSampleCost ; <nl> <nl> - ClientDBInfo ( ) : clientTxnInfoSampleRate ( std : : numeric_limits < double > : : infinity ( ) ) , clientTxnInfoSizeLimit ( - 1 ) , transactionTagSampleRate ( CLIENT_KNOBS - > READ_TAG_SAMPLE_RATE ) { } <nl> + ClientDBInfo ( ) <nl> + : clientTxnInfoSampleRate ( std : : numeric_limits < double > : : infinity ( ) ) , clientTxnInfoSizeLimit ( - 1 ) , <nl> + transactionTagSampleRate ( CLIENT_KNOBS - > READ_TAG_SAMPLE_RATE ) , transactionTagSampleCost ( CLIENT_KNOBS - > COMMIT_SAMPLE_COST ) { } <nl> <nl> bool operator = = ( ClientDBInfo const & r ) const { return id = = r . id ; } <nl> bool operator ! = ( ClientDBInfo const & r ) const { return id ! = r . id ; } <nl> struct ClientDBInfo { <nl> if constexpr ( ! is_fb_function < Archive > ) { <nl> ASSERT ( ar . protocolVersion ( ) . isValid ( ) ) ; <nl> } <nl> - serializer ( ar , proxies , id , clientTxnInfoSampleRate , clientTxnInfoSizeLimit , forward , transactionTagSampleRate ) ; <nl> + serializer ( ar , proxies , id , clientTxnInfoSampleRate , clientTxnInfoSizeLimit , forward , transactionTagSampleRate , <nl> + transactionTagSampleCost ) ; <nl> } <nl> } ; <nl> <nl> struct CommitTransactionRequest : TimedRequest { <nl> ReplyPromise < CommitID > reply ; <nl> uint32_t flags ; <nl> Optional < UID > debugID ; <nl> - Optional < TransactionCommitCostEstimation > commitCostEstimation ; <nl> + Optional < ClientTrCommitCostEstimation > commitCostEstimation ; <nl> Optional < TagSet > tagSet ; <nl> <nl> CommitTransactionRequest ( ) : flags ( 0 ) { } <nl> struct GetReadVersionReply : public BasicLoadBalancedReply { <nl> Version version ; <nl> bool locked ; <nl> Optional < Value > metadataVersion ; <nl> + int64_t midShardSize = 0 ; <nl> <nl> TransactionTagMap < ClientTagThrottleLimits > tagThrottleInfo ; <nl> <nl> struct GetReadVersionReply : public BasicLoadBalancedReply { <nl> <nl> template < class Ar > <nl> void serialize ( Ar & ar ) { <nl> - serializer ( ar , BasicLoadBalancedReply : : recentRequests , version , locked , metadataVersion , tagThrottleInfo ) ; <nl> + serializer ( ar , BasicLoadBalancedReply : : recentRequests , version , locked , metadataVersion , tagThrottleInfo , midShardSize ) ; <nl> } <nl> } ; <nl> <nl> mmm a / fdbclient / NativeAPI . actor . cpp <nl> ppp b / fdbclient / NativeAPI . actor . cpp <nl> DatabaseContext : : DatabaseContext ( Reference < AsyncVar < Reference < ClusterConnectionF <nl> transactionsProcessBehind ( " ProcessBehind " , cc ) , outstandingWatches ( 0 ) , latencies ( 1000 ) , readLatencies ( 1000 ) , <nl> commitLatencies ( 1000 ) , GRVLatencies ( 1000 ) , mutationsPerCommit ( 1000 ) , bytesPerCommit ( 1000 ) , mvCacheInsertLocation ( 0 ) , <nl> healthMetricsLastUpdated ( 0 ) , detailedHealthMetricsLastUpdated ( 0 ) , internal ( internal ) , <nl> + smoothMidShardSize ( CLIENT_KNOBS - > SHARD_STAT_SMOOTH_AMOUNT ) , transactionsExpensiveClearCostEstCount ( " ExpensiveClearCostEstCount " , cc ) , <nl> specialKeySpace ( std : : make_unique < SpecialKeySpace > ( specialKeys . begin , specialKeys . end , / * test * / false ) ) { <nl> dbId = deterministicRandom ( ) - > randomUniqueID ( ) ; <nl> connected = clientInfo - > get ( ) . proxies . size ( ) ? Void ( ) : clientInfo - > onChange ( ) ; <nl> DatabaseContext : : DatabaseContext ( Reference < AsyncVar < Reference < ClusterConnectionF <nl> monitorMasterProxiesInfoChange = monitorMasterProxiesChange ( clientInfo , & masterProxiesChangeTrigger ) ; <nl> clientStatusUpdater . actor = clientStatusUpdateActor ( this ) ; <nl> cacheListMonitor = monitorCacheList ( this ) ; <nl> + <nl> + smoothMidShardSize . reset ( CLIENT_KNOBS - > INIT_MID_SHARD_BYTES ) ; <nl> + <nl> if ( apiVersionAtLeast ( 700 ) ) { <nl> registerSpecialKeySpaceModule ( SpecialKeySpace : : MODULE : : ERRORMSG , SpecialKeySpace : : IMPLTYPE : : READONLY , <nl> std : : make_unique < SingleSpecialKeyImpl > ( <nl> DatabaseContext : : DatabaseContext ( const Error & err ) : deferredError ( err ) , cc ( " T <nl> transactionsFutureVersions ( " FutureVersions " , cc ) , transactionsNotCommitted ( " NotCommitted " , cc ) , transactionsMaybeCommitted ( " MaybeCommitted " , cc ) , <nl> transactionsResourceConstrained ( " ResourceConstrained " , cc ) , transactionsThrottled ( " Throttled " , cc ) , transactionsProcessBehind ( " ProcessBehind " , cc ) , latencies ( 1000 ) , readLatencies ( 1000 ) , commitLatencies ( 1000 ) , <nl> GRVLatencies ( 1000 ) , mutationsPerCommit ( 1000 ) , bytesPerCommit ( 1000 ) , <nl> + smoothMidShardSize ( CLIENT_KNOBS - > SHARD_STAT_SMOOTH_AMOUNT ) , transactionsExpensiveClearCostEstCount ( " ExpensiveClearCostEstCount " , cc ) , <nl> internal ( false ) { } <nl> <nl> <nl> Future < Void > DatabaseContext : : onMasterProxiesChanged ( ) { <nl> return this - > masterProxiesChangeTrigger . onTrigger ( ) ; <nl> } <nl> <nl> - bool DatabaseContext : : sampleReadTags ( ) { <nl> + bool DatabaseContext : : sampleReadTags ( ) const { <nl> return clientInfo - > get ( ) . transactionTagSampleRate > 0 & & deterministicRandom ( ) - > random01 ( ) < = clientInfo - > get ( ) . transactionTagSampleRate ; <nl> } <nl> <nl> + bool DatabaseContext : : sampleOnCost ( uint64_t cost ) const { <nl> + if ( clientInfo - > get ( ) . transactionTagSampleCost < = 0 ) return false ; <nl> + return deterministicRandom ( ) - > random01 ( ) < = ( double ) cost / clientInfo - > get ( ) . transactionTagSampleCost ; <nl> + } <nl> + <nl> int64_t extractIntOption ( Optional < StringRef > value , int64_t minValue , int64_t maxValue ) { <nl> validateOptionValue ( value , true ) ; <nl> if ( value . get ( ) . size ( ) ! = 8 ) { <nl> ACTOR Future < Version > waitForCommittedVersion ( Database cx , Version version , Spa <nl> cx - > getMasterProxies ( false ) , & MasterProxyInterface : : getConsistentReadVersion , <nl> GetReadVersionRequest ( span . context , 0 , TransactionPriority : : IMMEDIATE ) , cx - > taskID ) ) ) { <nl> cx - > minAcceptableReadVersion = std : : min ( cx - > minAcceptableReadVersion , v . version ) ; <nl> - <nl> + if ( v . midShardSize > 0 ) <nl> + cx - > smoothMidShardSize . setTotal ( v . midShardSize ) ; <nl> if ( v . version > = version ) <nl> return v . version ; <nl> / / SOMEDAY : Do the wait on the server side , possibly use less expensive source of committed version ( causal consistency is not needed for this purpose ) <nl> void Transaction : : clear ( const KeyRef & key , bool addConflictRange ) { <nl> data [ key . size ( ) ] = 0 ; <nl> t . mutations . emplace_back ( req . arena , MutationRef : : ClearRange , KeyRef ( data , key . size ( ) ) , <nl> KeyRef ( data , key . size ( ) + 1 ) ) ; <nl> - <nl> if ( addConflictRange ) <nl> t . write_conflict_ranges . emplace_back ( req . arena , KeyRef ( data , key . size ( ) ) , KeyRef ( data , key . size ( ) + 1 ) ) ; <nl> } <nl> void Transaction : : setupWatches ( ) { <nl> } <nl> } <nl> <nl> - ACTOR Future < TransactionCommitCostEstimation > estimateCommitCosts ( Transaction * self , <nl> - CommitTransactionRef * transaction ) { <nl> - state MutationRef * it = transaction - > mutations . begin ( ) ; <nl> - state MutationRef * end = transaction - > mutations . end ( ) ; <nl> - state TransactionCommitCostEstimation trCommitCosts ; <nl> - state KeyRange keyRange ; <nl> - for ( ; it ! = end ; + + it ) { <nl> - if ( it - > type = = MutationRef : : Type : : SetValue ) { <nl> - trCommitCosts . bytesWrite + = it - > expectedSize ( ) ; <nl> - trCommitCosts . numWrite + + ; <nl> - } else if ( it - > isAtomicOp ( ) ) { <nl> - trCommitCosts . bytesAtomicWrite + = it - > expectedSize ( ) ; <nl> - trCommitCosts . numAtomicWrite + + ; <nl> - } else if ( it - > type = = MutationRef : : Type : : ClearRange ) { <nl> - trCommitCosts . numClear + + ; <nl> - keyRange = KeyRange ( KeyRangeRef ( it - > param1 , it - > param2 ) ) ; <nl> + ACTOR Future < Optional < ClientTrCommitCostEstimation > > estimateCommitCosts ( Transaction * self , <nl> + CommitTransactionRef const * transaction ) { <nl> + state ClientTrCommitCostEstimation trCommitCosts ; <nl> + state KeyRangeRef keyRange ; <nl> + state int i = 0 ; <nl> + <nl> + for ( ; i < transaction - > mutations . size ( ) ; + + i ) { <nl> + auto * it = & transaction - > mutations [ i ] ; <nl> + <nl> + if ( it - > type = = MutationRef : : Type : : SetValue | | it - > isAtomicOp ( ) ) { <nl> + trCommitCosts . opsCount + + ; <nl> + trCommitCosts . writeCosts + = getWriteOperationCost ( it - > expectedSize ( ) ) ; <nl> + } <nl> + else if ( it - > type = = MutationRef : : Type : : ClearRange ) { <nl> + trCommitCosts . opsCount + + ; <nl> + keyRange = KeyRangeRef ( it - > param1 , it - > param2 ) ; <nl> if ( self - > options . expensiveClearCostEstimation ) { <nl> - StorageMetrics m = wait ( self - > getStorageMetrics ( keyRange , std : : numeric_limits < int > : : max ( ) ) ) ; <nl> - trCommitCosts . bytesClearEst + = m . bytes ; <nl> + StorageMetrics m = wait ( self - > getStorageMetrics ( keyRange , CLIENT_KNOBS - > TOO_MANY ) ) ; <nl> + trCommitCosts . clearIdxCosts . emplace_back ( i , getWriteOperationCost ( m . bytes ) ) ; <nl> + trCommitCosts . writeCosts + = getWriteOperationCost ( m . bytes ) ; <nl> + + + trCommitCosts . expensiveCostEstCount ; <nl> + + + self - > getDatabase ( ) - > transactionsExpensiveClearCostEstCount ; <nl> } <nl> else { <nl> - std : : vector < pair < KeyRange , Reference < LocationInfo > > > locations = wait ( getKeyRangeLocations ( <nl> - self - > getDatabase ( ) , keyRange , std : : numeric_limits < int > : : max ( ) , false , & StorageServerInterface : : getShardState , self - > info ) ) ; <nl> - trCommitCosts . numClearShards + = locations . size ( ) ; <nl> + std : : vector < pair < KeyRange , Reference < LocationInfo > > > locations = <nl> + wait ( getKeyRangeLocations ( self - > getDatabase ( ) , keyRange , CLIENT_KNOBS - > TOO_MANY , false , <nl> + & StorageServerInterface : : getShardState , self - > info ) ) ; <nl> + if ( locations . empty ( ) ) continue ; <nl> + <nl> + uint64_t bytes = 0 ; <nl> + if ( locations . size ( ) = = 1 ) { <nl> + bytes = CLIENT_KNOBS - > INCOMPLETE_SHARD_PLUS ; <nl> + } <nl> + else { / / small clear on the boundary will hit two shards but be much smaller than the shard size <nl> + bytes = CLIENT_KNOBS - > INCOMPLETE_SHARD_PLUS * 2 + <nl> + ( locations . size ( ) - 2 ) * ( int64_t ) self - > getDatabase ( ) - > smoothMidShardSize . smoothTotal ( ) ; <nl> + } <nl> + <nl> + trCommitCosts . clearIdxCosts . emplace_back ( i , getWriteOperationCost ( bytes ) ) ; <nl> + trCommitCosts . writeCosts + = getWriteOperationCost ( bytes ) ; <nl> + } <nl> + } <nl> + } <nl> + <nl> + / / sample on written bytes <nl> + if ( ! self - > getDatabase ( ) - > sampleOnCost ( trCommitCosts . writeCosts ) ) <nl> + return Optional < ClientTrCommitCostEstimation > ( ) ; <nl> + <nl> + / / sample clear op : the expectation of # sampledOp is every COMMIT_SAMPLE_COST sample once <nl> + / / we also scale the cost of mutations whose cost is less than COMMIT_SAMPLE_COST as scaledCost = min ( COMMIT_SAMPLE_COST , cost ) <nl> + / / If we have 4 transactions : <nl> + / / A - 100 1 - cost mutations : E [ sampled ops ] = 1 , E [ sampled cost ] = 100 <nl> + / / B - 1 100 - cost mutation : E [ sampled ops ] = 1 , E [ sampled cost ] = 100 <nl> + / / C - 50 2 - cost mutations : E [ sampled ops ] = 1 , E [ sampled cost ] = 100 <nl> + / / D - 1 150 - cost mutation and 150 1 - cost mutations : E [ sampled ops ] = 3 , E [ sampled cost ] = 150cost * 1 + 150 * 100cost * 0 . 01 = 300 <nl> + ASSERT ( trCommitCosts . writeCosts > 0 ) ; <nl> + std : : deque < std : : pair < int , uint64_t > > newClearIdxCosts ; <nl> + for ( const auto & [ idx , cost ] : trCommitCosts . clearIdxCosts ) { <nl> + if ( trCommitCosts . writeCosts > = CLIENT_KNOBS - > COMMIT_SAMPLE_COST ) { <nl> + double mul = trCommitCosts . writeCosts / std : : max ( 1 . 0 , ( double ) CLIENT_KNOBS - > COMMIT_SAMPLE_COST ) ; <nl> + if ( deterministicRandom ( ) - > random01 ( ) < cost * mul / trCommitCosts . writeCosts ) { <nl> + newClearIdxCosts . emplace_back ( idx , cost < CLIENT_KNOBS - > COMMIT_SAMPLE_COST ? CLIENT_KNOBS - > COMMIT_SAMPLE_COST : cost ) ; <nl> } <nl> } <nl> + else if ( deterministicRandom ( ) - > random01 ( ) < ( double ) cost / trCommitCosts . writeCosts ) { <nl> + newClearIdxCosts . emplace_back ( idx , cost < CLIENT_KNOBS - > COMMIT_SAMPLE_COST ? CLIENT_KNOBS - > COMMIT_SAMPLE_COST : cost ) ; <nl> + } <nl> } <nl> + <nl> + trCommitCosts . clearIdxCosts . swap ( newClearIdxCosts ) ; <nl> return trCommitCosts ; <nl> } <nl> <nl> ACTOR static Future < Void > tryCommit ( Database cx , Reference < TransactionLogInfo > <nl> commit_unknown_result ( ) } ) ; <nl> } <nl> <nl> - if ( ! req . tagSet . present ( ) ) { <nl> - wait ( store ( req . transaction . read_snapshot , readVersion ) ) ; <nl> + if ( req . tagSet . present ( ) & & tr - > options . priority < TransactionPriority : : IMMEDIATE ) { <nl> + wait ( store ( req . transaction . read_snapshot , readVersion ) & & <nl> + store ( req . commitCostEstimation , estimateCommitCosts ( tr , & req . transaction ) ) ) ; <nl> } else { <nl> - req . commitCostEstimation = TransactionCommitCostEstimation ( ) ; <nl> - wait ( store ( req . transaction . read_snapshot , readVersion ) & & store ( req . commitCostEstimation . get ( ) , estimateCommitCosts ( tr , & req . transaction ) ) ) ; <nl> + wait ( store ( req . transaction . read_snapshot , readVersion ) ) ; <nl> } <nl> <nl> startTime = now ( ) ; <nl> mmm a / fdbclient / NativeAPI . actor . h <nl> ppp b / fdbclient / NativeAPI . actor . h <nl> ACTOR Future < Void > snapCreate ( Database cx , Standalone < StringRef > snapCmd , UID sn <nl> / / Checks with Data Distributor that it is safe to mark all servers in exclusions as failed <nl> ACTOR Future < bool > checkSafeExclusions ( Database cx , vector < AddressExclusion > exclusions ) ; <nl> <nl> + inline uint64_t getWriteOperationCost ( uint64_t bytes ) { <nl> + return bytes / std : : max ( 1 , CLIENT_KNOBS - > WRITE_COST_BYTE_FACTOR ) + 1 ; <nl> + } <nl> # include " flow / unactorcompiler . h " <nl> # endif <nl> mmm a / fdbclient / TagThrottle . h <nl> ppp b / fdbclient / TagThrottle . h <nl> using TransactionTagMap = std : : unordered_map < TransactionTag , Value , std : : hash < Tr <nl> template < class Value > <nl> using PrioritizedTransactionTagMap = std : : map < TransactionPriority , TransactionTagMap < Value > > ; <nl> <nl> + template < class Value > <nl> + using UIDTransactionTagMap = std : : unordered_map < UID , TransactionTagMap < Value > > ; <nl> # endif <nl> \ No newline at end of file <nl> mmm a / fdbserver / DataDistribution . actor . cpp <nl> ppp b / fdbserver / DataDistribution . actor . cpp <nl> ACTOR Future < Reference < InitialDataDistribution > > getInitialDataDistribution ( Dat <nl> beginKey = keyServers . end ( ) [ - 1 ] . key ; <nl> break ; <nl> } catch ( Error & e ) { <nl> - wait ( tr . onError ( e ) ) ; <nl> + TraceEvent ( " GetInitialTeamsKeyServersRetry " , distributorId ) . error ( e ) ; <nl> <nl> + wait ( tr . onError ( e ) ) ; <nl> ASSERT ( ! succeeded ) ; / / We shouldn ' t be retrying if we have already started modifying result in this loop <nl> - TraceEvent ( " GetInitialTeamsKeyServersRetry " , distributorId ) ; <nl> } <nl> } <nl> <nl> ACTOR Future < Void > ddSnapCreateCore ( DistributorSnapRequest snapReq , Reference < As <nl> return Void ( ) ; <nl> } <nl> <nl> - ACTOR Future < Void > ddGetMetrics ( GetDataDistributorMetricsRequest req , PromiseStream < GetMetricsListRequest > getShardMetricsList ) { <nl> - ErrorOr < Standalone < VectorRef < DDMetricsRef > > > result = wait ( errorOr ( brokenPromiseToNever ( <nl> - getShardMetricsList . getReply ( GetMetricsListRequest ( req . keys , req . shardLimit ) ) ) ) ) ; <nl> - <nl> - if ( result . isError ( ) ) { <nl> - req . reply . sendError ( result . getError ( ) ) ; <nl> - } else { <nl> - GetDataDistributorMetricsReply rep ; <nl> - rep . storageMetricsList = result . get ( ) ; <nl> - req . reply . send ( rep ) ; <nl> - } <nl> - <nl> - return Void ( ) ; <nl> - } <nl> - <nl> ACTOR Future < Void > ddSnapCreate ( DistributorSnapRequest snapReq , Reference < AsyncVar < struct ServerDBInfo > > db ) { <nl> state Future < Void > dbInfoChange = db - > onChange ( ) ; <nl> if ( ! setDDEnabled ( false , snapReq . snapUID ) ) { <nl> ACTOR Future < Void > cacheServerWatcher ( Database * db ) { <nl> } <nl> } <nl> <nl> + static int64_t getMedianShardSize ( VectorRef < DDMetricsRef > metricVec ) { <nl> + std : : nth_element ( metricVec . begin ( ) , metricVec . begin ( ) + metricVec . size ( ) / 2 , <nl> + metricVec . end ( ) , [ ] ( const DDMetricsRef & d1 , const DDMetricsRef & d2 ) { <nl> + return d1 . shardBytes < d2 . shardBytes ; <nl> + } ) ; <nl> + return metricVec [ metricVec . size ( ) / 2 ] . shardBytes ; <nl> + } <nl> + <nl> + ACTOR Future < Void > ddGetMetrics ( GetDataDistributorMetricsRequest req , PromiseStream < GetMetricsListRequest > getShardMetricsList ) { <nl> + ErrorOr < Standalone < VectorRef < DDMetricsRef > > > result = wait ( errorOr ( brokenPromiseToNever ( <nl> + getShardMetricsList . getReply ( GetMetricsListRequest ( req . keys , req . shardLimit ) ) ) ) ) ; <nl> + <nl> + if ( result . isError ( ) ) { <nl> + req . reply . sendError ( result . getError ( ) ) ; <nl> + } else { <nl> + GetDataDistributorMetricsReply rep ; <nl> + if ( ! req . midOnly ) { <nl> + rep . storageMetricsList = result . get ( ) ; <nl> + } <nl> + else { <nl> + auto & metricVec = result . get ( ) ; <nl> + if ( metricVec . empty ( ) ) rep . midShardSize = 0 ; <nl> + else { <nl> + rep . midShardSize = getMedianShardSize ( metricVec . contents ( ) ) ; <nl> + } <nl> + } <nl> + req . reply . send ( rep ) ; <nl> + } <nl> + <nl> + return Void ( ) ; <nl> + } <nl> + <nl> ACTOR Future < Void > dataDistributor ( DataDistributorInterface di , Reference < AsyncVar < struct ServerDBInfo > > db ) { <nl> state Reference < DataDistributorData > self ( new DataDistributorData ( db , di . id ( ) ) ) ; <nl> state Future < Void > collection = actorCollection ( self - > addActor . getFuture ( ) ) ; <nl> mmm a / fdbserver / DataDistributorInterface . h <nl> ppp b / fdbserver / DataDistributorInterface . h <nl> struct HaltDataDistributorRequest { <nl> struct GetDataDistributorMetricsReply { <nl> constexpr static FileIdentifier file_identifier = 1284337 ; <nl> Standalone < VectorRef < DDMetricsRef > > storageMetricsList ; <nl> + Optional < int64_t > midShardSize ; <nl> <nl> GetDataDistributorMetricsReply ( ) { } <nl> <nl> template < class Ar > <nl> void serialize ( Ar & ar ) { <nl> - serializer ( ar , storageMetricsList ) ; <nl> + serializer ( ar , storageMetricsList , midShardSize ) ; <nl> } <nl> } ; <nl> <nl> struct GetDataDistributorMetricsRequest { <nl> KeyRange keys ; <nl> int shardLimit ; <nl> ReplyPromise < struct GetDataDistributorMetricsReply > reply ; <nl> + bool midOnly = false ; <nl> <nl> GetDataDistributorMetricsRequest ( ) { } <nl> - explicit GetDataDistributorMetricsRequest ( KeyRange const & keys , const int shardLimit ) : keys ( keys ) , shardLimit ( shardLimit ) { } <nl> + explicit GetDataDistributorMetricsRequest ( KeyRange const & keys , const int shardLimit , bool midOnly = false ) <nl> + : keys ( keys ) , shardLimit ( shardLimit ) , midOnly ( midOnly ) { } <nl> <nl> template < class Ar > <nl> void serialize ( Ar & ar ) { <nl> - serializer ( ar , keys , shardLimit , reply ) ; <nl> + serializer ( ar , keys , shardLimit , reply , midOnly ) ; <nl> } <nl> } ; <nl> <nl> mmm a / fdbserver / Knobs . cpp <nl> ppp b / fdbserver / Knobs . cpp <nl> void ServerKnobs : : initialize ( bool randomize , ClientKnobs * clientKnobs , bool isSi <nl> init ( BEHIND_CHECK_COUNT , 2 ) ; <nl> init ( BEHIND_CHECK_VERSIONS , 5 * VERSIONS_PER_SECOND ) ; <nl> init ( WAIT_METRICS_WRONG_SHARD_CHANCE , isSimulated ? 1 . 0 : 0 . 1 ) ; <nl> - init ( MIN_TAG_PAGES_READ_RATE , 1 . 0e4 ) ; if ( randomize & & BUGGIFY ) MIN_TAG_PAGES_READ_RATE = 0 ; <nl> - init ( READ_TAG_MEASUREMENT_INTERVAL , 30 . 0 ) ; if ( randomize & & BUGGIFY ) READ_TAG_MEASUREMENT_INTERVAL = 1 . 0 ; <nl> - init ( OPERATION_COST_BYTE_FACTOR , 16384 ) ; if ( randomize & & BUGGIFY ) OPERATION_COST_BYTE_FACTOR = 4096 ; <nl> + init ( MIN_TAG_PAGES_RATE , 1 . 0e4 ) ; if ( randomize & & BUGGIFY ) MIN_TAG_PAGES_RATE = 0 ; <nl> + init ( TAG_MEASUREMENT_INTERVAL , 30 . 0 ) ; if ( randomize & & BUGGIFY ) TAG_MEASUREMENT_INTERVAL = 1 . 0 ; <nl> + init ( READ_COST_BYTE_FACTOR , 16384 ) ; if ( randomize & & BUGGIFY ) READ_COST_BYTE_FACTOR = 4096 ; <nl> init ( PREFIX_COMPRESS_KVS_MEM_SNAPSHOTS , true ) ; if ( randomize & & BUGGIFY ) PREFIX_COMPRESS_KVS_MEM_SNAPSHOTS = false ; <nl> <nl> / / Wait Failure <nl> void ServerKnobs : : initialize ( bool randomize , ClientKnobs * clientKnobs , bool isSi <nl> <nl> / / clang - format on <nl> <nl> - if ( clientKnobs ) <nl> - clientKnobs - > IS_ACCEPTABLE_DELAY = clientKnobs - > IS_ACCEPTABLE_DELAY * std : : min ( MAX_READ_TRANSACTION_LIFE_VERSIONS , MAX_WRITE_TRANSACTION_LIFE_VERSIONS ) / ( 5 . 0 * VERSIONS_PER_SECOND ) ; <nl> + if ( clientKnobs ) { <nl> + clientKnobs - > IS_ACCEPTABLE_DELAY = <nl> + clientKnobs - > IS_ACCEPTABLE_DELAY * <nl> + std : : min ( MAX_READ_TRANSACTION_LIFE_VERSIONS , MAX_WRITE_TRANSACTION_LIFE_VERSIONS ) / <nl> + ( 5 . 0 * VERSIONS_PER_SECOND ) ; <nl> + clientKnobs - > INIT_MID_SHARD_BYTES = MIN_SHARD_BYTES ; <nl> + } <nl> } <nl> mmm a / fdbserver / Knobs . h <nl> ppp b / fdbserver / Knobs . h <nl> class ServerKnobs : public Knobs { <nl> int BEHIND_CHECK_COUNT ; <nl> int64_t BEHIND_CHECK_VERSIONS ; <nl> double WAIT_METRICS_WRONG_SHARD_CHANCE ; <nl> - int64_t MIN_TAG_PAGES_READ_RATE ; <nl> - double READ_TAG_MEASUREMENT_INTERVAL ; <nl> - int64_t OPERATION_COST_BYTE_FACTOR ; <nl> + int64_t MIN_TAG_PAGES_RATE ; <nl> + double TAG_MEASUREMENT_INTERVAL ; <nl> + int64_t READ_COST_BYTE_FACTOR ; <nl> bool PREFIX_COMPRESS_KVS_MEM_SNAPSHOTS ; <nl> <nl> / / Wait Failure <nl> mmm a / fdbserver / MasterProxyServer . actor . cpp <nl> ppp b / fdbserver / MasterProxyServer . actor . cpp <nl> ACTOR Future < Void > getRate ( UID myID , Reference < AsyncVar < ServerDBInfo > > db , int64 <nl> GetHealthMetricsReply * detailedHealthMetricsReply , <nl> TransactionTagMap < uint64_t > * transactionTagCounter , <nl> PrioritizedTransactionTagMap < ClientTagThrottleLimits > * throttledTags , <nl> - TransactionTagMap < TransactionCommitCostEstimation > * transactionTagCommitCostEst ) { <nl> + UIDTransactionTagMap < TransactionCommitCostEstimation > * ssTrTagCommitCost ) { <nl> state Future < Void > nextRequestTimer = Never ( ) ; <nl> state Future < Void > leaseTimeout = Never ( ) ; <nl> state Future < GetRateInfoReply > reply = Never ( ) ; <nl> ACTOR Future < Void > getRate ( UID myID , Reference < AsyncVar < ServerDBInfo > > db , int64 <nl> } <nl> reply = brokenPromiseToNever ( db - > get ( ) . ratekeeper . get ( ) . getRateInfo . getReply ( <nl> GetRateInfoRequest ( myID , * inTransactionCount , * inBatchTransactionCount , tagCounts , <nl> - * transactionTagCommitCostEst , detailed ) ) ) ; <nl> + * ssTrTagCommitCost , detailed ) ) ) ; <nl> transactionTagCounter - > clear ( ) ; <nl> - transactionTagCommitCostEst - > clear ( ) ; <nl> + ssTrTagCommitCost - > clear ( ) ; <nl> expectingDetailedReply = detailed ; <nl> } <nl> when ( GetRateInfoReply rep = wait ( reply ) ) { <nl> struct ResolutionRequestBuilder { <nl> } <nl> } ; <nl> <nl> + ACTOR Future < Void > monitorDDMetricsChanges ( int64_t * midShardSize , Reference < AsyncVar < ServerDBInfo > > db ) { <nl> + state Future < Void > nextRequestTimer = Never ( ) ; <nl> + state Future < GetDataDistributorMetricsReply > nextReply = Never ( ) ; <nl> + <nl> + if ( db - > get ( ) . distributor . present ( ) ) nextRequestTimer = Void ( ) ; <nl> + loop { <nl> + try { <nl> + choose { <nl> + when ( wait ( db - > onChange ( ) ) ) { <nl> + if ( db - > get ( ) . distributor . present ( ) ) { <nl> + TraceEvent ( " DataDistributorChanged " , db - > get ( ) . id ) <nl> + . detail ( " DDID " , db - > get ( ) . distributor . get ( ) . id ( ) ) ; <nl> + nextRequestTimer = Void ( ) ; <nl> + } else { <nl> + TraceEvent ( " DataDistributorDied " , db - > get ( ) . id ) ; <nl> + nextRequestTimer = Never ( ) ; <nl> + } <nl> + nextReply = Never ( ) ; <nl> + } <nl> + when ( wait ( nextRequestTimer ) ) { <nl> + nextRequestTimer = Never ( ) ; <nl> + if ( db - > get ( ) . distributor . present ( ) ) { <nl> + nextReply = brokenPromiseToNever ( db - > get ( ) . distributor . get ( ) . dataDistributorMetrics . getReply ( <nl> + GetDataDistributorMetricsRequest ( normalKeys , CLIENT_KNOBS - > TOO_MANY , true ) ) ) ; <nl> + } else nextReply = Never ( ) ; <nl> + } <nl> + when ( GetDataDistributorMetricsReply reply = wait ( nextReply ) ) { <nl> + nextReply = Never ( ) ; <nl> + ASSERT ( reply . midShardSize . present ( ) ) ; <nl> + * midShardSize = reply . midShardSize . get ( ) ; <nl> + nextRequestTimer = delay ( CLIENT_KNOBS - > MID_SHARD_SIZE_MAX_STALENESS ) ; <nl> + } <nl> + } <nl> + } catch ( Error & e ) { <nl> + TraceEvent ( " DDMidShardSizeUpdateFail " ) . error ( e ) ; <nl> + if ( e . code ( ) ! = error_code_timed_out & & e . code ( ) ! = error_code_dd_not_found ) <nl> + throw ; <nl> + nextRequestTimer = delay ( CLIENT_KNOBS - > MID_SHARD_SIZE_MAX_STALENESS ) ; <nl> + nextReply = Never ( ) ; <nl> + } <nl> + } <nl> + } <nl> + <nl> ACTOR Future < Void > commitBatcher ( ProxyCommitData * commitData , PromiseStream < std : : pair < std : : vector < CommitTransactionRequest > , int > > out , FutureStream < CommitTransactionRequest > in , int desiredBytes , int64_t memBytesLimit ) { <nl> wait ( delayJittered ( commitData - > commitBatchInterval , TaskPriority : : ProxyCommitBatcher ) ) ; <nl> <nl> ACTOR Future < Void > assignMutationsToStorageServers ( CommitBatchContext * self ) { <nl> continue ; <nl> } <nl> <nl> + state bool checkSample = trs [ self - > transactionNum ] . commitCostEstimation . present ( ) ; <nl> + state Optional < ClientTrCommitCostEstimation > * trCost = & trs [ self - > transactionNum ] . commitCostEstimation ; <nl> state int mutationNum = 0 ; <nl> state VectorRef < MutationRef > * pMutations = & trs [ self - > transactionNum ] . transaction . mutations ; <nl> for ( ; mutationNum < pMutations - > size ( ) ; mutationNum + + ) { <nl> ACTOR Future < Void > assignMutationsToStorageServers ( CommitBatchContext * self ) { <nl> if ( isSingleKeyMutation ( ( MutationRef : : Type ) m . type ) ) { <nl> auto & tags = pProxyCommitData - > tagsForKey ( m . param1 ) ; <nl> <nl> + / / sample single key mutation based on cost <nl> + / / the expectation of sampling is every COMMIT_SAMPLE_COST sample once <nl> + if ( checkSample ) { <nl> + double totalCosts = trCost - > get ( ) . writeCosts ; <nl> + double cost = getWriteOperationCost ( m . expectedSize ( ) ) ; <nl> + double mul = std : : max ( 1 . 0 , totalCosts / std : : max ( 1 . 0 , ( double ) CLIENT_KNOBS - > COMMIT_SAMPLE_COST ) ) ; <nl> + ASSERT ( totalCosts > 0 ) ; <nl> + double prob = mul * cost / totalCosts ; <nl> + <nl> + if ( deterministicRandom ( ) - > random01 ( ) < prob ) { <nl> + for ( const auto & ssInfo : pProxyCommitData - > keyInfo [ m . param1 ] . src_info ) { <nl> + auto id = ssInfo - > interf . id ( ) ; <nl> + / / scale cost <nl> + cost = cost < CLIENT_KNOBS - > COMMIT_SAMPLE_COST ? CLIENT_KNOBS - > COMMIT_SAMPLE_COST : cost ; <nl> + pProxyCommitData - > updateSSTagCost ( id , trs [ self - > transactionNum ] . tagSet . get ( ) , m , cost ) ; <nl> + } <nl> + } <nl> + } <nl> + <nl> if ( pProxyCommitData - > singleKeyMutationEvent - > enabled ) { <nl> KeyRangeRef shard = pProxyCommitData - > keyInfo . rangeContaining ( m . param1 ) . range ( ) ; <nl> pProxyCommitData - > singleKeyMutationEvent - > tag1 = ( int64_t ) tags [ 0 ] . id ; <nl> ACTOR Future < Void > assignMutationsToStorageServers ( CommitBatchContext * self ) { <nl> <nl> ranges . begin ( ) . value ( ) . populateTags ( ) ; <nl> self - > toCommit . addTags ( ranges . begin ( ) . value ( ) . tags ) ; <nl> + <nl> + / / check whether clear is sampled <nl> + if ( checkSample & & ! trCost - > get ( ) . clearIdxCosts . empty ( ) & & trCost - > get ( ) . clearIdxCosts [ 0 ] . first = = mutationNum ) { <nl> + for ( const auto & ssInfo : ranges . begin ( ) . value ( ) . src_info ) { <nl> + auto id = ssInfo - > interf . id ( ) ; <nl> + pProxyCommitData - > updateSSTagCost ( id , trs [ self - > transactionNum ] . tagSet . get ( ) , m , trCost - > get ( ) . clearIdxCosts [ 0 ] . second ) ; <nl> + } <nl> + trCost - > get ( ) . clearIdxCosts . pop_front ( ) ; <nl> + } <nl> } <nl> else { <nl> TEST ( true ) ; / / A clear range extends past a shard boundary <nl> ACTOR Future < Void > assignMutationsToStorageServers ( CommitBatchContext * self ) { <nl> for ( auto r : ranges ) { <nl> r . value ( ) . populateTags ( ) ; <nl> allSources . insert ( r . value ( ) . tags . begin ( ) , r . value ( ) . tags . end ( ) ) ; <nl> + <nl> + / / check whether clear is sampled <nl> + if ( checkSample & & ! trCost - > get ( ) . clearIdxCosts . empty ( ) & & trCost - > get ( ) . clearIdxCosts [ 0 ] . first = = mutationNum ) { <nl> + for ( const auto & ssInfo : r . value ( ) . src_info ) { <nl> + auto id = ssInfo - > interf . id ( ) ; <nl> + pProxyCommitData - > updateSSTagCost ( id , trs [ self - > transactionNum ] . tagSet . get ( ) , m , trCost - > get ( ) . clearIdxCosts [ 0 ] . second ) ; <nl> + } <nl> + trCost - > get ( ) . clearIdxCosts . pop_front ( ) ; <nl> + } <nl> } <nl> DEBUG_MUTATION ( " ProxyCommit " , self - > commitVersion , m ) . detail ( " Dbgid " , pProxyCommitData - > dbgid ) . detail ( " To " , allSources ) . detail ( " Mutation " , m ) ; <nl> <nl> ACTOR Future < Void > assignMutationsToStorageServers ( CommitBatchContext * self ) { <nl> } <nl> } <nl> } <nl> + <nl> + if ( checkSample ) { <nl> + self - > pProxyCommitData - > stats . txnExpensiveClearCostEstCount + = <nl> + trs [ self - > transactionNum ] . commitCostEstimation . get ( ) . expensiveCostEstCount ; <nl> + } <nl> } <nl> <nl> return Void ( ) ; <nl> ACTOR Future < Void > reply ( CommitBatchContext * self ) { <nl> if ( self - > committed [ t ] = = ConflictBatch : : TransactionCommitted & & ( ! self - > locked | | tr . isLockAware ( ) ) ) { <nl> ASSERT_WE_THINK ( self - > commitVersion ! = invalidVersion ) ; <nl> tr . reply . send ( CommitID ( self - > commitVersion , t , self - > metadataVersionAfter ) ) ; <nl> - <nl> - / / aggregate commit cost estimation if committed <nl> - ASSERT ( tr . commitCostEstimation . present ( ) = = tr . tagSet . present ( ) ) ; <nl> - if ( tr . tagSet . present ( ) ) { <nl> - TransactionCommitCostEstimation & costEstimation = tr . commitCostEstimation . get ( ) ; <nl> - for ( auto & tag : tr . tagSet . get ( ) ) { <nl> - pProxyCommitData - > transactionTagCommitCostEst [ tag ] + = costEstimation ; <nl> - } <nl> - } <nl> } <nl> else if ( self - > committed [ t ] = = ConflictBatch : : TransactionTooOld ) { <nl> tr . reply . sendError ( transaction_too_old ( ) ) ; <nl> ACTOR Future < GetReadVersionReply > getLiveCommittedVersion ( SpanID parentSpan , Pro <nl> } <nl> <nl> ACTOR Future < Void > sendGrvReplies ( Future < GetReadVersionReply > replyFuture , std : : vector < GetReadVersionRequest > requests , <nl> - ProxyStats * stats , Version minKnownCommittedVersion , PrioritizedTransactionTagMap < ClientTagThrottleLimits > throttledTags ) { <nl> + ProxyStats * stats , Version minKnownCommittedVersion , <nl> + PrioritizedTransactionTagMap < ClientTagThrottleLimits > throttledTags , int64_t midShardSize = 0 ) { <nl> GetReadVersionReply _reply = wait ( replyFuture ) ; <nl> GetReadVersionReply reply = _reply ; <nl> Version replyVersion = reply . version ; <nl> ACTOR Future < Void > sendGrvReplies ( Future < GetReadVersionReply > replyFuture , std : : <nl> else { <nl> reply . version = replyVersion ; <nl> } <nl> - <nl> + reply . midShardSize = midShardSize ; <nl> reply . tagThrottleInfo . clear ( ) ; <nl> <nl> if ( ! request . tags . empty ( ) ) { <nl> ACTOR static Future < Void > transactionStarter ( <nl> state PromiseStream < double > replyTimes ; <nl> state Span span ; <nl> <nl> + state int64_t midShardSize = SERVER_KNOBS - > MIN_SHARD_BYTES ; <nl> + addActor . send ( monitorDDMetricsChanges ( & midShardSize , db ) ) ; <nl> + <nl> addActor . send ( getRate ( proxy . id ( ) , db , & transactionCount , & batchTransactionCount , & normalRateInfo , & batchRateInfo , <nl> healthMetricsReply , detailedHealthMetricsReply , & transactionTagCounter , & throttledTags , <nl> - & ( commitData - > transactionTagCommitCostEst ) ) ) ; <nl> + & ( commitData - > ssTrTagCommitCost ) ) ) ; <nl> addActor . send ( queueTransactionStartRequests ( db , & systemQueue , & defaultQueue , & batchQueue , proxy . getConsistentReadVersion . getFuture ( ) , <nl> GRVTimer , & lastGRVTime , & GRVBatchTime , replyTimes . getFuture ( ) , & commitData - > stats , & batchRateInfo , <nl> & transactionTagCounter ) ) ; <nl> ACTOR static Future < Void > transactionStarter ( <nl> span . context , commitData , i , debugID , transactionsStarted [ i ] , systemTransactionsStarted [ i ] , <nl> defaultPriTransactionsStarted [ i ] , batchPriTransactionsStarted [ i ] ) ; <nl> addActor . send ( sendGrvReplies ( readVersionReply , start [ i ] , & commitData - > stats , <nl> - commitData - > minKnownCommittedVersion , throttledTags ) ) ; <nl> + commitData - > minKnownCommittedVersion , throttledTags , midShardSize ) ) ; <nl> <nl> / / for now , base dynamic batching on the time for normal requests ( not read_risky ) <nl> if ( i = = 0 ) { <nl> ACTOR Future < Void > ddMetricsRequestServer ( MasterProxyInterface proxy , Reference < <nl> choose { <nl> when ( state GetDDMetricsRequest req = waitNext ( proxy . getDDMetrics . getFuture ( ) ) ) <nl> { <nl> - ErrorOr < GetDataDistributorMetricsReply > reply = wait ( errorOr ( db - > get ( ) . distributor . get ( ) . dataDistributorMetrics . getReply ( GetDataDistributorMetricsRequest ( req . keys , req . shardLimit ) ) ) ) ; <nl> - if ( reply . isError ( ) ) { <nl> + if ( ! db - > get ( ) . distributor . present ( ) ) { <nl> + req . reply . sendError ( dd_not_found ( ) ) ; <nl> + continue ; <nl> + } <nl> + ErrorOr < GetDataDistributorMetricsReply > reply = <nl> + wait ( errorOr ( db - > get ( ) . distributor . get ( ) . dataDistributorMetrics . getReply ( <nl> + GetDataDistributorMetricsRequest ( req . keys , req . shardLimit ) ) ) ) ; <nl> + if ( reply . isError ( ) ) { <nl> req . reply . sendError ( reply . getError ( ) ) ; <nl> } else { <nl> GetDDMetricsReply newReply ; <nl> ACTOR Future < Void > proxySnapCreate ( ProxySnapRequest snapReq , ProxyCommitData * co <nl> / / send a snap request to DD <nl> if ( ! commitData - > db - > get ( ) . distributor . present ( ) ) { <nl> TraceEvent ( SevWarnAlways , " DataDistributorNotPresent " ) . detail ( " Operation " , " SnapRequest " ) ; <nl> - throw operation_failed ( ) ; <nl> + throw dd_not_found ( ) ; <nl> } <nl> state Future < ErrorOr < Void > > ddSnapReq = <nl> commitData - > db - > get ( ) . distributor . get ( ) . distributorSnapReq . tryGetReply ( DistributorSnapRequest ( snapReq . snapPayload , snapReq . snapUID ) ) ; <nl> mmm a / fdbserver / ProxyCommitData . actor . h <nl> ppp b / fdbserver / ProxyCommitData . actor . h <nl> struct ProxyStats { <nl> Counter mutations ; <nl> Counter conflictRanges ; <nl> Counter keyServerLocationIn , keyServerLocationOut , keyServerLocationErrors ; <nl> + Counter txnExpensiveClearCostEstCount ; <nl> Version lastCommitVersionAssigned ; <nl> <nl> LatencySample commitLatencySample ; <nl> struct ProxyStats { <nl> conflictRanges ( " ConflictRanges " , cc ) , keyServerLocationIn ( " KeyServerLocationIn " , cc ) , <nl> keyServerLocationOut ( " KeyServerLocationOut " , cc ) , keyServerLocationErrors ( " KeyServerLocationErrors " , cc ) , <nl> lastCommitVersionAssigned ( 0 ) , <nl> + txnExpensiveClearCostEstCount ( " ExpensiveClearCostEstCount " , cc ) , <nl> commitLatencySample ( " CommitLatencyMetrics " , id , SERVER_KNOBS - > LATENCY_METRICS_LOGGING_INTERVAL , <nl> SERVER_KNOBS - > LATENCY_SAMPLE_SIZE ) , <nl> grvLatencySample ( " GRVLatencyMetrics " , id , SERVER_KNOBS - > LATENCY_METRICS_LOGGING_INTERVAL , <nl> struct ProxyCommitData { <nl> NotifiedDouble lastCommitTime ; <nl> <nl> vector < double > commitComputePerOperation ; <nl> - TransactionTagMap < TransactionCommitCostEstimation > transactionTagCommitCostEst ; <nl> + UIDTransactionTagMap < TransactionCommitCostEstimation > ssTrTagCommitCost ; <nl> <nl> / / The tag related to a storage server rarely change , so we keep a vector of tags for each key range to be slightly <nl> / / more CPU efficient . When a tag related to a storage server does change , we empty out all of these vectors to <nl> struct ProxyCommitData { <nl> auto & tags = keyInfo [ key ] . tags ; <nl> if ( ! tags . size ( ) ) { <nl> auto & r = keyInfo . rangeContaining ( key ) . value ( ) ; <nl> - for ( auto info : r . src_info ) { <nl> - r . tags . push_back ( info - > tag ) ; <nl> - } <nl> - for ( auto info : r . dest_info ) { <nl> - r . tags . push_back ( info - > tag ) ; <nl> - } <nl> - uniquify ( r . tags ) ; <nl> + r . populateTags ( ) ; <nl> return r . tags ; <nl> } <nl> return tags ; <nl> struct ProxyCommitData { <nl> latencyBandConfig = newLatencyBandConfig ; <nl> } <nl> <nl> + void updateSSTagCost ( const UID & id , const TagSet & tagSet , MutationRef m , int cost ) { <nl> + auto [ it , _ ] = ssTrTagCommitCost . try_emplace ( id , TransactionTagMap < TransactionCommitCostEstimation > ( ) ) ; <nl> + <nl> + for ( auto & tag : tagSet ) { <nl> + auto & costItem = it - > second [ tag ] ; <nl> + if ( m . isAtomicOp ( ) | | m . type = = MutationRef : : Type : : SetValue | | m . type = = MutationRef : : Type : : ClearRange ) { <nl> + costItem . opsSum + + ; <nl> + costItem . costSum + = cost ; <nl> + } <nl> + } <nl> + } <nl> + <nl> ProxyCommitData ( UID dbgid , MasterInterface master , RequestStream < GetReadVersionRequest > getConsistentReadVersion , <nl> Version recoveryTransactionVersion , RequestStream < CommitTransactionRequest > commit , <nl> Reference < AsyncVar < ServerDBInfo > > db , bool firstProxy ) <nl> mmm a / fdbserver / Ratekeeper . actor . cpp <nl> ppp b / fdbserver / Ratekeeper . actor . cpp <nl> struct StorageQueueInfo { <nl> Smoother smoothTotalSpace ; <nl> limitReason_t limitReason ; <nl> <nl> - Optional < TransactionTag > busiestTag ; <nl> - double busiestTagFractionalBusyness ; <nl> - double busiestTagRate ; <nl> + Optional < TransactionTag > busiestReadTag , busiestWriteTag ; <nl> + double busiestReadTagFractionalBusyness = 0 , busiestWriteTagFractionalBusyness = 0 ; <nl> + double busiestReadTagRate = 0 , busiestWriteTagRate = 0 ; <nl> + <nl> + / / refresh periodically <nl> + TransactionTagMap < TransactionCommitCostEstimation > tagCostEst ; <nl> + uint64_t totalWriteCosts = 0 ; <nl> + int totalWriteOps = 0 ; <nl> <nl> StorageQueueInfo ( UID id , LocalityData locality ) <nl> : valid ( false ) , id ( id ) , locality ( locality ) , smoothDurableBytes ( SERVER_KNOBS - > SMOOTHING_AMOUNT ) , <nl> smoothInputBytes ( SERVER_KNOBS - > SMOOTHING_AMOUNT ) , verySmoothDurableBytes ( SERVER_KNOBS - > SLOW_SMOOTHING_AMOUNT ) , <nl> smoothDurableVersion ( SERVER_KNOBS - > SMOOTHING_AMOUNT ) , <nl> smoothLatestVersion ( SERVER_KNOBS - > SMOOTHING_AMOUNT ) , smoothFreeSpace ( SERVER_KNOBS - > SMOOTHING_AMOUNT ) , <nl> - smoothTotalSpace ( SERVER_KNOBS - > SMOOTHING_AMOUNT ) , limitReason ( limitReason_t : : unlimited ) , busiestTagFractionalBusyness ( 0 ) , <nl> - busiestTagRate ( 0 ) { <nl> + smoothTotalSpace ( SERVER_KNOBS - > SMOOTHING_AMOUNT ) , limitReason ( limitReason_t : : unlimited ) { <nl> / / FIXME : this is a tacky workaround for a potential uninitialized use in trackStorageServerQueueInfo <nl> lastReply . instanceID = - 1 ; <nl> } <nl> struct RatekeeperData { <nl> <nl> double lastWarning ; <nl> double lastSSListFetchedTimestamp ; <nl> + double lastBusiestCommitTagPick ; <nl> <nl> RkTagThrottleCollection throttledTags ; <nl> uint64_t throttledTagChangeId ; <nl> struct RatekeeperData { <nl> smoothBatchReleasedTransactions ( SERVER_KNOBS - > SMOOTHING_AMOUNT ) , <nl> smoothTotalDurableBytes ( SERVER_KNOBS - > SLOW_SMOOTHING_AMOUNT ) , <nl> actualTpsMetric ( LiteralStringRef ( " Ratekeeper . ActualTPS " ) ) , lastWarning ( 0 ) , lastSSListFetchedTimestamp ( now ( ) ) , <nl> - throttledTagChangeId ( 0 ) , <nl> + throttledTagChangeId ( 0 ) , lastBusiestCommitTagPick ( 0 ) , <nl> normalLimits ( TransactionPriority : : DEFAULT , " " , SERVER_KNOBS - > TARGET_BYTES_PER_STORAGE_SERVER , <nl> SERVER_KNOBS - > SPRING_BYTES_STORAGE_SERVER , SERVER_KNOBS - > TARGET_BYTES_PER_TLOG , <nl> SERVER_KNOBS - > SPRING_BYTES_TLOG , SERVER_KNOBS - > MAX_TL_SS_VERSION_DIFFERENCE , <nl> ACTOR Future < Void > trackStorageServerQueueInfo ( RatekeeperData * self , StorageSer <nl> myQueueInfo - > value . smoothLatestVersion . setTotal ( reply . get ( ) . version ) ; <nl> } <nl> <nl> - myQueueInfo - > value . busiestTag = reply . get ( ) . busiestTag ; <nl> - myQueueInfo - > value . busiestTagFractionalBusyness = reply . get ( ) . busiestTagFractionalBusyness ; <nl> - myQueueInfo - > value . busiestTagRate = reply . get ( ) . busiestTagRate ; <nl> + myQueueInfo - > value . busiestReadTag = reply . get ( ) . busiestTag ; <nl> + myQueueInfo - > value . busiestReadTagFractionalBusyness = reply . get ( ) . busiestTagFractionalBusyness ; <nl> + myQueueInfo - > value . busiestReadTagRate = reply . get ( ) . busiestTagRate ; <nl> } else { <nl> if ( myQueueInfo - > value . valid ) { <nl> TraceEvent ( " RkStorageServerDidNotRespond " , self - > id ) <nl> ACTOR Future < Void > monitorThrottlingChanges ( RatekeeperData * self ) { <nl> } <nl> } <nl> <nl> - void tryAutoThrottleTag ( RatekeeperData * self , StorageQueueInfo const & ss ) { <nl> - if ( ss . busiestTag . present ( ) & & ss . busiestTagFractionalBusyness > SERVER_KNOBS - > AUTO_THROTTLE_TARGET_TAG_BUSYNESS & & ss . busiestTagRate > SERVER_KNOBS - > MIN_TAG_COST ) { <nl> - TEST ( true ) ; / / Transaction tag auto - throttled <nl> + Future < Void > refreshStorageServerCommitCost ( RatekeeperData * self ) { <nl> + if ( self - > lastBusiestCommitTagPick = = 0 ) { / / the first call should be skipped <nl> + self - > lastBusiestCommitTagPick = now ( ) ; <nl> + return Void ( ) ; <nl> + } <nl> + double elapsed = now ( ) - self - > lastBusiestCommitTagPick ; <nl> + / / for each SS , select the busiest commit tag from ssTrTagCommitCost <nl> + for ( auto it = self - > storageQueueInfo . begin ( ) ; it ! = self - > storageQueueInfo . end ( ) ; + + it ) { <nl> + it - > value . busiestWriteTag . reset ( ) ; <nl> + TransactionTag busiestTag ; <nl> + TransactionCommitCostEstimation maxCost ; <nl> + double maxRate = 0 , maxBusyness = 0 ; <nl> + for ( const auto & [ tag , cost ] : it - > value . tagCostEst ) { <nl> + double rate = cost . getOpsSum ( ) / elapsed ; <nl> + if ( rate > maxRate ) { <nl> + busiestTag = tag ; <nl> + maxRate = rate ; <nl> + maxCost = cost ; <nl> + } <nl> + } <nl> + if ( maxRate > SERVER_KNOBS - > MIN_TAG_PAGES_RATE ) { <nl> + it - > value . busiestWriteTag = busiestTag ; <nl> + / / TraceEvent ( " RefreshSSCommitCost " ) . detail ( " TotalWriteCost " , it - > value . totalWriteCost ) . detail ( " TotalWriteOps " , it - > value . totalWriteOps ) ; <nl> + ASSERT ( it - > value . totalWriteCosts > 0 ) ; <nl> + maxBusyness = double ( maxCost . getCostSum ( ) ) / it - > value . totalWriteCosts ; <nl> + it - > value . busiestWriteTagFractionalBusyness = maxBusyness ; <nl> + it - > value . busiestWriteTagRate = maxRate ; <nl> + } <nl> + <nl> + TraceEvent ( " BusiestWriteTag " , it - > key ) <nl> + . detail ( " Elapsed " , elapsed ) <nl> + . detail ( " Tag " , printable ( busiestTag ) ) <nl> + . detail ( " TagOps " , maxCost . getOpsSum ( ) ) <nl> + . detail ( " TagCosts " , maxCost . getCostSum ( ) ) <nl> + . detail ( " TagRate " , maxRate ) <nl> + . detail ( " TagBusyness " , maxBusyness ) <nl> + . detail ( " Reported " , it - > value . busiestWriteTag . present ( ) ) <nl> + . trackLatest ( it - > key . toString ( ) + " / BusiestWriteTag " ) ; <nl> + <nl> + / / reset statistics <nl> + it - > value . tagCostEst . clear ( ) ; <nl> + it - > value . totalWriteOps = 0 ; <nl> + it - > value . totalWriteCosts = 0 ; <nl> + } <nl> + self - > lastBusiestCommitTagPick = now ( ) ; <nl> + return Void ( ) ; <nl> + } <nl> <nl> - Optional < double > clientRate = self - > throttledTags . autoThrottleTag ( self - > id , ss . busiestTag . get ( ) , ss . busiestTagFractionalBusyness ) ; <nl> - if ( clientRate . present ( ) ) { <nl> + void tryAutoThrottleTag ( RatekeeperData * self , TransactionTag tag , double rate , double busyness , TagThrottledReason reason ) { <nl> + if ( busyness > SERVER_KNOBS - > AUTO_THROTTLE_TARGET_TAG_BUSYNESS & & rate > SERVER_KNOBS - > MIN_TAG_COST ) { <nl> + TEST ( true ) ; / / Transaction tag auto - throttled <nl> + Optional < double > clientRate = self - > throttledTags . autoThrottleTag ( self - > id , tag , busyness ) ; <nl> + if ( clientRate . present ( ) ) { <nl> TagSet tags ; <nl> - tags . addTag ( ss . busiestTag . get ( ) ) ; <nl> + tags . addTag ( tag ) ; <nl> <nl> self - > addActor . send ( ThrottleApi : : throttleTags ( <nl> self - > db , tags , clientRate . get ( ) , SERVER_KNOBS - > AUTO_TAG_THROTTLE_DURATION , TagThrottleType : : AUTO , <nl> - TransactionPriority : : DEFAULT , now ( ) + SERVER_KNOBS - > AUTO_TAG_THROTTLE_DURATION , <nl> - TagThrottledReason : : BUSY_READ ) ) ; <nl> + TransactionPriority : : DEFAULT , now ( ) + SERVER_KNOBS - > AUTO_TAG_THROTTLE_DURATION , reason ) ) ; <nl> } <nl> } <nl> } <nl> <nl> + void tryAutoThrottleTag ( RatekeeperData * self , StorageQueueInfo & ss , int64_t storageQueue , int64_t storageDurabilityLag ) { <nl> + / / TODO : reasonable criteria for write satuation should be investigated in experiment <nl> + / / if ( ss . busiestWriteTag . present ( ) & & storageQueue > SERVER_KNOBS - > AUTO_TAG_THROTTLE_STORAGE_QUEUE_BYTES & & <nl> + / / storageDurabilityLag > SERVER_KNOBS - > AUTO_TAG_THROTTLE_DURABILITY_LAG_VERSIONS ) { <nl> + / / / / write - saturated <nl> + / / tryAutoThrottleTag ( self , ss . busiestWriteTag . get ( ) , ss . busiestWriteTagRate , ss . busiestWriteTagFractionalBusyness ) ; <nl> + / / } else <nl> + if ( ss . busiestReadTag . present ( ) & & <nl> + ( storageQueue > SERVER_KNOBS - > AUTO_TAG_THROTTLE_STORAGE_QUEUE_BYTES | | <nl> + storageDurabilityLag > SERVER_KNOBS - > AUTO_TAG_THROTTLE_DURABILITY_LAG_VERSIONS ) ) { <nl> + / / read saturated <nl> + tryAutoThrottleTag ( self , ss . busiestReadTag . get ( ) , ss . busiestReadTagRate , ss . busiestReadTagFractionalBusyness , <nl> + TagThrottledReason : : BUSY_READ ) ; <nl> + } <nl> + } <nl> + <nl> void updateRate ( RatekeeperData * self , RatekeeperLimits * limits ) { <nl> / / double controlFactor = ; / / dt / eFoldingTime <nl> <nl> void updateRate ( RatekeeperData * self , RatekeeperLimits * limits ) { <nl> <nl> double targetRateRatio = std : : min ( ( storageQueue - targetBytes + springBytes ) / ( double ) springBytes , 2 . 0 ) ; <nl> <nl> - if ( limits - > priority = = TransactionPriority : : DEFAULT & & ( storageQueue > SERVER_KNOBS - > AUTO_TAG_THROTTLE_STORAGE_QUEUE_BYTES | | storageDurabilityLag > SERVER_KNOBS - > AUTO_TAG_THROTTLE_DURABILITY_LAG_VERSIONS ) ) { <nl> - tryAutoThrottleTag ( self , ss ) ; <nl> + if ( limits - > priority = = TransactionPriority : : DEFAULT ) { <nl> + tryAutoThrottleTag ( self , ss , storageQueue , storageDurabilityLag ) ; <nl> } <nl> <nl> double inputRate = ss . smoothInputBytes . smoothRate ( ) ; <nl> void updateRate ( RatekeeperData * self , RatekeeperLimits * limits ) { <nl> break ; <nl> } <nl> <nl> + / / Calculate limited durability lag <nl> int64_t limitingDurabilityLag = 0 ; <nl> <nl> std : : set < Optional < Standalone < StringRef > > > ignoredDurabilityLagMachines ; <nl> void updateRate ( RatekeeperData * self , RatekeeperLimits * limits ) { <nl> } <nl> } <nl> <nl> + static void updateCommitCostEstimation ( RatekeeperData * self , UIDTransactionTagMap < TransactionCommitCostEstimation > const & costEstimation ) { <nl> + for ( auto it = self - > storageQueueInfo . begin ( ) ; it ! = self - > storageQueueInfo . end ( ) ; + + it ) { <nl> + auto tagCostIt = costEstimation . find ( it - > key ) ; <nl> + if ( tagCostIt = = costEstimation . end ( ) ) continue ; <nl> + for ( const auto & [ tagName , cost ] : tagCostIt - > second ) { <nl> + it - > value . tagCostEst [ tagName ] + = cost ; <nl> + it - > value . totalWriteCosts + = cost . getCostSum ( ) ; <nl> + it - > value . totalWriteOps + = cost . getOpsSum ( ) ; <nl> + } <nl> + } <nl> + } <nl> + <nl> ACTOR Future < Void > configurationMonitor ( RatekeeperData * self ) { <nl> loop { <nl> state ReadYourWritesTransaction tr ( self - > db ) ; <nl> ACTOR Future < Void > ratekeeper ( RatekeeperInterface rkInterf , Reference < AsyncVar < S <nl> self . addActor . send ( traceRole ( Role : : RATEKEEPER , rkInterf . id ( ) ) ) ; <nl> <nl> self . addActor . send ( monitorThrottlingChanges ( & self ) ) ; <nl> + RatekeeperData * selfPtr = & self ; / / let flow compiler capture self <nl> + self . addActor . send ( recurring ( [ selfPtr ] ( ) { refreshStorageServerCommitCost ( selfPtr ) ; } , SERVER_KNOBS - > TAG_MEASUREMENT_INTERVAL ) ) ; <nl> <nl> TraceEvent ( " RkTLogQueueSizeParameters " , rkInterf . id ( ) ) . detail ( " Target " , SERVER_KNOBS - > TARGET_BYTES_PER_TLOG ) . detail ( " Spring " , SERVER_KNOBS - > SPRING_BYTES_TLOG ) <nl> . detail ( " Rate " , ( SERVER_KNOBS - > TARGET_BYTES_PER_TLOG - SERVER_KNOBS - > SPRING_BYTES_TLOG ) / ( ( ( ( double ) SERVER_KNOBS - > MAX_READ_TRANSACTION_LIFE_VERSIONS ) / SERVER_KNOBS - > VERSIONS_PER_SECOND ) + 2 . 0 ) ) ; <nl> ACTOR Future < Void > ratekeeper ( RatekeeperInterface rkInterf , Reference < AsyncVar < S <nl> for ( auto tag : req . throttledTagCounts ) { <nl> self . throttledTags . addRequests ( tag . first , tag . second ) ; <nl> } <nl> - / / TODO process commitCostEstimation <nl> - / / for ( const auto & [ tagName , cost ] : req . throttledTagCommitCostEst ) { <nl> - / / <nl> - / / } <nl> } <nl> if ( p . batchTransactions > 0 ) { <nl> self . smoothBatchReleasedTransactions . addDelta ( req . batchReleasedTransactions - p . batchTransactions ) ; <nl> ACTOR Future < Void > ratekeeper ( RatekeeperInterface rkInterf , Reference < AsyncVar < S <nl> reply . batchTransactionRate = self . batchLimits . tpsLimit / self . proxyInfo . size ( ) ; <nl> reply . leaseDuration = SERVER_KNOBS - > METRIC_UPDATE_RATE ; <nl> <nl> + updateCommitCostEstimation ( & self , req . ssTrTagCommitCost ) ; <nl> + <nl> if ( p . lastThrottledTagChangeId ! = self . throttledTagChangeId | | now ( ) < p . lastTagPushTime + SERVER_KNOBS - > TAG_THROTTLE_PUSH_INTERVAL ) { <nl> p . lastThrottledTagChangeId = self . throttledTagChangeId ; <nl> p . lastTagPushTime = now ( ) ; <nl> mmm a / fdbserver / RatekeeperInterface . h <nl> ppp b / fdbserver / RatekeeperInterface . h <nl> struct ClientTagThrottleLimits { <nl> } ; <nl> <nl> struct TransactionCommitCostEstimation { <nl> - int numWrite = 0 ; <nl> - int numAtomicWrite = 0 ; <nl> - int numClear = 0 ; <nl> - int numClearShards = 0 ; <nl> - uint64_t bytesWrite = 0 ; <nl> - uint64_t bytesAtomicWrite = 0 ; <nl> - uint64_t bytesClearEst = 0 ; <nl> + int opsSum = 0 ; <nl> + uint64_t costSum = 0 ; <nl> + <nl> + uint64_t getCostSum ( ) const { return costSum ; } <nl> + int getOpsSum ( ) const { return opsSum ; } <nl> <nl> template < class Ar > <nl> void serialize ( Ar & ar ) { <nl> - serializer ( ar , bytesWrite , bytesClearEst , bytesAtomicWrite , numWrite , numAtomicWrite , numClear , numClearShards ) ; <nl> + serializer ( ar , opsSum , costSum ) ; <nl> } <nl> <nl> TransactionCommitCostEstimation & operator + = ( const TransactionCommitCostEstimation & other ) { <nl> - numWrite + = other . numWrite ; <nl> - numAtomicWrite + = other . numAtomicWrite ; <nl> - numClear + = other . numClear ; <nl> - bytesWrite + = other . bytesWrite ; <nl> - bytesAtomicWrite + = other . numAtomicWrite ; <nl> - numClearShards + = other . numClearShards ; <nl> - bytesClearEst + = other . bytesClearEst ; <nl> + opsSum + = other . opsSum ; <nl> + costSum + = other . costSum ; <nl> return * this ; <nl> } <nl> } ; <nl> <nl> + struct ClientTrCommitCostEstimation { <nl> + int opsCount = 0 ; <nl> + uint64_t writeCosts = 0 ; <nl> + std : : deque < std : : pair < int , uint64_t > > clearIdxCosts ; <nl> + uint32_t expensiveCostEstCount = 0 ; <nl> + template < class Ar > <nl> + void serialize ( Ar & ar ) { <nl> + serializer ( ar , opsCount , writeCosts , clearIdxCosts , expensiveCostEstCount ) ; <nl> + } <nl> + } ; <nl> + <nl> struct GetRateInfoReply { <nl> constexpr static FileIdentifier file_identifier = 7845006 ; <nl> double transactionRate ; <nl> struct GetRateInfoRequest { <nl> int64_t batchReleasedTransactions ; <nl> <nl> TransactionTagMap < uint64_t > throttledTagCounts ; <nl> - TransactionTagMap < TransactionCommitCostEstimation > throttledTagCommitCostEst ; <nl> + UIDTransactionTagMap < TransactionCommitCostEstimation > ssTrTagCommitCost ; <nl> bool detailed ; <nl> ReplyPromise < struct GetRateInfoReply > reply ; <nl> <nl> GetRateInfoRequest ( ) { } <nl> GetRateInfoRequest ( UID const & requesterID , int64_t totalReleasedTransactions , int64_t batchReleasedTransactions , <nl> TransactionTagMap < uint64_t > throttledTagCounts , <nl> - TransactionTagMap < TransactionCommitCostEstimation > throttledTagCommitCostEst , bool detailed ) <nl> + UIDTransactionTagMap < TransactionCommitCostEstimation > ssTrTagCommitCost , bool detailed ) <nl> : requesterID ( requesterID ) , totalReleasedTransactions ( totalReleasedTransactions ) , <nl> batchReleasedTransactions ( batchReleasedTransactions ) , throttledTagCounts ( throttledTagCounts ) , <nl> - throttledTagCommitCostEst ( throttledTagCommitCostEst ) , detailed ( detailed ) { } <nl> + ssTrTagCommitCost ( ssTrTagCommitCost ) , detailed ( detailed ) { } <nl> <nl> template < class Ar > <nl> void serialize ( Ar & ar ) { <nl> - serializer ( ar , requesterID , totalReleasedTransactions , batchReleasedTransactions , throttledTagCounts , detailed , reply , throttledTagCommitCostEst ) ; <nl> + serializer ( ar , requesterID , totalReleasedTransactions , batchReleasedTransactions , throttledTagCounts , detailed , reply , ssTrTagCommitCost ) ; <nl> } <nl> } ; <nl> <nl> mmm a / fdbserver / storageserver . actor . cpp <nl> ppp b / fdbserver / storageserver . actor . cpp <nl> struct StorageServer { <nl> Optional < TagInfo > previousBusiestTag ; <nl> <nl> int64_t costFunction ( int64_t bytes ) { <nl> - return bytes / SERVER_KNOBS - > OPERATION_COST_BYTE_FACTOR + 1 ; <nl> + return bytes / SERVER_KNOBS - > READ_COST_BYTE_FACTOR + 1 ; <nl> } <nl> <nl> void addRequest ( Optional < TagSet > const & tags , int64_t bytes ) { <nl> struct StorageServer { <nl> previousBusiestTag . reset ( ) ; <nl> if ( intervalStart > 0 & & CLIENT_KNOBS - > READ_TAG_SAMPLE_RATE > 0 & & elapsed > 0 ) { <nl> double rate = busiestTagCount / CLIENT_KNOBS - > READ_TAG_SAMPLE_RATE / elapsed ; <nl> - if ( rate > SERVER_KNOBS - > MIN_TAG_PAGES_READ_RATE ) { <nl> + if ( rate > SERVER_KNOBS - > MIN_TAG_PAGES_RATE ) { <nl> previousBusiestTag = TagInfo ( busiestTag , rate , ( double ) busiestTagCount / intervalTotalSampledCount ) ; <nl> } <nl> <nl> ACTOR Future < Void > storageServerCore ( StorageServer * self , StorageServerInterfac <nl> self - > actors . add ( traceRole ( Role : : STORAGE_SERVER , ssi . id ( ) ) ) ; <nl> <nl> self - > transactionTagCounter . startNewInterval ( self - > thisServerID ) ; <nl> - self - > actors . add ( recurring ( [ & ] ( ) { self - > transactionTagCounter . startNewInterval ( self - > thisServerID ) ; } , SERVER_KNOBS - > READ_TAG_MEASUREMENT_INTERVAL ) ) ; <nl> + self - > actors . add ( recurring ( [ & ] ( ) { self - > transactionTagCounter . startNewInterval ( self - > thisServerID ) ; } , SERVER_KNOBS - > TAG_MEASUREMENT_INTERVAL ) ) ; <nl> <nl> self - > coreStarted . send ( Void ( ) ) ; <nl> <nl> mmm a / flow / error_definitions . h <nl> ppp b / flow / error_definitions . h <nl> ERROR ( connection_idle , 1049 , " Connection closed after idle timeout " ) <nl> ERROR ( disk_adapter_reset , 1050 , " The disk queue adpater reset " ) <nl> ERROR ( batch_transaction_throttled , 1051 , " Batch GRV request rate limit exceeded " ) <nl> ERROR ( dd_cancelled , 1052 , " Data distribution components cancelled " ) <nl> + ERROR ( dd_not_found , 1053 , " Data distributor not found " ) <nl> <nl> ERROR ( broken_promise , 1100 , " Broken promise " ) <nl> ERROR ( operation_cancelled , 1101 , " Asynchronous operation cancelled " ) <nl> mmm a / flow / flat_buffers . h <nl> ppp b / flow / flat_buffers . h <nl> <nl> # include < typeinfo > <nl> # include < typeindex > <nl> # include < unordered_map > <nl> + # include < deque > <nl> # include " flow / FileIdentifier . h " <nl> # include " flow / ObjectSerializerTraits . h " <nl> <nl> struct vector_like_traits < std : : vector < T , Alloc > > : std : : true_type { <nl> } <nl> } ; <nl> <nl> + template < class T , class Alloc > <nl> + struct vector_like_traits < std : : deque < T , Alloc > > : std : : true_type { <nl> + using Deq = std : : deque < T , Alloc > ; <nl> + using value_type = typename Deq : : value_type ; <nl> + using iterator = typename Deq : : const_iterator ; <nl> + using insert_iterator = std : : back_insert_iterator < Deq > ; <nl> + <nl> + template < class Context > <nl> + static size_t num_entries ( const Deq & v , Context & ) { <nl> + return v . size ( ) ; <nl> + } <nl> + template < class Context > <nl> + static void reserve ( Deq & v , size_t size , Context & ) { <nl> + v . resize ( size ) ; <nl> + v . clear ( ) ; <nl> + } <nl> + <nl> + template < class Context > <nl> + static insert_iterator insert ( Deq & v , Context & ) { <nl> + return std : : back_inserter ( v ) ; <nl> + } <nl> + template < class Context > <nl> + static iterator begin ( const Deq & v , Context & ) { <nl> + return v . begin ( ) ; <nl> + } <nl> + } ; <nl> + <nl> template < class T , size_t N > <nl> struct vector_like_traits < std : : array < T , N > > : std : : true_type { <nl> using Vec = std : : array < T , N > ; <nl> mmm a / flow / serialize . h <nl> ppp b / flow / serialize . h <nl> <nl> # include " flow / FileIdentifier . h " <nl> # include " flow / ObjectSerializer . h " <nl> # include < algorithm > <nl> + # include < deque > <nl> <nl> / / Though similar , is_binary_serializable cannot be replaced by std : : is_pod , as doing so would prefer <nl> / / memcpy over a defined serialize ( ) method on a POD struct . As not all of our structs are packed , <nl> inline void load ( Archive & ar , std : : vector < T > & value ) { <nl> ASSERT ( ar . protocolVersion ( ) . isValid ( ) ) ; <nl> } <nl> <nl> + template < class Archive , class T > <nl> + inline void save ( Archive & ar , const std : : deque < T > & value ) { <nl> + ar < < ( int ) value . size ( ) ; <nl> + for ( auto it = value . begin ( ) ; it ! = value . end ( ) ; + + it ) <nl> + ar < < * it ; <nl> + ASSERT ( ar . protocolVersion ( ) . isValid ( ) ) ; <nl> + } <nl> + <nl> + template < class Archive , class T > <nl> + inline void load ( Archive & ar , std : : deque < T > & value ) { <nl> + int s ; <nl> + ar > > s ; <nl> + value . clear ( ) ; <nl> + value . reserve ( s ) ; <nl> + for ( int i = 0 ; i < s ; i + + ) { <nl> + value . push_back ( T ( ) ) ; <nl> + ar > > value [ i ] ; <nl> + } <nl> + ASSERT ( ar . protocolVersion ( ) . isValid ( ) ) ; <nl> + } <nl> + <nl> template < class Archive , class T , size_t N > <nl> inline void save ( Archive & ar , const std : : array < T , N > & value ) { <nl> for ( int ii = 0 ; ii < N ; + + ii ) <nl>
Merge pull request from sfc - gh - xwang / master
apple/foundationdb
d36d61e0ba43dd3cb598567981b5c2eeee3d0569
2020-08-27T01:21:27Z
mmm a / atom / browser / api / atom_api_web_contents . cc <nl> ppp b / atom / browser / api / atom_api_web_contents . cc <nl> <nl> # include " chrome / browser / ssl / security_state_tab_helper . h " <nl> # include " content / browser / frame_host / navigation_entry_impl . h " <nl> # include " content / browser / renderer_host / render_widget_host_impl . h " <nl> + # include " content / browser / renderer_host / render_widget_host_view_base . h " <nl> # include " content / browser / web_contents / web_contents_impl . h " <nl> # include " content / common / view_messages . h " <nl> # include " content / public / browser / favicon_status . h " <nl> WebContents : : WebContents ( v8 : : Isolate * isolate , const mate : : Dictionary & options ) <nl> else if ( options . Get ( " offscreen " , & b ) & & b ) <nl> type_ = OFF_SCREEN ; <nl> <nl> + / / Init embedder earlier <nl> + options . Get ( " embedder " , & embedder_ ) ; <nl> + <nl> / / Whether to enable DevTools . <nl> options . Get ( " devTools " , & enable_devtools_ ) ; <nl> <nl> WebContents : : WebContents ( v8 : : Isolate * isolate , const mate : : Dictionary & options ) <nl> session - > browser_context ( ) , site_instance ) ; <nl> guest_delegate_ . reset ( new WebViewGuestDelegate ) ; <nl> params . guest_delegate = guest_delegate_ . get ( ) ; <nl> - web_contents = content : : WebContents : : Create ( params ) ; <nl> + <nl> + if ( embedder_ & & embedder_ - > IsOffScreen ( ) ) { <nl> + auto * view = new OffScreenWebContentsView ( false , <nl> + base : : Bind ( & WebContents : : OnPaint , base : : Unretained ( this ) ) ) ; <nl> + params . view = view ; <nl> + params . delegate_view = view ; <nl> + <nl> + web_contents = content : : WebContents : : Create ( params ) ; <nl> + view - > SetWebContents ( web_contents ) ; <nl> + } else { <nl> + web_contents = content : : WebContents : : Create ( params ) ; <nl> + } <nl> } else if ( IsOffScreen ( ) ) { <nl> bool transparent = false ; <nl> options . Get ( " transparent " , & transparent ) ; <nl> void WebContents : : InitWithSessionAndOptions ( v8 : : Isolate * isolate , <nl> guest_delegate_ - > Initialize ( this ) ; <nl> <nl> NativeWindow * owner_window = nullptr ; <nl> - if ( options . Get ( " embedder " , & embedder_ ) & & embedder_ ) { <nl> + if ( embedder_ ) { <nl> / / New WebContents ' s owner_window is the embedder ' s owner_window . <nl> auto relay = <nl> NativeWindowRelay : : FromWebContents ( embedder_ - > web_contents ( ) ) ; <nl> bool WebContents : : SendIPCMessage ( bool all_frames , <nl> <nl> void WebContents : : SendInputEvent ( v8 : : Isolate * isolate , <nl> v8 : : Local < v8 : : Value > input_event ) { <nl> - const auto view = web_contents ( ) - > GetRenderWidgetHostView ( ) ; <nl> + const auto view = static_cast < content : : RenderWidgetHostViewBase * > ( <nl> + web_contents ( ) - > GetRenderWidgetHostView ( ) ) ; <nl> if ( ! view ) <nl> return ; <nl> - const auto host = view - > GetRenderWidgetHost ( ) ; <nl> - if ( ! host ) <nl> - return ; <nl> <nl> int type = mate : : GetWebInputEventType ( isolate , input_event ) ; <nl> if ( blink : : WebInputEvent : : isMouseEventType ( type ) ) { <nl> blink : : WebMouseEvent mouse_event ; <nl> if ( mate : : ConvertFromV8 ( isolate , input_event , & mouse_event ) ) { <nl> - host - > ForwardMouseEvent ( mouse_event ) ; <nl> + view - > ProcessMouseEvent ( mouse_event , ui : : LatencyInfo ( ) ) ; <nl> return ; <nl> } <nl> } else if ( blink : : WebInputEvent : : isKeyboardEventType ( type ) ) { <nl> void WebContents : : SendInputEvent ( v8 : : Isolate * isolate , <nl> blink : : WebInputEvent : : NoModifiers , <nl> ui : : EventTimeForNow ( ) ) ; <nl> if ( mate : : ConvertFromV8 ( isolate , input_event , & keyboard_event ) ) { <nl> - host - > ForwardKeyboardEvent ( keyboard_event ) ; <nl> + view - > ProcessKeyboardEvent ( keyboard_event ) ; <nl> return ; <nl> } <nl> } else if ( type = = blink : : WebInputEvent : : MouseWheel ) { <nl> blink : : WebMouseWheelEvent mouse_wheel_event ; <nl> if ( mate : : ConvertFromV8 ( isolate , input_event , & mouse_wheel_event ) ) { <nl> - host - > ForwardWheelEvent ( mouse_wheel_event ) ; <nl> + view - > ProcessMouseEvent ( mouse_wheel_event , ui : : LatencyInfo ( ) ) ; <nl> return ; <nl> } <nl> } <nl> void WebContents : : Invalidate ( ) { <nl> } <nl> } <nl> <nl> + gfx : : Size WebContents : : GetSizeForNewRenderView ( <nl> + content : : WebContents * web_contents ) const { <nl> + auto relay = NativeWindowRelay : : FromWebContents ( web_contents ) ; <nl> + if ( relay ) { <nl> + return relay - > window - > GetSize ( ) ; <nl> + } <nl> + <nl> + return gfx : : Size ( ) ; <nl> + } <nl> + <nl> void WebContents : : SetZoomLevel ( double level ) { <nl> zoom_controller_ - > SetZoomLevel ( level ) ; <nl> } <nl> mmm a / atom / browser / api / atom_api_web_contents . h <nl> ppp b / atom / browser / api / atom_api_web_contents . h <nl> class WebContents : public mate : : TrackableObject < WebContents > , <nl> void SetFrameRate ( int frame_rate ) ; <nl> int GetFrameRate ( ) const ; <nl> void Invalidate ( ) ; <nl> + gfx : : Size GetSizeForNewRenderView ( content : : WebContents * ) const override ; <nl> <nl> / / Methods for zoom handling . <nl> void SetZoomLevel ( double level ) ; <nl> mmm a / atom / browser / native_window . h <nl> ppp b / atom / browser / native_window . h <nl> class NativeWindow : public base : : SupportsUserData , <nl> virtual void SetMenu ( AtomMenuModel * menu ) ; <nl> virtual void SetParentWindow ( NativeWindow * parent ) ; <nl> virtual void SetBrowserView ( NativeBrowserView * browser_view ) = 0 ; <nl> + virtual gfx : : NativeView GetNativeView ( ) = 0 ; <nl> virtual gfx : : NativeWindow GetNativeWindow ( ) = 0 ; <nl> virtual gfx : : AcceleratedWidget GetAcceleratedWidget ( ) = 0 ; <nl> <nl> mmm a / atom / browser / native_window_views . cc <nl> ppp b / atom / browser / native_window_views . cc <nl> void NativeWindowViews : : SetParentWindow ( NativeWindow * parent ) { <nl> # endif <nl> } <nl> <nl> + gfx : : NativeView NativeWindowViews : : GetNativeView ( ) { <nl> + return window_ - > GetNativeView ( ) ; <nl> + } <nl> + <nl> gfx : : NativeWindow NativeWindowViews : : GetNativeWindow ( ) { <nl> return window_ - > GetNativeWindow ( ) ; <nl> } <nl> mmm a / atom / browser / native_window_views . h <nl> ppp b / atom / browser / native_window_views . h <nl> class NativeWindowViews : public NativeWindow , <nl> void SetMenu ( AtomMenuModel * menu_model ) override ; <nl> void SetBrowserView ( NativeBrowserView * browser_view ) override ; <nl> void SetParentWindow ( NativeWindow * parent ) override ; <nl> + gfx : : NativeView GetNativeView ( ) override ; <nl> gfx : : NativeWindow GetNativeWindow ( ) override ; <nl> void SetOverlayIcon ( const gfx : : Image & overlay , <nl> const std : : string & description ) override ; <nl> mmm a / atom / browser / osr / osr_render_widget_host_view . cc <nl> ppp b / atom / browser / osr / osr_render_widget_host_view . cc <nl> <nl> # include " content / browser / renderer_host / render_widget_host_delegate . h " <nl> # include " content / browser / renderer_host / render_widget_host_impl . h " <nl> # include " content / browser / renderer_host / render_widget_host_view_frame_subscriber . h " <nl> + # include " content / browser / renderer_host / resize_lock . h " <nl> # include " content / common / view_messages . h " <nl> # include " content / public / browser / browser_thread . h " <nl> # include " content / public / browser / context_factory . h " <nl> <nl> # include " ui / compositor / layer . h " <nl> # include " ui / compositor / layer_type . h " <nl> # include " ui / events / latency_info . h " <nl> + # include " ui / gfx / skbitmap_operations . h " <nl> # include " ui / gfx / geometry / dip_util . h " <nl> # include " ui / gfx / native_widget_types . h " <nl> <nl> namespace { <nl> const float kDefaultScaleFactor = 1 . 0 ; <nl> const int kFrameRetryLimit = 2 ; <nl> <nl> + # if ! defined ( OS_MACOSX ) <nl> + <nl> + const int kResizeLockTimeoutMs = 67 ; <nl> + <nl> + class AtomResizeLock : public content : : ResizeLock { <nl> + public : <nl> + AtomResizeLock ( OffScreenRenderWidgetHostView * host , <nl> + const gfx : : Size new_size , <nl> + bool defer_compositor_lock ) <nl> + : ResizeLock ( new_size , defer_compositor_lock ) , <nl> + host_ ( host ) , <nl> + cancelled_ ( false ) , <nl> + weak_ptr_factory_ ( this ) { <nl> + DCHECK ( host_ ) ; <nl> + host_ - > HoldResize ( ) ; <nl> + <nl> + content : : BrowserThread : : PostDelayedTask ( content : : BrowserThread : : UI , <nl> + FROM_HERE , base : : Bind ( & AtomResizeLock : : CancelLock , <nl> + weak_ptr_factory_ . GetWeakPtr ( ) ) , <nl> + base : : TimeDelta : : FromMilliseconds ( kResizeLockTimeoutMs ) ) ; <nl> + } <nl> + <nl> + ~ AtomResizeLock ( ) override { <nl> + CancelLock ( ) ; <nl> + } <nl> + <nl> + bool GrabDeferredLock ( ) override { <nl> + return ResizeLock : : GrabDeferredLock ( ) ; <nl> + } <nl> + <nl> + void UnlockCompositor ( ) override { <nl> + ResizeLock : : UnlockCompositor ( ) ; <nl> + compositor_lock_ = NULL ; <nl> + } <nl> + <nl> + protected : <nl> + void LockCompositor ( ) override { <nl> + ResizeLock : : LockCompositor ( ) ; <nl> + compositor_lock_ = host_ - > GetCompositor ( ) - > GetCompositorLock ( ) ; <nl> + } <nl> + <nl> + void CancelLock ( ) { <nl> + if ( cancelled_ ) <nl> + return ; <nl> + cancelled_ = true ; <nl> + UnlockCompositor ( ) ; <nl> + host_ - > ReleaseResize ( ) ; <nl> + } <nl> + <nl> + private : <nl> + OffScreenRenderWidgetHostView * host_ ; <nl> + scoped_refptr < ui : : CompositorLock > compositor_lock_ ; <nl> + bool cancelled_ ; <nl> + base : : WeakPtrFactory < AtomResizeLock > weak_ptr_factory_ ; <nl> + <nl> + DISALLOW_COPY_AND_ASSIGN ( AtomResizeLock ) ; <nl> + } ; <nl> + <nl> + # endif / / ! defined ( OS_MACOSX ) <nl> + <nl> } / / namespace <nl> <nl> class AtomCopyFrameGenerator { <nl> OffScreenRenderWidgetHostView : : OffScreenRenderWidgetHostView ( <nl> bool transparent , <nl> const OnPaintCallback & callback , <nl> content : : RenderWidgetHost * host , <nl> - bool is_guest_view_hack , <nl> + OffScreenRenderWidgetHostView * parent_host_view , <nl> NativeWindow * native_window ) <nl> : render_widget_host_ ( content : : RenderWidgetHostImpl : : From ( host ) ) , <nl> + parent_host_view_ ( parent_host_view ) , <nl> + popup_host_view_ ( nullptr ) , <nl> + child_host_view_ ( nullptr ) , <nl> native_window_ ( native_window ) , <nl> software_output_device_ ( nullptr ) , <nl> transparent_ ( transparent ) , <nl> callback_ ( callback ) , <nl> + parent_callback_ ( nullptr ) , <nl> frame_rate_ ( 60 ) , <nl> frame_rate_threshold_ms_ ( 0 ) , <nl> last_time_ ( base : : Time : : Now ( ) ) , <nl> scale_factor_ ( kDefaultScaleFactor ) , <nl> + painting_ ( true ) , <nl> is_showing_ ( ! render_widget_host_ - > is_hidden ( ) ) , <nl> + is_destroyed_ ( false ) , <nl> + popup_position_ ( gfx : : Rect ( ) ) , <nl> + hold_resize_ ( false ) , <nl> + pending_resize_ ( false ) , <nl> size_ ( native_window - > GetSize ( ) ) , <nl> - painting_ ( true ) , <nl> weak_ptr_factory_ ( this ) { <nl> DCHECK ( render_widget_host_ ) ; <nl> - render_widget_host_ - > SetView ( this ) ; <nl> - <nl> # if ! defined ( OS_MACOSX ) <nl> delegated_frame_host_ = base : : MakeUnique < content : : DelegatedFrameHost > ( <nl> AllocateFrameSinkId ( is_guest_view_hack ) , this ) ; <nl> OffScreenRenderWidgetHostView : : OffScreenRenderWidgetHostView ( <nl> native_window_ - > AddObserver ( this ) ; <nl> <nl> ResizeRootLayer ( ) ; <nl> + render_widget_host_ - > SetView ( this ) ; <nl> + InstallTransparency ( ) ; <nl> } <nl> <nl> OffScreenRenderWidgetHostView : : ~ OffScreenRenderWidgetHostView ( ) { <nl> OffScreenRenderWidgetHostView : : ~ OffScreenRenderWidgetHostView ( ) { <nl> delegated_frame_host_ - > ResetCompositor ( ) ; <nl> # endif <nl> <nl> + if ( copy_frame_generator_ . get ( ) ) <nl> + copy_frame_generator_ . reset ( NULL ) ; <nl> + <nl> # if defined ( OS_MACOSX ) <nl> DestroyPlatformWidget ( ) ; <nl> + # else <nl> + delegated_frame_host_ . reset ( NULL ) ; <nl> + compositor_ . reset ( NULL ) ; <nl> + root_layer_ . reset ( NULL ) ; <nl> # endif <nl> } <nl> <nl> bool OffScreenRenderWidgetHostView : : OnMessageReceived ( <nl> } <nl> <nl> void OffScreenRenderWidgetHostView : : InitAsChild ( gfx : : NativeView ) { <nl> + DCHECK ( parent_host_view_ ) ; <nl> + <nl> + if ( parent_host_view_ - > child_host_view_ ) { <nl> + parent_host_view_ - > child_host_view_ - > CancelWidget ( ) ; <nl> + } <nl> + <nl> + parent_host_view_ - > set_child_host_view ( this ) ; <nl> + parent_host_view_ - > Hide ( ) ; <nl> + <nl> + ResizeRootLayer ( ) ; <nl> + Show ( ) ; <nl> } <nl> <nl> content : : RenderWidgetHost * OffScreenRenderWidgetHostView : : GetRenderWidgetHost ( ) <nl> content : : RenderWidgetHost * OffScreenRenderWidgetHostView : : GetRenderWidgetHost ( ) <nl> <nl> void OffScreenRenderWidgetHostView : : SetSize ( const gfx : : Size & size ) { <nl> size_ = size ; <nl> - <nl> - ResizeRootLayer ( ) ; <nl> - if ( render_widget_host_ ) <nl> - render_widget_host_ - > WasResized ( ) ; <nl> - GetDelegatedFrameHost ( ) - > WasResized ( ) ; <nl> + WasResized ( ) ; <nl> } <nl> <nl> void OffScreenRenderWidgetHostView : : SetBounds ( const gfx : : Rect & new_bounds ) { <nl> + SetSize ( new_bounds . size ( ) ) ; <nl> } <nl> <nl> gfx : : Vector2dF OffScreenRenderWidgetHostView : : GetLastScrollOffset ( ) const { <nl> bool OffScreenRenderWidgetHostView : : IsShowing ( ) { <nl> } <nl> <nl> gfx : : Rect OffScreenRenderWidgetHostView : : GetViewBounds ( ) const { <nl> + if ( IsPopupWidget ( ) ) <nl> + return popup_position_ ; <nl> + <nl> return gfx : : Rect ( size_ ) ; <nl> } <nl> <nl> void OffScreenRenderWidgetHostView : : OnSwapCompositorFrame ( <nl> <nl> if ( ! frame . render_pass_list . empty ( ) ) { <nl> if ( software_output_device_ ) { <nl> - if ( ! begin_frame_timer_ . get ( ) ) { <nl> + if ( ! begin_frame_timer_ . get ( ) | | IsPopupWidget ( ) ) { <nl> software_output_device_ - > SetActive ( painting_ ) ; <nl> } <nl> <nl> void OffScreenRenderWidgetHostView : : ClearCompositorFrame ( ) { <nl> <nl> void OffScreenRenderWidgetHostView : : InitAsPopup ( <nl> content : : RenderWidgetHostView * parent_host_view , const gfx : : Rect & pos ) { <nl> + DCHECK_EQ ( parent_host_view_ , parent_host_view ) ; <nl> + <nl> + if ( parent_host_view_ - > popup_host_view_ ) { <nl> + parent_host_view_ - > popup_host_view_ - > CancelWidget ( ) ; <nl> + } <nl> + <nl> + parent_host_view_ - > set_popup_host_view ( this ) ; <nl> + parent_host_view_ - > popup_bitmap_ . reset ( new SkBitmap ) ; <nl> + parent_callback_ = base : : Bind ( & OffScreenRenderWidgetHostView : : OnPopupPaint , <nl> + parent_host_view_ - > weak_ptr_factory_ . GetWeakPtr ( ) ) ; <nl> + <nl> + popup_position_ = pos ; <nl> + <nl> + ResizeRootLayer ( ) ; <nl> + Show ( ) ; <nl> } <nl> <nl> void OffScreenRenderWidgetHostView : : InitAsFullscreen ( <nl> - content : : RenderWidgetHostView * ) { <nl> + content : : RenderWidgetHostView * ) { <nl> } <nl> <nl> void OffScreenRenderWidgetHostView : : UpdateCursor ( const content : : WebCursor & ) { <nl> void OffScreenRenderWidgetHostView : : RenderProcessGone ( base : : TerminationStatus , <nl> } <nl> <nl> void OffScreenRenderWidgetHostView : : Destroy ( ) { <nl> + if ( ! is_destroyed_ ) { <nl> + is_destroyed_ = true ; <nl> + <nl> + if ( parent_host_view_ ! = NULL ) { <nl> + CancelWidget ( ) ; <nl> + } else { <nl> + if ( popup_host_view_ ) <nl> + popup_host_view_ - > CancelWidget ( ) ; <nl> + popup_bitmap_ . reset ( ) ; <nl> + if ( child_host_view_ ) <nl> + child_host_view_ - > CancelWidget ( ) ; <nl> + for ( auto guest_host_view : guest_host_views_ ) <nl> + guest_host_view - > CancelWidget ( ) ; <nl> + Hide ( ) ; <nl> + } <nl> + } <nl> + <nl> delete this ; <nl> } <nl> <nl> void OffScreenRenderWidgetHostView : : EndFrameSubscription ( ) { <nl> GetDelegatedFrameHost ( ) - > EndFrameSubscription ( ) ; <nl> } <nl> <nl> + void OffScreenRenderWidgetHostView : : InitAsGuest ( <nl> + content : : RenderWidgetHostView * parent_host_view , <nl> + content : : RenderWidgetHostViewGuest * guest_view ) { <nl> + parent_host_view_ - > AddGuestHostView ( this ) ; <nl> + parent_host_view_ - > RegisterGuestViewFrameSwappedCallback ( guest_view ) ; <nl> + } <nl> + <nl> bool OffScreenRenderWidgetHostView : : HasAcceleratedSurface ( const gfx : : Size & ) { <nl> return false ; <nl> } <nl> void OffScreenRenderWidgetHostView : : ImeCompositionRangeChanged ( <nl> } <nl> <nl> gfx : : Size OffScreenRenderWidgetHostView : : GetPhysicalBackingSize ( ) const { <nl> - return size_ ; <nl> + return gfx : : ConvertSizeToPixel ( scale_factor_ , GetRequestedRendererSize ( ) ) ; <nl> } <nl> <nl> gfx : : Size OffScreenRenderWidgetHostView : : GetRequestedRendererSize ( ) const { <nl> - return size_ ; <nl> + return GetDelegatedFrameHost ( ) - > GetRequestedRendererSize ( ) ; <nl> } <nl> <nl> # if ! defined ( OS_MACOSX ) <nl> bool OffScreenRenderWidgetHostView : : DelegatedFrameHostIsVisible ( ) const { <nl> <nl> SkColor OffScreenRenderWidgetHostView : : DelegatedFrameHostGetGutterColor ( <nl> SkColor color ) const { <nl> + if ( render_widget_host_ - > delegate ( ) & & <nl> + render_widget_host_ - > delegate ( ) - > IsFullscreenForCurrentTab ( ) ) { <nl> + return SK_ColorBLACK ; <nl> + } <nl> return color ; <nl> } <nl> <nl> gfx : : Size OffScreenRenderWidgetHostView : : DelegatedFrameHostDesiredSizeInDIP ( ) <nl> const { <nl> - return size_ ; <nl> + return GetRootLayer ( ) - > bounds ( ) . size ( ) ; <nl> } <nl> <nl> bool OffScreenRenderWidgetHostView : : DelegatedFrameCanCreateResizeLock ( ) const { <nl> - return false ; <nl> + return ! render_widget_host_ - > auto_resize_enabled ( ) ; <nl> } <nl> <nl> std : : unique_ptr < content : : ResizeLock > <nl> OffScreenRenderWidgetHostView : : DelegatedFrameHostCreateResizeLock ( <nl> bool defer_compositor_lock ) { <nl> - return nullptr ; <nl> + return std : : unique_ptr < content : : ResizeLock > ( new AtomResizeLock ( <nl> + this , <nl> + DelegatedFrameHostDesiredSizeInDIP ( ) , <nl> + defer_compositor_lock ) ) ; <nl> } <nl> <nl> void OffScreenRenderWidgetHostView : : DelegatedFrameHostResizeLockWasReleased ( ) { <nl> bool OffScreenRenderWidgetHostView : : TransformPointToCoordSpaceForView ( <nl> point , target_view , transformed_point ) ; <nl> } <nl> <nl> + void OffScreenRenderWidgetHostView : : CancelWidget ( ) { <nl> + if ( render_widget_host_ ) <nl> + render_widget_host_ - > LostCapture ( ) ; <nl> + Hide ( ) ; <nl> + <nl> + if ( parent_host_view_ ) { <nl> + if ( parent_host_view_ - > popup_host_view_ = = this ) { <nl> + parent_host_view_ - > set_popup_host_view ( NULL ) ; <nl> + parent_host_view_ - > popup_bitmap_ . reset ( ) ; <nl> + } else if ( parent_host_view_ - > child_host_view_ = = this ) { <nl> + parent_host_view_ - > set_child_host_view ( NULL ) ; <nl> + parent_host_view_ - > Show ( ) ; <nl> + } else { <nl> + parent_host_view_ - > RemoveGuestHostView ( this ) ; <nl> + } <nl> + parent_host_view_ = NULL ; <nl> + } <nl> + <nl> + if ( render_widget_host_ & & ! is_destroyed_ ) { <nl> + is_destroyed_ = true ; <nl> + / / Results in a call to Destroy ( ) . <nl> + render_widget_host_ - > ShutdownAndDestroyWidget ( true ) ; <nl> + } <nl> + } <nl> + <nl> + void OffScreenRenderWidgetHostView : : AddGuestHostView ( <nl> + OffScreenRenderWidgetHostView * guest_host ) { <nl> + guest_host_views_ . insert ( guest_host ) ; <nl> + } <nl> + <nl> + void OffScreenRenderWidgetHostView : : RemoveGuestHostView ( <nl> + OffScreenRenderWidgetHostView * guest_host ) { <nl> + guest_host_views_ . erase ( guest_host ) ; <nl> + } <nl> + <nl> + void OffScreenRenderWidgetHostView : : RegisterGuestViewFrameSwappedCallback ( <nl> + content : : RenderWidgetHostViewGuest * guest_host_view ) { <nl> + guest_host_view - > RegisterFrameSwappedCallback ( base : : MakeUnique < base : : Closure > ( <nl> + base : : Bind ( & OffScreenRenderWidgetHostView : : OnGuestViewFrameSwapped , <nl> + weak_ptr_factory_ . GetWeakPtr ( ) , <nl> + base : : Unretained ( guest_host_view ) ) ) ) ; <nl> + } <nl> + <nl> + void OffScreenRenderWidgetHostView : : OnGuestViewFrameSwapped ( <nl> + content : : RenderWidgetHostViewGuest * guest_host_view ) { <nl> + InvalidateBounds ( <nl> + gfx : : ConvertRectToPixel ( scale_factor_ , guest_host_view - > GetViewBounds ( ) ) ) ; <nl> + <nl> + RegisterGuestViewFrameSwappedCallback ( guest_host_view ) ; <nl> + } <nl> + <nl> std : : unique_ptr < cc : : SoftwareOutputDevice > <nl> OffScreenRenderWidgetHostView : : CreateSoftwareOutputDevice ( <nl> ui : : Compositor * compositor ) { <nl> bool OffScreenRenderWidgetHostView : : InstallTransparency ( ) { <nl> } <nl> <nl> bool OffScreenRenderWidgetHostView : : IsAutoResizeEnabled ( ) const { <nl> - return false ; <nl> + return render_widget_host_ - > auto_resize_enabled ( ) ; <nl> } <nl> <nl> void OffScreenRenderWidgetHostView : : SetNeedsBeginFrames ( <nl> void OffScreenRenderWidgetHostView : : SetNeedsBeginFrames ( <nl> } <nl> } <nl> <nl> + void CopyBitmapTo ( <nl> + const SkBitmap & destination , <nl> + const SkBitmap & source , <nl> + const gfx : : Rect & pos ) { <nl> + SkAutoLockPixels source_pixels_lock ( source ) ; <nl> + SkAutoLockPixels destination_pixels_lock ( destination ) ; <nl> + <nl> + char * src = static_cast < char * > ( source . getPixels ( ) ) ; <nl> + char * dest = static_cast < char * > ( destination . getPixels ( ) ) ; <nl> + int pixelsize = source . bytesPerPixel ( ) ; <nl> + <nl> + if ( pos . x ( ) + pos . width ( ) < = destination . width ( ) & & <nl> + pos . y ( ) + pos . height ( ) < = destination . height ( ) ) { <nl> + for ( int i = 0 ; i < pos . height ( ) ; i + + ) { <nl> + memcpy ( dest + ( ( pos . y ( ) + i ) * destination . width ( ) + pos . x ( ) ) * pixelsize , <nl> + src + ( i * source . width ( ) ) * pixelsize , <nl> + source . width ( ) * pixelsize ) ; <nl> + } <nl> + } <nl> + <nl> + destination . notifyPixelsChanged ( ) ; <nl> + } <nl> + <nl> void OffScreenRenderWidgetHostView : : OnPaint ( <nl> const gfx : : Rect & damage_rect , const SkBitmap & bitmap ) { <nl> TRACE_EVENT0 ( " electron " , " OffScreenRenderWidgetHostView : : OnPaint " ) ; <nl> - callback_ . Run ( damage_rect , bitmap ) ; <nl> + <nl> + HoldResize ( ) ; <nl> + <nl> + if ( parent_callback_ ) <nl> + parent_callback_ . Run ( damage_rect , bitmap ) ; <nl> + else if ( popup_host_view_ & & popup_bitmap_ . get ( ) ) { <nl> + gfx : : Rect pos = popup_host_view_ - > popup_position_ ; <nl> + SkBitmap copy = SkBitmapOperations : : CreateTiledBitmap ( bitmap , <nl> + pos . x ( ) , pos . y ( ) , pos . width ( ) , pos . height ( ) ) ; <nl> + <nl> + CopyBitmapTo ( bitmap , * popup_bitmap_ , pos ) ; <nl> + callback_ . Run ( damage_rect , bitmap ) ; <nl> + CopyBitmapTo ( bitmap , copy , pos ) ; <nl> + } else { <nl> + callback_ . Run ( damage_rect , bitmap ) ; <nl> + } <nl> + <nl> + ReleaseResize ( ) ; <nl> + } <nl> + <nl> + void OffScreenRenderWidgetHostView : : OnPopupPaint ( <nl> + const gfx : : Rect & damage_rect , const SkBitmap & bitmap ) { <nl> + if ( popup_host_view_ & & popup_bitmap_ . get ( ) ) <nl> + bitmap . deepCopyTo ( popup_bitmap_ . get ( ) ) ; <nl> + } <nl> + <nl> + void OffScreenRenderWidgetHostView : : HoldResize ( ) { <nl> + if ( ! hold_resize_ ) <nl> + hold_resize_ = true ; <nl> + } <nl> + <nl> + void OffScreenRenderWidgetHostView : : ReleaseResize ( ) { <nl> + if ( ! hold_resize_ ) <nl> + return ; <nl> + <nl> + hold_resize_ = false ; <nl> + if ( pending_resize_ ) { <nl> + pending_resize_ = false ; <nl> + content : : BrowserThread : : PostTask ( content : : BrowserThread : : UI , FROM_HERE , <nl> + base : : Bind ( & OffScreenRenderWidgetHostView : : WasResized , <nl> + weak_ptr_factory_ . GetWeakPtr ( ) ) ) ; <nl> + } <nl> + } <nl> + <nl> + void OffScreenRenderWidgetHostView : : WasResized ( ) { <nl> + if ( hold_resize_ ) { <nl> + if ( ! pending_resize_ ) <nl> + pending_resize_ = true ; <nl> + return ; <nl> + } <nl> + <nl> + ResizeRootLayer ( ) ; <nl> + if ( render_widget_host_ ) <nl> + render_widget_host_ - > WasResized ( ) ; <nl> + GetDelegatedFrameHost ( ) - > WasResized ( ) ; <nl> + } <nl> + <nl> + void OffScreenRenderWidgetHostView : : ProcessKeyboardEvent ( <nl> + const content : : NativeWebKeyboardEvent & event ) { <nl> + if ( ! render_widget_host_ ) <nl> + return ; <nl> + render_widget_host_ - > ForwardKeyboardEvent ( event ) ; <nl> + } <nl> + <nl> + void OffScreenRenderWidgetHostView : : ProcessMouseEvent ( <nl> + const blink : : WebMouseEvent & event , <nl> + const ui : : LatencyInfo & latency ) { <nl> + if ( ! IsPopupWidget ( ) ) { <nl> + if ( popup_host_view_ & & <nl> + popup_host_view_ - > popup_position_ . Contains ( event . x , event . y ) ) { <nl> + blink : : WebMouseEvent popup_event ( event ) ; <nl> + popup_event . x - = popup_host_view_ - > popup_position_ . x ( ) ; <nl> + popup_event . y - = popup_host_view_ - > popup_position_ . y ( ) ; <nl> + popup_event . windowX = popup_event . x ; <nl> + popup_event . windowY = popup_event . y ; <nl> + <nl> + popup_host_view_ - > ProcessMouseEvent ( popup_event , latency ) ; <nl> + return ; <nl> + } <nl> + } <nl> + if ( ! render_widget_host_ ) <nl> + return ; <nl> + render_widget_host_ - > ForwardMouseEvent ( event ) ; <nl> + } <nl> + <nl> + void OffScreenRenderWidgetHostView : : ProcessMouseWheelEvent ( <nl> + const blink : : WebMouseWheelEvent & event , <nl> + const ui : : LatencyInfo & latency ) { <nl> + if ( ! IsPopupWidget ( ) ) { <nl> + if ( popup_host_view_ ) { <nl> + if ( popup_host_view_ - > popup_position_ . Contains ( event . x , event . y ) ) { <nl> + blink : : WebMouseWheelEvent popup_event ( event ) ; <nl> + popup_event . x - = popup_host_view_ - > popup_position_ . x ( ) ; <nl> + popup_event . y - = popup_host_view_ - > popup_position_ . y ( ) ; <nl> + popup_event . windowX = popup_event . x ; <nl> + popup_event . windowY = popup_event . y ; <nl> + popup_host_view_ - > ProcessMouseWheelEvent ( popup_event , latency ) ; <nl> + return ; <nl> + } else { <nl> + / / Scrolling outside of the popup widget so destroy it . <nl> + / / Execute asynchronously to avoid deleting the widget from inside some <nl> + / / other callback . <nl> + content : : BrowserThread : : PostTask ( content : : BrowserThread : : UI , FROM_HERE , <nl> + base : : Bind ( & OffScreenRenderWidgetHostView : : CancelWidget , <nl> + popup_host_view_ - > weak_ptr_factory_ . GetWeakPtr ( ) ) ) ; <nl> + } <nl> + } <nl> + } <nl> + if ( ! render_widget_host_ ) <nl> + return ; <nl> + render_widget_host_ - > ForwardWheelEvent ( event ) ; <nl> } <nl> <nl> void OffScreenRenderWidgetHostView : : SetPainting ( bool painting ) { <nl> bool OffScreenRenderWidgetHostView : : IsPainting ( ) const { <nl> } <nl> <nl> void OffScreenRenderWidgetHostView : : SetFrameRate ( int frame_rate ) { <nl> - if ( frame_rate < = 0 ) <nl> - frame_rate = 1 ; <nl> - if ( frame_rate > 60 ) <nl> - frame_rate = 60 ; <nl> + if ( parent_host_view_ ) { <nl> + if ( parent_host_view_ - > GetFrameRate ( ) = = GetFrameRate ( ) ) <nl> + return ; <nl> <nl> - frame_rate_ = frame_rate ; <nl> + frame_rate_ = parent_host_view_ - > GetFrameRate ( ) ; <nl> + } else { <nl> + if ( frame_rate < = 0 ) <nl> + frame_rate = 1 ; <nl> + if ( frame_rate > 60 ) <nl> + frame_rate = 60 ; <nl> + <nl> + frame_rate_ = frame_rate ; <nl> + } <nl> + <nl> + for ( auto guest_host_view : guest_host_views_ ) <nl> + guest_host_view - > SetFrameRate ( frame_rate ) ; <nl> <nl> SetupFrameRate ( true ) ; <nl> } <nl> void OffScreenRenderWidgetHostView : : SetupFrameRate ( bool force ) { <nl> } <nl> <nl> void OffScreenRenderWidgetHostView : : Invalidate ( ) { <nl> - const gfx : : Rect & bounds_in_pixels = GetViewBounds ( ) ; <nl> + InvalidateBounds ( GetViewBounds ( ) ) ; <nl> + } <nl> <nl> + void OffScreenRenderWidgetHostView : : InvalidateBounds ( const gfx : : Rect & bounds ) { <nl> if ( software_output_device_ ) { <nl> software_output_device_ - > OnPaint ( bounds_in_pixels ) ; <nl> } else if ( copy_frame_generator_ ) { <nl> void OffScreenRenderWidgetHostView : : ResizeRootLayer ( ) { <nl> const float orgScaleFactor = scale_factor_ ; <nl> const bool scaleFactorDidChange = ( orgScaleFactor ! = scale_factor_ ) ; <nl> <nl> - gfx : : Size size = GetViewBounds ( ) . size ( ) ; <nl> + gfx : : Size size ; <nl> + if ( ! IsPopupWidget ( ) ) <nl> + size = GetViewBounds ( ) . size ( ) ; <nl> + else <nl> + size = popup_position_ . size ( ) ; <nl> <nl> if ( ! scaleFactorDidChange & & size = = GetRootLayer ( ) - > bounds ( ) . size ( ) ) <nl> return ; <nl> mmm a / atom / browser / osr / osr_render_widget_host_view . h <nl> ppp b / atom / browser / osr / osr_render_widget_host_view . h <nl> <nl> # include " base / time / time . h " <nl> # include " cc / output / compositor_frame . h " <nl> # include " cc / scheduler / begin_frame_source . h " <nl> + # include " content / browser / frame_host / render_widget_host_view_guest . h " <nl> # include " content / browser / renderer_host / delegated_frame_host . h " <nl> # include " content / browser / renderer_host / render_widget_host_impl . h " <nl> # include " content / browser / renderer_host / render_widget_host_view_base . h " <nl> # include " content / browser / renderer_host / resize_lock . h " <nl> + # include " third_party / skia / include / core / SkBitmap . h " <nl> # include " third_party / WebKit / public / platform / WebVector . h " <nl> # include " ui / base / ime / text_input_client . h " <nl> # include " ui / compositor / compositor . h " <nl> class OffScreenRenderWidgetHostView <nl> OffScreenRenderWidgetHostView ( bool transparent , <nl> const OnPaintCallback & callback , <nl> content : : RenderWidgetHost * render_widget_host , <nl> - bool is_guest_view_hack , <nl> + OffScreenRenderWidgetHostView * parent_host_view , <nl> NativeWindow * native_window ) ; <nl> ~ OffScreenRenderWidgetHostView ( ) override ; <nl> <nl> class OffScreenRenderWidgetHostView <nl> void BeginFrameSubscription ( <nl> std : : unique_ptr < content : : RenderWidgetHostViewFrameSubscriber > ) override ; <nl> void EndFrameSubscription ( ) override ; <nl> + void InitAsGuest ( <nl> + content : : RenderWidgetHostView * , <nl> + content : : RenderWidgetHostViewGuest * ) override ; <nl> bool HasAcceleratedSurface ( const gfx : : Size & ) override ; <nl> gfx : : Rect GetBoundsInRootWindow ( void ) override ; <nl> void ImeCompositionRangeChanged ( <nl> class OffScreenRenderWidgetHostView <nl> void DestroyPlatformWidget ( ) ; <nl> # endif <nl> <nl> + void CancelWidget ( ) ; <nl> + void AddGuestHostView ( OffScreenRenderWidgetHostView * guest_host ) ; <nl> + void RemoveGuestHostView ( OffScreenRenderWidgetHostView * guest_host ) ; <nl> + <nl> + void RegisterGuestViewFrameSwappedCallback ( <nl> + content : : RenderWidgetHostViewGuest * guest_host_view ) ; <nl> + void OnGuestViewFrameSwapped ( <nl> + content : : RenderWidgetHostViewGuest * guest_host_view ) ; <nl> + <nl> void OnPaint ( const gfx : : Rect & damage_rect , const SkBitmap & bitmap ) ; <nl> + void OnPopupPaint ( const gfx : : Rect & damage_rect , const SkBitmap & bitmap ) ; <nl> + <nl> + bool IsPopupWidget ( ) const { <nl> + return popup_type_ ! = blink : : WebPopupTypeNone ; <nl> + } <nl> + <nl> + void HoldResize ( ) ; <nl> + void ReleaseResize ( ) ; <nl> + void WasResized ( ) ; <nl> + <nl> + void ProcessKeyboardEvent ( <nl> + const content : : NativeWebKeyboardEvent & event ) override ; <nl> + void ProcessMouseEvent ( const blink : : WebMouseEvent & event , <nl> + const ui : : LatencyInfo & latency ) override ; <nl> + void ProcessMouseWheelEvent ( const blink : : WebMouseWheelEvent & event , <nl> + const ui : : LatencyInfo & latency ) override ; <nl> <nl> void SetPainting ( bool painting ) ; <nl> bool IsPainting ( ) const ; <nl> class OffScreenRenderWidgetHostView <nl> content : : DelegatedFrameHost * GetDelegatedFrameHost ( ) const ; <nl> <nl> void Invalidate ( ) ; <nl> + void InvalidateBounds ( const gfx : : Rect & ) ; <nl> <nl> content : : RenderWidgetHostImpl * render_widget_host ( ) const <nl> { return render_widget_host_ ; } <nl> class OffScreenRenderWidgetHostView <nl> gfx : : Size size ( ) const { return size_ ; } <nl> float scale_factor ( ) const { return scale_factor_ ; } <nl> <nl> + void set_popup_host_view ( OffScreenRenderWidgetHostView * popup_view ) { <nl> + popup_host_view_ = popup_view ; <nl> + } <nl> + <nl> + void set_child_host_view ( OffScreenRenderWidgetHostView * child_view ) { <nl> + child_host_view_ = child_view ; <nl> + } <nl> + <nl> private : <nl> void SetupFrameRate ( bool force ) ; <nl> void ResizeRootLayer ( ) ; <nl> class OffScreenRenderWidgetHostView <nl> <nl> / / Weak ptrs . <nl> content : : RenderWidgetHostImpl * render_widget_host_ ; <nl> + <nl> + OffScreenRenderWidgetHostView * parent_host_view_ ; <nl> + OffScreenRenderWidgetHostView * popup_host_view_ ; <nl> + std : : unique_ptr < SkBitmap > popup_bitmap_ ; <nl> + OffScreenRenderWidgetHostView * child_host_view_ ; <nl> + std : : set < OffScreenRenderWidgetHostView * > guest_host_views_ ; <nl> + <nl> NativeWindow * native_window_ ; <nl> OffScreenOutputDevice * software_output_device_ ; <nl> <nl> const bool transparent_ ; <nl> OnPaintCallback callback_ ; <nl> + OnPaintCallback parent_callback_ ; <nl> <nl> int frame_rate_ ; <nl> int frame_rate_threshold_ms_ ; <nl> class OffScreenRenderWidgetHostView <nl> base : : Time last_time_ ; <nl> <nl> float scale_factor_ ; <nl> - bool is_showing_ ; <nl> gfx : : Vector2dF last_scroll_offset_ ; <nl> gfx : : Size size_ ; <nl> bool painting_ ; <nl> + <nl> + bool is_showing_ ; <nl> + bool is_destroyed_ ; <nl> + gfx : : Rect popup_position_ ; <nl> + <nl> + bool hold_resize_ ; <nl> + bool pending_resize_ ; <nl> <nl> std : : unique_ptr < ui : : Layer > root_layer_ ; <nl> std : : unique_ptr < ui : : Compositor > compositor_ ; <nl> mmm a / atom / browser / osr / osr_web_contents_view . cc <nl> ppp b / atom / browser / osr / osr_web_contents_view . cc <nl> <nl> <nl> # include " atom / browser / osr / osr_web_contents_view . h " <nl> <nl> + # include " content / public / browser / render_view_host . h " <nl> # include " third_party / WebKit / public / platform / WebScreenInfo . h " <nl> + # include " ui / display / screen . h " <nl> <nl> namespace atom { <nl> <nl> void OffScreenWebContentsView : : SetWebContents ( <nl> <nl> # if ! defined ( OS_MACOSX ) <nl> gfx : : NativeView OffScreenWebContentsView : : GetNativeView ( ) const { <nl> - return gfx : : NativeView ( ) ; <nl> + if ( ! web_contents_ ) return gfx : : NativeView ( ) ; <nl> + <nl> + auto relay = NativeWindowRelay : : FromWebContents ( web_contents_ ) ; <nl> + if ( ! relay ) return gfx : : NativeView ( ) ; <nl> + return relay - > window - > GetNativeView ( ) ; <nl> } <nl> <nl> gfx : : NativeView OffScreenWebContentsView : : GetContentNativeView ( ) const { <nl> - return gfx : : NativeView ( ) ; <nl> + if ( ! web_contents_ ) return gfx : : NativeView ( ) ; <nl> + <nl> + auto relay = NativeWindowRelay : : FromWebContents ( web_contents_ ) ; <nl> + if ( ! relay ) return gfx : : NativeView ( ) ; <nl> + return relay - > window - > GetNativeView ( ) ; <nl> } <nl> <nl> gfx : : NativeWindow OffScreenWebContentsView : : GetTopLevelNativeWindow ( ) const { <nl> - return gfx : : NativeWindow ( ) ; <nl> + if ( ! web_contents_ ) return gfx : : NativeWindow ( ) ; <nl> + <nl> + auto relay = NativeWindowRelay : : FromWebContents ( web_contents_ ) ; <nl> + if ( ! relay ) return gfx : : NativeWindow ( ) ; <nl> + return relay - > window - > GetNativeWindow ( ) ; <nl> } <nl> # endif <nl> <nl> content : : DropData * OffScreenWebContentsView : : GetDropData ( ) const { <nl> } <nl> <nl> gfx : : Rect OffScreenWebContentsView : : GetViewBounds ( ) const { <nl> - return view_ ? view_ - > GetViewBounds ( ) : gfx : : Rect ( ) ; <nl> + return GetView ( ) ? GetView ( ) - > GetViewBounds ( ) : gfx : : Rect ( ) ; <nl> } <nl> <nl> void OffScreenWebContentsView : : CreateView ( const gfx : : Size & initial_size , <nl> void OffScreenWebContentsView : : CreateView ( const gfx : : Size & initial_size , <nl> <nl> content : : RenderWidgetHostViewBase * <nl> OffScreenWebContentsView : : CreateViewForWidget ( <nl> - content : : RenderWidgetHost * render_widget_host , bool is_guest_view_hack ) { <nl> + content : : RenderWidgetHost * render_widget_host , bool is_guest_view_hack ) { <nl> + if ( render_widget_host - > GetView ( ) ) { <nl> + return static_cast < content : : RenderWidgetHostViewBase * > ( <nl> + render_widget_host - > GetView ( ) ) ; <nl> + } <nl> + <nl> auto relay = NativeWindowRelay : : FromWebContents ( web_contents_ ) ; <nl> - view_ = new OffScreenRenderWidgetHostView ( <nl> - transparent_ , callback_ , render_widget_host , <nl> - is_guest_view_hack , relay - > window . get ( ) ) ; <nl> - return view_ ; <nl> + return new OffScreenRenderWidgetHostView ( <nl> + transparent_ , <nl> + callback_ , <nl> + render_widget_host , <nl> + nullptr , <nl> + relay - > window . get ( ) ) ; <nl> + } <nl> + <nl> + content : : RenderWidgetHostViewBase * <nl> + OffScreenWebContentsView : : CreateViewForWidget ( <nl> + content : : RenderWidgetHost * render_widget_host , <nl> + content : : RenderWidgetHost * embedder_render_widget_host ) { <nl> + if ( render_widget_host - > GetView ( ) ) { <nl> + return static_cast < content : : RenderWidgetHostViewBase * > ( <nl> + render_widget_host - > GetView ( ) ) ; <nl> + } <nl> + <nl> + OffScreenRenderWidgetHostView * embedder_host_view = nullptr ; <nl> + if ( embedder_render_widget_host ) { <nl> + embedder_host_view = static_cast < OffScreenRenderWidgetHostView * > ( <nl> + embedder_render_widget_host - > GetView ( ) ) ; <nl> + } <nl> + <nl> + auto relay = NativeWindowRelay : : FromWebContents ( web_contents_ ) ; <nl> + return new OffScreenRenderWidgetHostView ( <nl> + transparent_ , <nl> + callback_ , <nl> + render_widget_host , <nl> + embedder_host_view , <nl> + relay - > window . get ( ) ) ; <nl> } <nl> <nl> content : : RenderWidgetHostViewBase * <nl> OffScreenWebContentsView : : CreateViewForPopupWidget ( <nl> content : : RenderWidgetHost * render_widget_host ) { <nl> auto relay = NativeWindowRelay : : FromWebContents ( web_contents_ ) ; <nl> - view_ = new OffScreenRenderWidgetHostView ( <nl> - transparent_ , callback_ , render_widget_host , false , relay - > window . get ( ) ) ; <nl> - return view_ ; <nl> + return new OffScreenRenderWidgetHostView ( <nl> + transparent_ , <nl> + callback_ , <nl> + render_widget_host , <nl> + GetView ( ) , <nl> + relay - > window . get ( ) ) ; <nl> } <nl> <nl> void OffScreenWebContentsView : : SetPageTitle ( const base : : string16 & title ) { <nl> void OffScreenWebContentsView : : SetPageTitle ( const base : : string16 & title ) { <nl> <nl> void OffScreenWebContentsView : : RenderViewCreated ( <nl> content : : RenderViewHost * host ) { <nl> - if ( view_ ) <nl> - view_ - > InstallTransparency ( ) ; <nl> + if ( GetView ( ) ) <nl> + GetView ( ) - > InstallTransparency ( ) ; <nl> } <nl> <nl> void OffScreenWebContentsView : : RenderViewSwappedIn ( <nl> void OffScreenWebContentsView : : SetOverscrollControllerEnabled ( bool enabled ) { <nl> <nl> void OffScreenWebContentsView : : GetScreenInfo ( <nl> content : : ScreenInfo * screen_info ) const { <nl> - screen_info - > rect = gfx : : Rect ( view_ - > size ( ) ) ; <nl> - screen_info - > available_rect = gfx : : Rect ( view_ - > size ( ) ) ; <nl> screen_info - > depth = 24 ; <nl> screen_info - > depth_per_component = 8 ; <nl> - screen_info - > device_scale_factor = view_ - > scale_factor ( ) ; <nl> screen_info - > orientation_angle = 0 ; <nl> screen_info - > orientation_type = <nl> content : : SCREEN_ORIENTATION_VALUES_LANDSCAPE_PRIMARY ; <nl> + <nl> + if ( GetView ( ) ) { <nl> + screen_info - > rect = gfx : : Rect ( GetView ( ) - > size ( ) ) ; <nl> + screen_info - > available_rect = gfx : : Rect ( GetView ( ) - > size ( ) ) ; <nl> + screen_info - > device_scale_factor = GetView ( ) - > scale_factor ( ) ; <nl> + } else { <nl> + const display : : Display display = <nl> + display : : Screen : : GetScreen ( ) - > GetPrimaryDisplay ( ) ; <nl> + screen_info - > rect = display . bounds ( ) ; <nl> + screen_info - > available_rect = display . work_area ( ) ; <nl> + screen_info - > device_scale_factor = display . device_scale_factor ( ) ; <nl> + } <nl> } <nl> <nl> # if defined ( OS_MACOSX ) <nl> void OffScreenWebContentsView : : UpdateDragCursor ( <nl> blink : : WebDragOperation operation ) { <nl> } <nl> <nl> + OffScreenRenderWidgetHostView * OffScreenWebContentsView : : GetView ( ) const { <nl> + if ( web_contents_ ) { <nl> + return static_cast < OffScreenRenderWidgetHostView * > ( <nl> + web_contents_ - > GetRenderViewHost ( ) - > GetWidget ( ) - > GetView ( ) ) ; <nl> + } <nl> + return nullptr ; <nl> + } <nl> + <nl> } / / namespace atom <nl> mmm a / atom / browser / osr / osr_web_contents_view . h <nl> ppp b / atom / browser / osr / osr_web_contents_view . h <nl> class OffScreenWebContentsView : public content : : WebContentsView , <nl> content : : RenderWidgetHostViewBase * CreateViewForWidget ( <nl> content : : RenderWidgetHost * render_widget_host , <nl> bool is_guest_view_hack ) override ; <nl> + content : : RenderWidgetHostViewBase * CreateViewForWidget ( <nl> + content : : RenderWidgetHost * render_widget_host , <nl> + content : : RenderWidgetHost * embedder_render_widget_host ) override ; <nl> content : : RenderWidgetHostViewBase * CreateViewForPopupWidget ( <nl> content : : RenderWidgetHost * render_widget_host ) override ; <nl> void SetPageTitle ( const base : : string16 & title ) override ; <nl> class OffScreenWebContentsView : public content : : WebContentsView , <nl> void PlatformDestroy ( ) ; <nl> # endif <nl> <nl> + OffScreenRenderWidgetHostView * GetView ( ) const ; <nl> + <nl> const bool transparent_ ; <nl> OnPaintCallback callback_ ; <nl> <nl> / / Weak refs . <nl> - OffScreenRenderWidgetHostView * view_ ; <nl> content : : WebContents * web_contents_ ; <nl> <nl> # if defined ( OS_MACOSX ) <nl>
Add support for child and popup windows in OSR
electron/electron
20d2ab29ab51cafc1c8b391c19134fbb7f711779
2017-05-10T20:19:05Z
mmm a / lib / Sema / CSSolver . cpp <nl> ppp b / lib / Sema / CSSolver . cpp <nl> bool ConstraintSystem : : simplify ( bool ContinueAfterFailures ) { <nl> <nl> if ( solverState ) <nl> solverState - > retiredConstraints . push_front ( constraint ) ; <nl> - else <nl> - CG . removeConstraint ( constraint ) ; <nl> <nl> + CG . removeConstraint ( constraint ) ; <nl> break ; <nl> <nl> case SolutionKind : : Solved : <nl> mmm a / lib / Sema / ConstraintSystem . h <nl> ppp b / lib / Sema / ConstraintSystem . h <nl> class ConstraintSystem { <nl> void addNewFailingConstraint ( Constraint * constraint ) { <nl> assert ( shouldAddNewFailingConstraint ( ) ) ; <nl> failedConstraint = constraint ; <nl> + failedConstraint - > setActive ( false ) ; <nl> + <nl> + / / Record this as a newly - generated constraint . <nl> + if ( solverState ) { <nl> + solverState - > generatedConstraints . push_back ( constraint ) ; <nl> + solverState - > retiredConstraints . push_back ( constraint ) ; <nl> + } <nl> } <nl> <nl> / / / \ brief Add a newly - generated constraint that is known not to be solvable <nl> similarity index 56 % <nl> rename from validation - test / Sema / type_checker_crashers / rdar28145033 . swift <nl> rename to validation - test / Sema / type_checker_crashers_fixed / rdar28145033 . swift <nl> mmm a / validation - test / Sema / type_checker_crashers / rdar28145033 . swift <nl> ppp b / validation - test / Sema / type_checker_crashers_fixed / rdar28145033 . swift <nl> <nl> - / / RUN : not - - crash % target - swift - frontend % s - parse <nl> + / / RUN : not % target - swift - frontend % s - parse <nl> <nl> let a = [ 1 ] <nl> _ = a . index ( of : a . min ( ) ) / / a . min ( ) returns an optional <nl>
[ Constraint solver ] Remove erroneous constraints from the constraint graph .
apple/swift
33ad7a847333ed4ef93a7f2774d967d9876041fd
2016-10-28T04:35:14Z
mmm a / xbmc / addons / Addon . cpp <nl> ppp b / xbmc / addons / Addon . cpp <nl> void OnEnabled ( const std : : string & id ) <nl> / / If the addon is a special , call enabled handler <nl> AddonPtr addon ; <nl> if ( CAddonMgr : : GetInstance ( ) . GetAddon ( id , addon , ADDON_PVRDLL ) | | <nl> - CAddonMgr : : GetInstance ( ) . GetAddon ( id , addon , ADDON_ADSPDLL ) ) <nl> + CAddonMgr : : GetInstance ( ) . GetAddon ( id , addon , ADDON_ADSPDLL ) | | <nl> + CAddonMgr : : GetInstance ( ) . GetAddon ( id , addon , ADDON_PERIPHERALDLL ) ) <nl> return addon - > OnEnabled ( ) ; <nl> <nl> if ( CAddonMgr : : GetInstance ( ) . ServicesHasStarted ( ) ) <nl> void OnDisabled ( const std : : string & id ) <nl> <nl> AddonPtr addon ; <nl> if ( CAddonMgr : : GetInstance ( ) . GetAddon ( id , addon , ADDON_PVRDLL , false ) | | <nl> - CAddonMgr : : GetInstance ( ) . GetAddon ( id , addon , ADDON_ADSPDLL , false ) ) <nl> + CAddonMgr : : GetInstance ( ) . GetAddon ( id , addon , ADDON_ADSPDLL , false ) | | <nl> + CAddonMgr : : GetInstance ( ) . GetAddon ( id , addon , ADDON_PERIPHERALDLL , false ) ) <nl> return addon - > OnDisabled ( ) ; <nl> <nl> if ( CAddonMgr : : GetInstance ( ) . ServicesHasStarted ( ) ) <nl> mmm a / xbmc / peripherals / addons / PeripheralAddon . cpp <nl> ppp b / xbmc / peripherals / addons / PeripheralAddon . cpp <nl> void CPeripheralAddon : : ResetProperties ( void ) <nl> m_apiVersion = ADDON : : AddonVersion ( " 0 . 0 . 0 " ) ; <nl> } <nl> <nl> + void CPeripheralAddon : : OnDisabled ( ) <nl> + { <nl> + CAddon : : OnDisabled ( ) ; <nl> + PeripheralBusAddonPtr addonBus = std : : static_pointer_cast < CPeripheralBusAddon > ( g_peripherals . GetBusByType ( PERIPHERAL_BUS_ADDON ) ) ; <nl> + if ( addonBus ) <nl> + addonBus - > UpdateAddons ( ) ; <nl> + } <nl> + <nl> + void CPeripheralAddon : : OnEnabled ( ) <nl> + { <nl> + CAddon : : OnEnabled ( ) ; <nl> + PeripheralBusAddonPtr addonBus = std : : static_pointer_cast < CPeripheralBusAddon > ( g_peripherals . GetBusByType ( PERIPHERAL_BUS_ADDON ) ) ; <nl> + if ( addonBus ) <nl> + addonBus - > UpdateAddons ( ) ; <nl> + } <nl> + <nl> ADDON : : AddonPtr CPeripheralAddon : : GetRunningInstance ( void ) const <nl> { <nl> PeripheralBusAddonPtr addonBus = std : : static_pointer_cast < CPeripheralBusAddon > ( g_peripherals . GetBusByType ( PERIPHERAL_BUS_ADDON ) ) ; <nl> ADDON : : AddonPtr CPeripheralAddon : : GetRunningInstance ( void ) const <nl> return CAddon : : GetRunningInstance ( ) ; <nl> } <nl> <nl> + void CPeripheralAddon : : OnPostInstall ( bool update , bool modal ) <nl> + { <nl> + CAddon : : OnPostInstall ( update , modal ) ; <nl> + PeripheralBusAddonPtr addonBus = std : : static_pointer_cast < CPeripheralBusAddon > ( g_peripherals . GetBusByType ( PERIPHERAL_BUS_ADDON ) ) ; <nl> + if ( addonBus ) <nl> + addonBus - > UpdateAddons ( ) ; <nl> + } <nl> + <nl> + void CPeripheralAddon : : OnPostUnInstall ( ) <nl> + { <nl> + CAddon : : OnPostUnInstall ( ) ; <nl> + PeripheralBusAddonPtr addonBus = std : : static_pointer_cast < CPeripheralBusAddon > ( g_peripherals . GetBusByType ( PERIPHERAL_BUS_ADDON ) ) ; <nl> + if ( addonBus ) <nl> + addonBus - > UpdateAddons ( ) ; <nl> + } <nl> + <nl> ADDON_STATUS CPeripheralAddon : : CreateAddon ( void ) <nl> { <nl> ADDON_STATUS status ( ADDON_STATUS_UNKNOWN ) ; <nl> mmm a / xbmc / peripherals / addons / PeripheralAddon . h <nl> ppp b / xbmc / peripherals / addons / PeripheralAddon . h <nl> namespace PERIPHERALS <nl> virtual ~ CPeripheralAddon ( void ) ; <nl> <nl> / / implementation of IAddon <nl> + virtual void OnDisabled ( ) override ; <nl> + virtual void OnEnabled ( ) override ; <nl> virtual ADDON : : AddonPtr GetRunningInstance ( void ) const override ; <nl> + virtual void OnPostInstall ( bool update , bool modal ) override ; <nl> + virtual void OnPostUnInstall ( ) override ; <nl> <nl> / * ! <nl> * @ brief Initialise the instance of this add - on <nl> mmm a / xbmc / peripherals / bus / virtual / PeripheralBusAddon . cpp <nl> ppp b / xbmc / peripherals / bus / virtual / PeripheralBusAddon . cpp <nl> void CPeripheralBusAddon : : UpdateAddons ( void ) <nl> std : : set < std : : string > added ; <nl> std : : set < std : : string > removed ; <nl> <nl> + CSingleLock lock ( m_critSection ) ; <nl> + <nl> / / Get current add - ons <nl> - PeripheralAddonVector currentAddons ; <nl> - PeripheralAddonVector failedAddons ; <nl> - { <nl> - CSingleLock lock ( m_critSection ) ; <nl> - currentAddons = m_addons ; <nl> - failedAddons = m_failedAddons ; <nl> - } <nl> - std : : transform ( currentAddons . begin ( ) , currentAddons . end ( ) , std : : inserter ( currentIds , currentIds . end ( ) ) , GetPeripheralAddonID ) ; <nl> - std : : transform ( failedAddons . begin ( ) , failedAddons . end ( ) , std : : inserter ( currentIds , currentIds . end ( ) ) , GetPeripheralAddonID ) ; <nl> + std : : transform ( m_addons . begin ( ) , m_addons . end ( ) , std : : inserter ( currentIds , currentIds . end ( ) ) , GetPeripheralAddonID ) ; <nl> + std : : transform ( m_failedAddons . begin ( ) , m_failedAddons . end ( ) , std : : inserter ( currentIds , currentIds . end ( ) ) , GetPeripheralAddonID ) ; <nl> <nl> / / Get new add - ons <nl> VECADDONS newAddons ; <nl> void CPeripheralBusAddon : : UpdateAddons ( void ) <nl> PeripheralAddonPtr newAddon = std : : dynamic_pointer_cast < CPeripheralAddon > ( * it ) ; <nl> if ( newAddon ) <nl> { <nl> - if ( newAddon - > CreateAddon ( ) = = ADDON_STATUS_OK ) <nl> - currentAddons . push_back ( newAddon ) ; <nl> + bool bCreated ; <nl> + <nl> + { <nl> + CSingleExit exit ( m_critSection ) ; <nl> + bCreated = ( newAddon - > CreateAddon ( ) = = ADDON_STATUS_OK ) ; <nl> + } <nl> + <nl> + if ( bCreated ) <nl> + m_addons . push_back ( newAddon ) ; <nl> else <nl> - failedAddons . push_back ( newAddon ) ; <nl> + m_failedAddons . push_back ( newAddon ) ; <nl> } <nl> } <nl> } <nl> void CPeripheralBusAddon : : UpdateAddons ( void ) <nl> { <nl> CLog : : Log ( LOGDEBUG , " Add - on bus : Unregistering add - on % s " , addonId . c_str ( ) ) ; <nl> <nl> - auto ErasePeripheralAddon = [ addonId ] ( const PeripheralAddonPtr & addon ) <nl> + PeripheralAddonPtr erased ; <nl> + auto ErasePeripheralAddon = [ & addonId , & erased ] ( const PeripheralAddonPtr & addon ) <nl> { <nl> if ( addon - > ID ( ) = = addonId ) <nl> { <nl> - addon - > Destroy ( ) ; <nl> + erased = addon ; <nl> return true ; <nl> } <nl> return false ; <nl> } ; <nl> <nl> - currentAddons . erase ( std : : remove_if ( currentAddons . begin ( ) , currentAddons . end ( ) , ErasePeripheralAddon ) , currentAddons . end ( ) ) ; <nl> - failedAddons . erase ( std : : remove_if ( failedAddons . begin ( ) , failedAddons . end ( ) , ErasePeripheralAddon ) , failedAddons . end ( ) ) ; <nl> - } <nl> + m_addons . erase ( std : : remove_if ( m_addons . begin ( ) , m_addons . end ( ) , ErasePeripheralAddon ) , m_addons . end ( ) ) ; <nl> + if ( ! erased ) <nl> + m_failedAddons . erase ( std : : remove_if ( m_failedAddons . begin ( ) , m_failedAddons . end ( ) , ErasePeripheralAddon ) , m_failedAddons . end ( ) ) ; <nl> <nl> - / / Record results <nl> - { <nl> - CSingleLock lock ( m_critSection ) ; <nl> - m_addons = std : : move ( currentAddons ) ; <nl> - m_failedAddons = std : : move ( failedAddons ) ; <nl> + if ( erased ) <nl> + { <nl> + CSingleExit exit ( m_critSection ) ; <nl> + erased - > Destroy ( ) ; <nl> + } <nl> } <nl> } <nl> mmm a / xbmc / peripherals / bus / virtual / PeripheralBusAddon . h <nl> ppp b / xbmc / peripherals / bus / virtual / PeripheralBusAddon . h <nl> namespace PERIPHERALS <nl> CPeripheralBusAddon ( CPeripherals * manager ) ; <nl> virtual ~ CPeripheralBusAddon ( void ) ; <nl> <nl> + void UpdateAddons ( void ) ; <nl> + <nl> / * ! <nl> * \ brief Get peripheral add - on by ID <nl> * / <nl> namespace PERIPHERALS <nl> virtual void UnregisterRemovedDevices ( const PeripheralScanResults & results ) override ; <nl> <nl> private : <nl> - void UpdateAddons ( void ) ; <nl> void OnEvent ( const ADDON : : AddonEvent & event ) ; <nl> <nl> PeripheralAddonVector m_addons ; <nl>
Merge pull request from garbear / fix - enable - addon
xbmc/xbmc
175a92afdb0ffb306b62b919a6299b3a646e1ea3
2016-10-15T00:28:25Z
mmm a / src / AggregateFunctions / AggregateFunctionForEach . h <nl> ppp b / src / AggregateFunctions / AggregateFunctionForEach . h <nl> class AggregateFunctionForEach final : public IAggregateFunctionDataHelper < Aggre <nl> { <nl> return true ; <nl> } <nl> + <nl> + bool isState ( ) const override <nl> + { <nl> + return nested_func - > isState ( ) ; <nl> + } <nl> } ; <nl> <nl> <nl> mmm a / src / AggregateFunctions / IAggregateFunction . h <nl> ppp b / src / AggregateFunctions / IAggregateFunction . h <nl> class IAggregateFunction <nl> throw Exception ( " Method predictValues is not supported for " + getName ( ) , ErrorCodes : : NOT_IMPLEMENTED ) ; <nl> } <nl> <nl> - / * * Returns true for aggregate functions of type - State . <nl> + / * * Returns true for aggregate functions of type - State <nl> * They are executed as other aggregate functions , but not finalized ( return an aggregation state that can be combined with another ) . <nl> + * Also returns true when the final value of this aggregate function contains State of other aggregate function inside . <nl> * / <nl> virtual bool isState ( ) const { return false ; } <nl> <nl> mmm a / src / Columns / ColumnAggregateFunction . cpp <nl> ppp b / src / Columns / ColumnAggregateFunction . cpp <nl> void ColumnAggregateFunction : : addArena ( ConstArenaPtr arena_ ) <nl> foreign_arenas . push_back ( arena_ ) ; <nl> } <nl> <nl> + namespace <nl> + { <nl> + <nl> + ConstArenas concatArenas ( const ConstArenas & array , ConstArenaPtr arena ) <nl> + { <nl> + ConstArenas result = array ; <nl> + if ( arena ) <nl> + result . push_back ( std : : move ( arena ) ) ; <nl> + <nl> + return result ; <nl> + } <nl> + <nl> + } <nl> + <nl> MutableColumnPtr ColumnAggregateFunction : : convertToValues ( MutableColumnPtr column ) <nl> { <nl> / * * If the aggregate function returns an unfinalized / unfinished state , <nl> MutableColumnPtr ColumnAggregateFunction : : convertToValues ( MutableColumnPtr colum <nl> auto & func = column_aggregate_func . func ; <nl> auto & data = column_aggregate_func . data ; <nl> <nl> - if ( const AggregateFunctionState * function_state = typeid_cast < const AggregateFunctionState * > ( func . get ( ) ) ) <nl> - { <nl> - auto res = column_aggregate_func . createView ( ) ; <nl> - res - > set ( function_state - > getNestedFunction ( ) ) ; <nl> - res - > data . assign ( data . begin ( ) , data . end ( ) ) ; <nl> - return res ; <nl> - } <nl> - <nl> column_aggregate_func . ensureOwnership ( ) ; <nl> <nl> MutableColumnPtr res = func - > getReturnType ( ) - > createColumn ( ) ; <nl> res - > reserve ( data . size ( ) ) ; <nl> <nl> + / / / If there are references to states in final column , we must hold their ownership <nl> + / / / by holding arenas and source . <nl> + <nl> + auto callback = [ & ] ( auto & subcolumn ) <nl> + { <nl> + if ( auto * aggregate_subcolumn = typeid_cast < ColumnAggregateFunction * > ( subcolumn . get ( ) ) ) <nl> + { <nl> + aggregate_subcolumn - > foreign_arenas = concatArenas ( column_aggregate_func . foreign_arenas , column_aggregate_func . my_arena ) ; <nl> + aggregate_subcolumn - > src = column_aggregate_func . getPtr ( ) ; <nl> + } <nl> + } ; <nl> + <nl> + callback ( res ) ; <nl> + res - > forEachSubcolumn ( callback ) ; <nl> + <nl> for ( auto * val : data ) <nl> func - > insertResultInto ( val , * res , & column_aggregate_func . createOrGetArena ( ) ) ; <nl> <nl> void ColumnAggregateFunction : : getExtremes ( Field & min , Field & max ) const <nl> max = serialized ; <nl> } <nl> <nl> - namespace <nl> - { <nl> - <nl> - ConstArenas concatArenas ( const ConstArenas & array , ConstArenaPtr arena ) <nl> - { <nl> - ConstArenas result = array ; <nl> - if ( arena ) <nl> - result . push_back ( std : : move ( arena ) ) ; <nl> - <nl> - return result ; <nl> - } <nl> - <nl> - } <nl> - <nl> ColumnAggregateFunction : : MutablePtr ColumnAggregateFunction : : createView ( ) const <nl> { <nl> auto res = create ( func , concatArenas ( foreign_arenas , my_arena ) ) ; <nl> new file mode 100644 <nl> index 00000000000 . . 3d1732f9d5d <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01381_for_each_with_states . reference <nl> <nl> + 5B27015C30012CCBC234272C27015C305C30275D <nl> + 02000000000000000100012CCBC234010000 <nl> + [ ' 0100012CCBC234 ' , ' 010000 ' ] <nl> + [ 1 , 0 ] <nl> + 5B27015C30012CCBC234272C27015C305C30275D <nl> + <nl> + 5B27015C30012CCBC234272C27015C305C30275D <nl> + 02000000000000000100012CCBC234010000 <nl> + <nl> + 02000000000000000100012CCBC234010000 <nl> + [ ' 0100012CCBC234 ' , ' 010000 ' ] <nl> + <nl> + [ ' 0100012CCBC234 ' , ' 010000 ' ] <nl> + [ 1 , 0 ] <nl> + <nl> + [ 1 , 0 ] <nl> new file mode 100644 <nl> index 00000000000 . . 7286ef2cb27 <nl> mmm / dev / null <nl> ppp b / tests / queries / 0_stateless / 01381_for_each_with_states . sql <nl> <nl> + SELECT hex ( toString ( uniqStateForEach ( [ 1 , NULL ] ) ) ) ; <nl> + SELECT hex ( toString ( uniqStateForEachState ( [ 1 , NULL ] ) ) ) ; <nl> + SELECT arrayMap ( x - > hex ( toString ( x ) ) , finalizeAggregation ( uniqStateForEachState ( [ 1 , NULL ] ) ) ) ; <nl> + SELECT arrayMap ( x - > finalizeAggregation ( x ) , finalizeAggregation ( uniqStateForEachState ( [ 1 , NULL ] ) ) ) ; <nl> + <nl> + SELECT hex ( toString ( uniqStateForEach ( [ 1 , NULL ] ) ) ) WITH TOTALS ; <nl> + SELECT hex ( toString ( uniqStateForEachState ( [ 1 , NULL ] ) ) ) WITH TOTALS ; <nl> + SELECT arrayMap ( x - > hex ( toString ( x ) ) , finalizeAggregation ( uniqStateForEachState ( [ 1 , NULL ] ) ) ) WITH TOTALS ; <nl> + SELECT arrayMap ( x - > finalizeAggregation ( x ) , finalizeAggregation ( uniqStateForEachState ( [ 1 , NULL ] ) ) ) WITH TOTALS ; <nl>
Fix error with ownership of aggregate function states with nested states
ClickHouse/ClickHouse
c610a4b0a8f39bd18c0c11f73ad9454c994e781d
2020-07-10T05:28:34Z
mmm a / tools / simulator / frameworks / runtime - src / proj . win32 / main . cpp <nl> ppp b / tools / simulator / frameworks / runtime - src / proj . win32 / main . cpp <nl> int APIENTRY _tWinMain ( HINSTANCE hInstance , <nl> UNREFERENCED_PARAMETER ( hPrevInstance ) ; <nl> UNREFERENCED_PARAMETER ( lpCmdLine ) ; <nl> auto simulator = SimulatorWin : : getInstance ( ) ; <nl> - return simulator - > run ( ) ; <nl> + int ret = simulator - > run ( ) ; <nl> + delete simulator ; <nl> + return ret ; <nl> } <nl>
Fix js project with pre - build frameworks crash when exit program
cocos2d/cocos2d-x
52fb3fd0988da45a9622830cbe6f892fe2870e06
2015-12-29T11:38:37Z
mmm a / arangod / Aql / ExecutionBlock . cpp <nl> ppp b / arangod / Aql / ExecutionBlock . cpp <nl> static bool throwExceptionAfterBadSyncRequest ( ClusterCommResult * res , <nl> } <nl> <nl> StringBuffer const & responseBodyBuf ( res - > result - > getBody ( ) ) ; <nl> - std : : cout < < " ERROR WAS : " < < responseBodyBuf . c_str ( ) < < " \ n " ; <nl> <nl> / / extract error number and message from response <nl> int errorNum = TRI_ERROR_NO_ERROR ; <nl> ClusterCommResult * RemoteBlock : : sendRequest ( <nl> headers . insert ( make_pair ( " Shard - Id " , _ownName ) ) ; <nl> } <nl> <nl> - std : : cout < < " SENDING REQUEST TO " < < _server < < " , URLPART : " < < urlPart < < " , QUERYID : " < < _queryId < < " \ n " ; <nl> - return cc - > syncRequest ( clientTransactionId , <nl> - coordTransactionId , <nl> - _server , <nl> - type , <nl> - std : : string ( " / _db / " ) <nl> - + triagens : : basics : : StringUtils : : urlEncode ( _engine - > getQuery ( ) - > trx ( ) - > vocbase ( ) - > _name ) <nl> - + urlPart + _queryId , <nl> - body , <nl> - headers , <nl> - defaultTimeOut ) ; <nl> + auto result = cc - > syncRequest ( clientTransactionId , <nl> + coordTransactionId , <nl> + _server , <nl> + type , <nl> + std : : string ( " / _db / " ) <nl> + + triagens : : basics : : StringUtils : : urlEncode ( _engine - > getQuery ( ) - > trx ( ) - > vocbase ( ) - > _name ) <nl> + + urlPart + _queryId , <nl> + body , <nl> + headers , <nl> + defaultTimeOut ) ; <nl> + <nl> + return result ; <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> AqlItemBlock * RemoteBlock : : getSome ( size_t atLeast , <nl> if ( JsonHelper : : getBooleanValue ( responseBodyJson . json ( ) , " exhausted " , true ) ) { <nl> return nullptr ; <nl> } <nl> - else { <nl> - auto items = new triagens : : aql : : AqlItemBlock ( responseBodyJson ) ; <nl> - return items ; <nl> - } <nl> + <nl> + auto items = new triagens : : aql : : AqlItemBlock ( responseBodyJson ) ; <nl> + return items ; <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> mmm a / arangod / Aql / RestAqlHandler . cpp <nl> ppp b / arangod / Aql / RestAqlHandler . cpp <nl> RestAqlHandler : : RestAqlHandler ( triagens : : rest : : HttpRequest * request , <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> bool RestAqlHandler : : isDirect ( ) { <nl> - return true ; <nl> + return false ; <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> void RestAqlHandler : : createQueryFromJson ( ) { <nl> return ; <nl> } <nl> <nl> - std : : cout < < " createQueryFromJson : " < < queryJson . toString ( ) < < std : : endl ; <nl> - <nl> Json plan ; <nl> Json options ; <nl> <nl> void RestAqlHandler : : createQueryFromJson ( ) { <nl> answerBody ( " queryId " , Json ( StringUtils : : itoa ( _qId ) ) ) <nl> ( " ttl " , Json ( ttl ) ) ; <nl> <nl> - std : : cout < < " RESPONSE BODY IS : " < < answerBody . toString ( ) < < " \ n " ; <nl> _response - > body ( ) . appendText ( answerBody . toString ( ) ) ; <nl> } <nl> <nl> void RestAqlHandler : : useQuery ( std : : string const & operation , <nl> _queryRegistry - > close ( _vocbase , _qId ) ; <nl> return ; <nl> } <nl> - std : : cout < < " useQuery op : " < < operation < < " , " < < idString < < std : : endl <nl> - < < queryJson . toString ( ) < < std : : endl ; <nl> - } <nl> - else { <nl> - std : : cout < < " useQuery shutdown " < < std : : endl ; <nl> } <nl> <nl> try { <nl> void RestAqlHandler : : useQuery ( std : : string const & operation , <nl> TRI_ERROR_HTTP_SERVER_ERROR , <nl> " an unknown exception occurred " ) ; <nl> } <nl> - std : : cout < < " Response of useQuery : " < < _response - > body ( ) . c_str ( ) < < <nl> - std : : endl ; <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> void RestAqlHandler : : getInfoQuery ( std : : string const & operation , <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> triagens : : rest : : HttpHandler : : status_t RestAqlHandler : : execute ( ) { <nl> - / / std : : cout < < " GOT INCOMING REQUEST : " < < triagens : : rest : : HttpRequest : : translateMethod ( _request - > requestType ( ) ) < < " , " < < triagens : : arango : : ServerState : : instance ( ) - > getId ( ) < < " : " < < _request - > fullUrl ( ) < < " : " < < _request - > body ( ) < < " \ n " ; <nl> + std : : cout < < " GOT INCOMING REQUEST : " < < triagens : : rest : : HttpRequest : : translateMethod ( _request - > requestType ( ) ) < < " , " < < triagens : : arango : : ServerState : : instance ( ) - > getId ( ) < < " : " < < _request - > fullUrl ( ) < < " : " < < _request - > body ( ) < < " \ n " ; <nl> <nl> std : : vector < std : : string > const & suffix = _request - > suffix ( ) ; <nl> <nl> mmm a / arangod / Cluster / ClusterComm . cpp <nl> ppp b / arangod / Cluster / ClusterComm . cpp <nl> ClusterCommResult * ClusterComm : : syncRequest ( <nl> res - > coordTransactionID = coordTransactionID ; <nl> do { <nl> res - > operationID = getOperationID ( ) ; <nl> - } while ( res - > operationID = = 0 ) ; / / just to make sure <nl> + } <nl> + while ( res - > operationID = = 0 ) ; / / just to make sure <nl> res - > status = CL_COMM_SENDING ; <nl> <nl> double currentTime = TRI_microtime ( ) ; <nl> - double endTime = timeout = = 0 . 0 ? currentTime + 24 * 60 * 60 . 0 <nl> - : currentTime + timeout ; <nl> + double endTime = timeout = = 0 . 0 ? currentTime + 24 * 60 * 60 . 0 <nl> + : currentTime + timeout ; <nl> <nl> - if ( destination . substr ( 0 , 6 ) = = " shard : " ) { <nl> + if ( destination . substr ( 0 , 6 ) = = " shard : " ) { <nl> res - > shardID = destination . substr ( 6 ) ; <nl> res - > serverID = ClusterInfo : : instance ( ) - > getResponsibleServer ( res - > shardID ) ; <nl> LOG_DEBUG ( " Responsible server : % s " , res - > serverID . c_str ( ) ) ; <nl> - if ( res - > serverID = = " " ) { <nl> + if ( res - > serverID . empty ( ) ) { <nl> res - > status = CL_COMM_ERROR ; <nl> return res ; <nl> } <nl> } <nl> - else if ( destination . substr ( 0 , 7 ) = = " server : " ) { <nl> + else if ( destination . substr ( 0 , 7 ) = = " server : " ) { <nl> res - > shardID = " " ; <nl> res - > serverID = destination . substr ( 7 ) ; <nl> } <nl> ClusterCommResult * ClusterComm : : syncRequest ( <nl> <nl> / / We need a connection to this server : <nl> string endpoint = ClusterInfo : : instance ( ) - > getServerEndpoint ( res - > serverID ) ; <nl> - if ( endpoint = = " " ) { <nl> + if ( endpoint . empty ( ) ) { <nl> res - > status = CL_COMM_ERROR ; <nl> if ( logConnectionErrors ( ) ) { <nl> LOG_ERROR ( " cannot find endpoint of server ' % s ' " , res - > serverID . c_str ( ) ) ; <nl> ClusterCommResult * ClusterComm : : syncRequest ( <nl> } <nl> } <nl> else { <nl> - httpclient : : ConnectionManager * cm <nl> - = httpclient : : ConnectionManager : : instance ( ) ; <nl> + httpclient : : ConnectionManager * cm = httpclient : : ConnectionManager : : instance ( ) ; <nl> httpclient : : ConnectionManager : : SingleServerConnection * connection <nl> = cm - > leaseConnection ( endpoint ) ; <nl> - if ( 0 = = connection ) { <nl> + <nl> + if ( nullptr = = connection ) { <nl> res - > status = CL_COMM_ERROR ; <nl> if ( logConnectionErrors ( ) ) { <nl> LOG_ERROR ( " cannot create connection to server ' % s ' " , res - > serverID . c_str ( ) ) ; <nl> ClusterCommResult * ClusterComm : : syncRequest ( <nl> triagens : : httpclient : : SimpleHttpClient * client <nl> = new triagens : : httpclient : : SimpleHttpClient ( <nl> connection - > connection , <nl> - endTime - currentTime , false ) ; <nl> + endTime - currentTime , false ) ; <nl> client - > keepConnectionOnDestruction ( true ) ; <nl> <nl> map < string , string > headersCopy ( headerFields ) ; <nl> ClusterCommResult * ClusterComm : : syncRequest ( <nl> <nl> res - > result = client - > request ( reqtype , path , body . c_str ( ) , body . size ( ) , <nl> headersCopy ) ; <nl> + <nl> if ( res - > result = = nullptr | | ! res - > result - > isComplete ( ) ) { <nl> cm - > brokenConnection ( connection ) ; <nl> if ( client - > getErrorMessage ( ) = = " Request timeout reached " ) { <nl> mmm a / arangod / Utils / AqlTransaction . h <nl> ppp b / arangod / Utils / AqlTransaction . h <nl> namespace triagens { <nl> : Transaction ( transactionContext , vocbase , 0 ) , <nl> _collections ( * collections ) { <nl> <nl> - this - > addHint ( TRI_TRANSACTION_HINT_LOCK_ENTIRELY , false ) ; <nl> if ( ! isMainTransaction ) { <nl> this - > addHint ( TRI_TRANSACTION_HINT_LOCK_NEVER , true ) ; <nl> } <nl> + else { <nl> + this - > addHint ( TRI_TRANSACTION_HINT_LOCK_ENTIRELY , false ) ; <nl> + } <nl> <nl> for ( auto it = collections - > begin ( ) ; it ! = collections - > end ( ) ; + + it ) { <nl> if ( processCollection ( ( * it ) . second ) ! = TRI_ERROR_NO_ERROR ) { <nl> mmm a / lib / HttpServer / HttpCommTask . h <nl> ppp b / lib / HttpServer / HttpCommTask . h <nl> namespace triagens { <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> bool processRead ( ) { <nl> - if ( this - > _requestPending | | this - > _readBuffer - > c_str ( ) = = 0 ) { <nl> - <nl> + if ( this - > _requestPending | | this - > _readBuffer - > c_str ( ) = = nullptr ) { <nl> return true ; <nl> } <nl> <nl> bool handleRequest = false ; <nl> <nl> - <nl> if ( ! this - > _readRequestBody ) { <nl> # ifdef TRI_ENABLE_FIGURES <nl> <nl> mmm a / lib / SimpleHttpClient / ConnectionManager . cpp <nl> ppp b / lib / SimpleHttpClient / ConnectionManager . cpp <nl> ConnectionManager : : leaseConnection ( std : : string & endpoint ) { <nl> } <nl> } <nl> <nl> - TRI_ASSERT ( s ! = 0 ) ; <nl> + TRI_ASSERT ( s ! = nullptr ) ; <nl> <nl> / / Now get an unused one : <nl> { <nl> WRITE_LOCKER ( s - > lock ) ; <nl> - if ( ! s - > unused . empty ( ) ) { <nl> + if ( ! s - > unused . empty ( ) ) { <nl> c = s - > unused . back ( ) ; <nl> s - > unused . pop_back ( ) ; <nl> return c ; <nl> ConnectionManager : : leaseConnection ( std : : string & endpoint ) { <nl> <nl> triagens : : rest : : Endpoint * e <nl> = triagens : : rest : : Endpoint : : clientFactory ( endpoint ) ; <nl> - if ( 0 = = e ) { <nl> - return 0 ; <nl> + if ( nullptr = = e ) { <nl> + return nullptr ; <nl> } <nl> triagens : : httpclient : : GeneralClientConnection * <nl> g = triagens : : httpclient : : GeneralClientConnection : : factory ( <nl> ConnectionManager : : leaseConnection ( std : : string & endpoint ) { <nl> _globalConnectionOptions . _connectTimeout , <nl> _globalConnectionOptions . _connectRetries , <nl> _globalConnectionOptions . _sslProtocol ) ; <nl> - if ( 0 = = g ) { <nl> + if ( nullptr = = g ) { <nl> delete e ; <nl> - return 0 ; <nl> + return nullptr ; <nl> } <nl> - if ( ! g - > connect ( ) ) { <nl> + if ( ! g - > connect ( ) ) { <nl> delete g ; <nl> delete e ; <nl> - return 0 ; <nl> + return nullptr ; <nl> } <nl> - c = new SingleServerConnection ( g , e , endpoint ) ; <nl> - if ( 0 = = c ) { <nl> + <nl> + c = new SingleServerConnection ( g , e , endpoint ) ; <nl> + if ( nullptr = = c ) { <nl> delete g ; <nl> delete e ; <nl> - return 0 ; <nl> + return nullptr ; <nl> } <nl> <nl> / / Now put it into our administration : <nl> void ConnectionManager : : closeUnusedConnections ( double limit ) { <nl> } <nl> } <nl> <nl> - <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> / / mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - <nl> / / - - SECTION - - END - OF - FILE <nl> / / mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - <nl> mmm a / lib / SimpleHttpClient / ConnectionManager . h <nl> ppp b / lib / SimpleHttpClient / ConnectionManager . h <nl> namespace triagens { <nl> GeneralClientConnection * connection ; <nl> triagens : : rest : : Endpoint * endpoint ; <nl> time_t lastUsed ; <nl> - string ep_spec ; <nl> + std : : string ep_spec ; <nl> <nl> SingleServerConnection ( GeneralClientConnection * c , <nl> triagens : : rest : : Endpoint * e , <nl> std : : string & ep_spec ) <nl> - : connection ( c ) , endpoint ( e ) , lastUsed ( 0 ) , ep_spec ( ep_spec ) { } <nl> + : connection ( c ) , <nl> + endpoint ( e ) , <nl> + lastUsed ( 0 ) , <nl> + ep_spec ( ep_spec ) { <nl> + } <nl> + <nl> ~ SingleServerConnection ( ) ; <nl> + <nl> } ; <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> namespace triagens { <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> struct ServerConnections { <nl> - vector < SingleServerConnection * > connections ; <nl> - list < SingleServerConnection * > unused ; <nl> + std : : vector < SingleServerConnection * > connections ; <nl> + std : : list < SingleServerConnection * > unused ; <nl> triagens : : basics : : ReadWriteLock lock ; <nl> <nl> - ServerConnections ( ) { } <nl> + ServerConnections ( ) { <nl> + } <nl> + <nl> ~ ServerConnections ( ) ; / / closes all connections <nl> } ; <nl> <nl> namespace triagens { <nl> / / / @ brief get the unique instance <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> - static ConnectionManager * instance ( ) { <nl> + static ConnectionManager * instance ( ) { <nl> / / This does not have to be thread - safe , because we guarantee that <nl> / / this is called very early in the startup phase when there is still <nl> / / a single thread . <nl> - if ( 0 = = _theinstance ) { <nl> + if ( nullptr = = _theinstance ) { <nl> _theinstance = new ConnectionManager ( ) ; <nl> / / this now happens exactly once <nl> } <nl> namespace triagens { <nl> <nl> static void cleanup ( ) { <nl> delete _theinstance ; <nl> - _theinstance = 0 ; <nl> + _theinstance = nullptr ; <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> namespace triagens { <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> / / We keep connections to servers open : <nl> - map < std : : string , ServerConnections * > allConnections ; <nl> + std : : map < std : : string , ServerConnections * > allConnections ; <nl> triagens : : basics : : ReadWriteLock allLock ; <nl> <nl> } ; <nl>
fixed out - of - scheduler - threads issue
arangodb/arangodb
40e62e95a5577e7246949ac7fcc0c60a286fd1b0
2014-10-20T16:27:50Z
mmm a / include / swift / SILAnalysis / LoopRegionAnalysis . h <nl> ppp b / include / swift / SILAnalysis / LoopRegionAnalysis . h <nl> class LoopRegion { <nl> class subregion_iterator : <nl> public std : : iterator < std : : bidirectional_iterator_tag , unsigned > { <nl> friend struct SubregionData ; <nl> - llvm : : SmallVectorImpl < SubregionID > : : iterator InnerIter ; <nl> + llvm : : SmallVectorImpl < SubregionID > : : const_iterator InnerIter ; <nl> const llvm : : SmallVectorImpl < std : : pair < unsigned , unsigned > > * Subloops ; <nl> <nl> / / / A flag that says that this iterator is an invalid iterator belonging to <nl> class LoopRegion { <nl> unsigned IsInvalid : 1 ; <nl> <nl> subregion_iterator ( <nl> - llvm : : SmallVectorImpl < SubregionID > : : iterator iter , <nl> + llvm : : SmallVectorImpl < SubregionID > : : const_iterator iter , <nl> const llvm : : SmallVectorImpl < std : : pair < unsigned , unsigned > > * subloops ) <nl> : InnerIter ( iter ) , Subloops ( subloops ) , IsInvalid ( false ) { } <nl> <nl> class LoopRegion { <nl> / / / Subregions array by the RPO number of its header . <nl> llvm : : SmallVector < std : : pair < unsigned , unsigned > , 2 > Subloops ; <nl> <nl> - subregion_iterator begin ( ) { <nl> + subregion_iterator begin ( ) const { <nl> return subregion_iterator ( Subregions . begin ( ) , & Subloops ) ; <nl> } <nl> - subregion_iterator end ( ) { <nl> + subregion_iterator end ( ) const { <nl> return subregion_iterator ( Subregions . end ( ) , & Subloops ) ; <nl> } <nl> - subregion_reverse_iterator rbegin ( ) { <nl> + subregion_reverse_iterator rbegin ( ) const { <nl> return subregion_reverse_iterator ( begin ( ) ) ; <nl> } <nl> - subregion_reverse_iterator rend ( ) { <nl> + subregion_reverse_iterator rend ( ) const { <nl> return subregion_reverse_iterator ( end ( ) ) ; <nl> } <nl> <nl> class LoopRegion { <nl> } <nl> <nl> friend class LoopRegionFunctionInfo ; <nl> - using InnerSuccRange = IteratorRange < decltype ( Succs ) : : iterator > ; <nl> + using InnerSuccRange = IteratorRange < decltype ( Succs ) : : const_iterator > ; <nl> <nl> public : <nl> / / / These will assert if this is not a loop region . If this is a loop region , <nl> class LoopRegion { <nl> / / / <nl> / / / We use tail allocation of the extra data for loops so we do not incur the <nl> / / / memory cost of large SmallVectors for BBs . <nl> - subregion_iterator subregion_begin ( ) { <nl> + subregion_iterator subregion_begin ( ) const { <nl> if ( isBlock ( ) ) <nl> return subregion_iterator ( ) ; <nl> return getSubregionData ( ) . begin ( ) ; <nl> class LoopRegion { <nl> <nl> / / / This is the end equivalent of subregion_begin ( ) . Please see comment on <nl> / / / subregion_begin ( ) . <nl> - subregion_iterator subregion_end ( ) { <nl> + subregion_iterator subregion_end ( ) const { <nl> if ( isBlock ( ) ) <nl> return subregion_iterator ( ) ; <nl> return getSubregionData ( ) . end ( ) ; <nl> class LoopRegion { <nl> <nl> bool subregions_empty ( ) const { return getSubregionData ( ) . empty ( ) ; } <nl> unsigned subregions_size ( ) const { return getSubregionData ( ) . size ( ) ; } <nl> - subregion_reverse_iterator subregion_rbegin ( ) { <nl> + subregion_reverse_iterator subregion_rbegin ( ) const { <nl> return getSubregionData ( ) . rbegin ( ) ; <nl> } <nl> - subregion_reverse_iterator subregion_rend ( ) { <nl> + subregion_reverse_iterator subregion_rend ( ) const { <nl> return getSubregionData ( ) . rend ( ) ; <nl> } <nl> - llvm : : iterator_range < subregion_iterator > getSubregions ( ) { <nl> + llvm : : iterator_range < subregion_iterator > getSubregions ( ) const { <nl> return { subregion_begin ( ) , subregion_end ( ) } ; <nl> } <nl> - llvm : : iterator_range < subregion_reverse_iterator > getReverseSubregions ( ) { <nl> + llvm : : iterator_range < subregion_reverse_iterator > <nl> + getReverseSubregions ( ) const { <nl> return { subregion_rbegin ( ) , subregion_rend ( ) } ; <nl> } <nl> <nl> class LoopRegion { <nl> return std : : find ( subregion_begin ( ) , End , R - > getID ( ) ) ! = End ; <nl> } <nl> <nl> - using pred_iterator = decltype ( Preds ) : : iterator ; <nl> using pred_const_iterator = decltype ( Preds ) : : const_iterator ; <nl> - <nl> - pred_iterator pred_begin ( ) { return Preds . begin ( ) ; } <nl> - pred_iterator pred_end ( ) { return Preds . end ( ) ; } <nl> pred_const_iterator pred_begin ( ) const { return Preds . begin ( ) ; } <nl> pred_const_iterator pred_end ( ) const { return Preds . end ( ) ; } <nl> bool pred_empty ( ) const { return Preds . empty ( ) ; } <nl> unsigned pred_size ( ) const { return Preds . size ( ) ; } <nl> + iterator_range < pred_const_iterator > getPreds ( ) const { <nl> + return { pred_begin ( ) , pred_end ( ) } ; <nl> + } <nl> <nl> - using succ_iterator = decltype ( Succs ) : : iterator ; <nl> - using succ_const_iterator = decltype ( Succs ) : : const_iterator ; <nl> - succ_iterator succ_begin ( ) { return Succs . begin ( ) ; } <nl> - succ_iterator succ_end ( ) { return Succs . end ( ) ; } <nl> - succ_const_iterator succ_begin ( ) const { return Succs . begin ( ) ; } <nl> - succ_const_iterator succ_end ( ) const { return Succs . end ( ) ; } <nl> + using const_succ_iterator = decltype ( Succs ) : : const_iterator ; <nl> + const_succ_iterator succ_begin ( ) const { return Succs . begin ( ) ; } <nl> + const_succ_iterator succ_end ( ) const { return Succs . end ( ) ; } <nl> bool succ_empty ( ) const { return Succs . empty ( ) ; } <nl> unsigned succ_size ( ) const { return Succs . size ( ) ; } <nl> <nl> class LoopRegion { <nl> OptionalTransformRange < InnerSuccRange , SuccessorID : : ToLiveLocalSucc > ; <nl> using NonLocalSuccRange = <nl> OptionalTransformRange < InnerSuccRange , SuccessorID : : ToLiveNonLocalSucc > ; <nl> - SuccRange getSuccs ( ) ; <nl> - LocalSuccRange getLocalSuccs ( ) ; <nl> - NonLocalSuccRange getNonLocalSuccs ( ) ; <nl> + SuccRange getSuccs ( ) const ; <nl> + LocalSuccRange getLocalSuccs ( ) const ; <nl> + NonLocalSuccRange getNonLocalSuccs ( ) const ; <nl> <nl> BlockTy * getBlock ( ) const ; <nl> LoopTy * getLoop ( ) const ; <nl> class LoopRegionFunctionInfo { <nl> const_iterator end ( ) const { return IDToRegionMap . end ( ) ; } <nl> unsigned size ( ) const { return IDToRegionMap . size ( ) ; } <nl> bool empty ( ) const { return IDToRegionMap . empty ( ) ; } <nl> - RegionTy * getTopLevelRegion ( ) { return getRegion ( F ) ; } <nl> + RegionTy * getTopLevelRegion ( ) const { return getRegion ( F ) ; } <nl> <nl> FunctionTy * getFunction ( ) const { return F ; } <nl> <nl> mmm a / lib / SILAnalysis / LoopRegionAnalysis . cpp <nl> ppp b / lib / SILAnalysis / LoopRegionAnalysis . cpp <nl> llvm : : raw_ostream & llvm : : operator < < ( llvm : : raw_ostream & os , LoopRegion & LR ) { <nl> return os ; <nl> } <nl> <nl> - LoopRegion : : SuccRange LoopRegion : : getSuccs ( ) { <nl> + LoopRegion : : SuccRange LoopRegion : : getSuccs ( ) const { <nl> auto Range = InnerSuccRange ( Succs . begin ( ) , Succs . end ( ) ) ; <nl> return SuccRange ( Range , SuccessorID : : ToLiveSucc ( ) ) ; <nl> } <nl> <nl> - LoopRegion : : LocalSuccRange LoopRegion : : getLocalSuccs ( ) { <nl> + LoopRegion : : LocalSuccRange LoopRegion : : getLocalSuccs ( ) const { <nl> auto Range = InnerSuccRange ( Succs . begin ( ) , Succs . end ( ) ) ; <nl> return LocalSuccRange ( Range , SuccessorID : : ToLiveLocalSucc ( ) ) ; <nl> } <nl> <nl> - LoopRegion : : NonLocalSuccRange LoopRegion : : getNonLocalSuccs ( ) { <nl> + LoopRegion : : NonLocalSuccRange LoopRegion : : getNonLocalSuccs ( ) const { <nl> auto Range = InnerSuccRange ( Succs . begin ( ) , Succs . end ( ) ) ; <nl> return NonLocalSuccRange ( Range , SuccessorID : : ToLiveNonLocalSucc ( ) ) ; <nl> } <nl> void LoopRegionFunctionInfo : : verify ( ) { <nl> / / do not care if the successor or predecessor lists are sorted , just that <nl> / / they are unique . <nl> { <nl> - assert ( UniqueSuccList . empty ( ) ) ; <nl> - std : : copy ( R - > Succs . begin ( ) , R - > Succs . end ( ) , UniqueSuccList . end ( ) ) ; <nl> + UniqueSuccList . clear ( ) ; <nl> + for ( auto SuccID : R - > Succs ) { <nl> + UniqueSuccList . push_back ( SuccID ) ; <nl> + } <nl> std : : sort ( UniqueSuccList . begin ( ) , UniqueSuccList . end ( ) ) ; <nl> auto End = UniqueSuccList . end ( ) ; <nl> assert ( End = = std : : unique ( UniqueSuccList . begin ( ) , UniqueSuccList . end ( ) ) & & <nl> " Expected UniqueSuccList to not have any duplicate elements " ) ; <nl> - UniqueSuccList . clear ( ) ; <nl> } <nl> <nl> { <nl> - assert ( UniquePredList . empty ( ) ) ; <nl> - std : : copy ( R - > Preds . begin ( ) , R - > Preds . end ( ) , UniquePredList . end ( ) ) ; <nl> + UniquePredList . clear ( ) ; <nl> + for ( unsigned PredID : R - > Preds ) { <nl> + UniquePredList . push_back ( PredID ) ; <nl> + } <nl> + std : : copy ( R - > Preds . begin ( ) , R - > Preds . end ( ) , UniquePredList . begin ( ) ) ; <nl> std : : sort ( UniquePredList . begin ( ) , UniquePredList . end ( ) ) ; <nl> auto End = UniquePredList . end ( ) ; <nl> assert ( End = = std : : unique ( UniquePredList . begin ( ) , UniquePredList . end ( ) ) & & <nl> " Expected UniquePredList to not have any duplicate elements " ) ; <nl> - UniquePredList . clear ( ) ; <nl> } <nl> <nl> / / If this node does not have a parent , it should have no non - local <nl> struct LoopRegionWrapper { <nl> struct alledge_iterator <nl> : std : : iterator < std : : forward_iterator_tag , LoopRegionWrapper > { <nl> LoopRegionWrapper * Wrapper ; <nl> - swift : : LoopRegion : : subregion_iterator SubregionIter ; <nl> - LoopRegion : : succ_iterator SuccIter ; <nl> + LoopRegion : : subregion_iterator SubregionIter ; <nl> + LoopRegion : : const_succ_iterator SuccIter ; <nl> <nl> alledge_iterator ( LoopRegionWrapper * w , <nl> swift : : LoopRegion : : subregion_iterator subregioniter , <nl> - LoopRegion : : succ_iterator succiter ) <nl> + LoopRegion : : const_succ_iterator succiter ) <nl> : Wrapper ( w ) , SubregionIter ( subregioniter ) , SuccIter ( succiter ) { <nl> <nl> / / Prime the successor iterator so that we skip over any initial dead <nl>
[ loop - arc ] Make some methods on LoopRegion const en duex
apple/swift
742df3dc8492616142debb3d1d3633e7d449b0d7
2015-10-19T00:36:25Z
mmm a / cocos2dx / textures / CCTexturePVR . cpp <nl> ppp b / cocos2dx / textures / CCTexturePVR . cpp <nl> bool CCTexturePVR : : unpackPVRv3Data ( unsigned char * dataPointer , unsigned int data <nl> pvr3TableElements = 9 ; <nl> } <nl> <nl> - for ( int i = 0 ; i < pvr3TableElements ; i + + ) <nl> + for ( unsigned int i = 0 ; i < pvr3TableElements ; i + + ) <nl> { <nl> if ( v3_pixel_formathash [ i ] . pixelFormat = = pixelFormat ) <nl> { <nl>
Fixing a warning .
cocos2d/cocos2d-x
4e2819e86dabd3e9032946092f30a87df2efc067
2013-04-08T05:51:24Z
mmm a / DEPS <nl> ppp b / DEPS <nl> vars = { <nl> <nl> deps = { <nl> " v8 / build / gyp " : <nl> - Var ( " git_url " ) + " / external / gyp . git " + " @ " + " e2313c02ad7b6d589b38fe578f5d39970a9bbc20 " , <nl> + Var ( " git_url " ) + " / external / gyp . git " + " @ " + " 70ee80e82bacf2d7816a56f792bb33587b04c338 " , <nl> " v8 / third_party / icu " : <nl> Var ( " git_url " ) + " / chromium / deps / icu . git " + " @ " + " 42c58d4e49f2250039f0e98d43e0b76e8f5ca024 " , <nl> " v8 / buildtools " : <nl> deps = { <nl> " v8 / test / test262 / data " : <nl> Var ( " git_url " ) + " / external / github . com / tc39 / test262 . git " + " @ " + " fd44cd73dfbce0b515a2474b7cd505d6176a9eb5 " , <nl> " v8 / tools / clang " : <nl> - Var ( " git_url " ) + " / chromium / src / tools / clang . git " + " @ " + " 5b7bd8a08ae5ee5262c38e01f5b703cc193074d4 " , <nl> + Var ( " git_url " ) + " / chromium / src / tools / clang . git " + " @ " + " 247bb6833987bc73051243230a1f3c949a9c9b92 " , <nl> } <nl> <nl> deps_os = { <nl>
Update V8 DEPS .
v8/v8
bb38318d50034bfe3de05c64b3fa4e4ff0262689
2015-12-08T07:12:31Z
mmm a / scripts / vcpkgTools . xml <nl> ppp b / scripts / vcpkgTools . xml <nl> <nl> < archiveName > cmake - 3 . 14 . 0 - Linux - x86_64 . tar . gz < / archiveName > <nl> < / tool > <nl> < tool name = " cmake " os = " freebsd " > <nl> - < version > 3 . 14 . 0 < / version > <nl> - < exeRelativePath > < / exeRelativePath > <nl> - < url > < / url > <nl> - < sha512 > < / sha512 > <nl> - < archiveName > < / archiveName > <nl> + < version > 3 . 12 . 4 < / version > <nl> + < exeRelativePath > cmake - 3 . 12 . 4 - Linux - x86_64 / bin / cmake < / exeRelativePath > <nl> + < url > https : / / github . com / Kitware / CMake / releases / download / v3 . 12 . 4 / cmake - 3 . 12 . 4 - Linux - x86_64 . tar . gz < / url > <nl> + < sha512 > ee9eded0c72e06ef99554f09553d40842478700ca6f07319c28247f1d45301708c703c65ad617cf618833257bacc3b9f63a54b32288bfb619d38758669dcd20f < / sha512 > <nl> + < archiveName > cmake - 3 . 12 . 4 - Linux - x86_64 . tar . gz < / archiveName > <nl> < / tool > <nl> < tool name = " git " os = " windows " > <nl> < version > 2 . 20 . 0 < / version > <nl>
[ vcpkg ] Revert change to freebsd cmake version
microsoft/vcpkg
4c516c62ee2b1719f9b396f2f18b58ef3e293561
2019-03-20T23:40:45Z
mmm a / benchmark / single - source / DictionaryBridge . swift <nl> ppp b / benchmark / single - source / DictionaryBridge . swift <nl> <nl> import Foundation <nl> import TestsUtils <nl> <nl> + # if _runtime ( _ObjC ) <nl> class Thing : NSObject { <nl> <nl> required override init ( ) { <nl> class Stuff { <nl> <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_DictionaryBridge ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 1 . . . 100 * N { <nl> _ = Stuff ( ) <nl> } <nl> + # endif <nl> } <nl> mmm a / benchmark / single - source / MapReduce . swift <nl> ppp b / benchmark / single - source / MapReduce . swift <nl> public func run_MapReduceShortString ( _ N : Int ) { <nl> <nl> @ inline ( never ) <nl> public func run_MapReduceClass ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> let numbers = ( 0 . . < 1000 ) . map { NSDecimalNumber ( value : $ 0 ) } <nl> <nl> var c = 0 <nl> public func run_MapReduceClass ( _ N : Int ) { <nl> c + = mapped . reduce ( 0 , & + ) <nl> } <nl> CheckResults ( c ! = 0 , " IncorrectResults in MapReduce " ) <nl> + # endif <nl> } <nl> <nl> @ inline ( never ) <nl> public func run_MapReduceClassShort ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> let numbers = ( 0 . . < 10 ) . map { NSDecimalNumber ( value : $ 0 ) } <nl> <nl> var c = 0 <nl> public func run_MapReduceClassShort ( _ N : Int ) { <nl> c + = mapped . reduce ( 0 , & + ) <nl> } <nl> CheckResults ( c ! = 0 , " IncorrectResults in MapReduce " ) <nl> + # endif <nl> } <nl> <nl> mmm a / benchmark / single - source / NSDictionaryCastToSwift . swift <nl> ppp b / benchmark / single - source / NSDictionaryCastToSwift . swift <nl> import TestsUtils <nl> <nl> @ inline ( never ) <nl> public func run_NSDictionaryCastToSwift ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> let NSDict = NSDictionary ( ) <nl> var swiftDict = [ String : NSObject ] ( ) <nl> for _ in 1 . . . 10000 * N { <nl> public func run_NSDictionaryCastToSwift ( _ N : Int ) { <nl> CheckResults ( swiftDict . isEmpty , <nl> " Incorrect result in swiftDict . isEmpty : " + <nl> " \ ( swiftDict . isEmpty ) ! = true \ n " ) <nl> + # endif <nl> } <nl> mmm a / benchmark / single - source / NSStringConversion . swift <nl> ppp b / benchmark / single - source / NSStringConversion . swift <nl> import TestsUtils <nl> import Foundation <nl> <nl> public func run_NSStringConversion ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> let test : NSString = NSString ( cString : " test " , encoding : String . Encoding . ascii . rawValue ) ! <nl> for _ in 1 . . . N * 10000 { <nl> _ = test as String <nl> } <nl> + # endif <nl> } <nl> mmm a / benchmark / single - source / ObjectiveCBridging . swift <nl> ppp b / benchmark / single - source / ObjectiveCBridging . swift <nl> <nl> import TestsUtils <nl> import Foundation <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> public func forcedCast < NS , T > ( _ ns : NS ) - > T { <nl> return ns as ! T <nl> public func forcedCast < NS , T > ( _ ns : NS ) - > T { <nl> public func conditionalCast < NS , T > ( _ ns : NS ) - > T ? { <nl> return ns as ? T <nl> } <nl> + # endif <nl> <nl> <nl> / / = = = String = = = / / <nl> <nl> + # if _runtime ( _ObjC ) <nl> func createNSString ( ) - > NSString { <nl> return NSString ( cString : " NSString that does not fit in tagged pointer " , encoding : String . Encoding . utf8 . rawValue ) ! <nl> } <nl> func testObjectiveCBridgeFromNSString ( ) { <nl> } <nl> CheckResults ( s ! = nil & & s = = " NSString that does not fit in tagged pointer " , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeFromNSString ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeFromNSString ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeFromNSStringForced ( ) { <nl> let nsString = createNSString ( ) <nl> func testObjectiveCBridgeFromNSStringForced ( ) { <nl> } <nl> CheckResults ( s ! = nil & & s = = " NSString that does not fit in tagged pointer " , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeFromNSStringForced ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeFromNSStringForced ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeToNSString ( ) { <nl> let nativeString = " Native " <nl> func testObjectiveCBridgeToNSString ( ) { <nl> } <nl> CheckResults ( s ! = nil & & s = = " Native " , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeToNSString ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeToNSString ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> / / = = = Array = = = / / <nl> <nl> + # if _runtime ( _ObjC ) <nl> func createNSArray ( ) - > NSArray { <nl> let nsMutableArray = NSMutableArray ( ) <nl> let nsString = NSString ( cString : " NSString that does not fit in tagged pointer " , encoding : String . Encoding . utf8 . rawValue ) ! <nl> func testObjectiveCBridgeFromNSArrayAnyObject ( ) { <nl> } <nl> CheckResults ( nativeString ! = nil & & nativeString ! = = " NSString that does not fit in tagged pointer " , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeFromNSArrayAnyObject ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeFromNSArrayAnyObject ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeFromNSArrayAnyObjectForced ( ) { <nl> let nsArray = createNSArray ( ) <nl> func testObjectiveCBridgeFromNSArrayAnyObjectForced ( ) { <nl> } <nl> CheckResults ( nativeString ! = nil & & nativeString ! = = " NSString that does not fit in tagged pointer " , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeFromNSArrayAnyObjectForced ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeFromNSArrayAnyObjectForced ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeToNSArray ( ) { <nl> let nativeArray = [ " abcde " , " abcde " , " abcde " , " abcde " , " abcde " , <nl> func testObjectiveCBridgeToNSArray ( ) { <nl> } <nl> CheckResults ( nsString ! = nil & & ( nsString ! as ! NSString ) . isEqual ( " abcde " ) , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeToNSArray ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeToNSArray ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeFromNSArrayAnyObjectToString ( ) { <nl> let nsArray = createNSArray ( ) <nl> func testObjectiveCBridgeFromNSArrayAnyObjectToString ( ) { <nl> } <nl> CheckResults ( nativeString ! = nil & & nativeString = = " NSString that does not fit in tagged pointer " , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeFromNSArrayAnyObjectToString ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeFromNSArrayAnyObjectToString ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeFromNSArrayAnyObjectToStringForced ( ) { <nl> let nsArray = createNSArray ( ) <nl> func testObjectiveCBridgeFromNSArrayAnyObjectToStringForced ( ) { <nl> } <nl> CheckResults ( nativeString ! = nil & & nativeString = = " NSString that does not fit in tagged pointer " , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeFromNSArrayAnyObjectToStringForced ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeFromNSArrayAnyObjectToStringForced ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> / / = = = Dictionary = = = / / <nl> <nl> + # if _runtime ( _ObjC ) <nl> func createNSDictionary ( ) - > NSDictionary { <nl> let nsMutableDictionary = NSMutableDictionary ( ) <nl> let nsString = NSString ( cString : " NSString that does not fit in tagged pointer " , encoding : String . Encoding . utf8 . rawValue ) ! <nl> func testObjectiveCBridgeFromNSDictionaryAnyObject ( ) { <nl> } <nl> CheckResults ( nativeInt ! = nil & & nativeInt = = 1 , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeFromNSDictionaryAnyObject ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeFromNSDictionaryAnyObject ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeFromNSDictionaryAnyObjectForced ( ) { <nl> let nsDictionary = createNSDictionary ( ) <nl> func testObjectiveCBridgeFromNSDictionaryAnyObjectForced ( ) { <nl> } <nl> CheckResults ( nativeInt ! = nil & & nativeInt = = 1 , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeFromNSDictionaryAnyObjectForced ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeFromNSDictionaryAnyObjectForced ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeToNSDictionary ( ) { <nl> let nativeDictionary = [ " abcde1 " : 1 , " abcde2 " : 2 , " abcde3 " : 3 , " abcde4 " : 4 , <nl> func testObjectiveCBridgeToNSDictionary ( ) { <nl> } <nl> CheckResults ( nsNumber ! = nil & & ( nsNumber as ! Int ) = = 1 , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeToNSDictionary ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeToNSDictionary ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeFromNSDictionaryAnyObjectToString ( ) { <nl> let nsDictionary = createNSDictionary ( ) <nl> func testObjectiveCBridgeFromNSDictionaryAnyObjectToString ( ) { <nl> } <nl> CheckResults ( nativeInt ! = nil & & nativeInt = = 1 , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeFromNSDictionaryAnyObjectToString ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeFromNSDictionaryAnyObjectToString ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeFromNSDictionaryAnyObjectToStringForced ( ) { <nl> let nsDictionary = createNSDictionary ( ) <nl> func testObjectiveCBridgeFromNSDictionaryAnyObjectToStringForced ( ) { <nl> } <nl> CheckResults ( nativeInt ! = nil & & nativeInt = = 1 , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeFromNSDictionaryAnyObjectToStringForced ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeFromNSDictionaryAnyObjectToStringForced ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> / / = = = Set = = = / / <nl> <nl> + # if _runtime ( _ObjC ) <nl> func createNSSet ( ) - > NSSet { <nl> let nsMutableSet = NSMutableSet ( ) <nl> let nsString = NSString ( cString : " NSString that does not fit in tagged pointer " , encoding : String . Encoding . utf8 . rawValue ) ! <nl> func testObjectiveCBridgeFromNSSetAnyObject ( ) { <nl> } <nl> CheckResults ( result ! = nil & & result ! , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeFromNSSetAnyObject ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeFromNSSetAnyObject ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeFromNSSetAnyObjectForced ( ) { <nl> let nsSet = createNSSet ( ) <nl> func testObjectiveCBridgeFromNSSetAnyObjectForced ( ) { <nl> } <nl> CheckResults ( result ! = nil & & result ! , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeFromNSSetAnyObjectForced ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeFromNSSetAnyObjectForced ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeToNSSet ( ) { <nl> let nativeSet = Set < String > ( [ " abcde1 " , " abcde2 " , " abcde3 " , " abcde4 " , " abcde5 " , <nl> func testObjectiveCBridgeToNSSet ( ) { <nl> } <nl> CheckResults ( nsString ! = nil & & ( nsString as ! String ) = = " abcde1 " , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeToNSSet ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeToNSSet ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeFromNSSetAnyObjectToString ( ) { <nl> let nsString = NSString ( cString : " NSString that does not fit in tagged pointer " , encoding : String . Encoding . utf8 . rawValue ) ! <nl> func testObjectiveCBridgeFromNSSetAnyObjectToString ( ) { <nl> } <nl> CheckResults ( result ! = nil & & result ! , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeFromNSSetAnyObjectToString ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeFromNSSetAnyObjectToString ( ) <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeFromNSSetAnyObjectToStringForced ( ) { <nl> let nsSet = createNSSet ( ) <nl> func testObjectiveCBridgeFromNSSetAnyObjectToStringForced ( ) { <nl> } <nl> CheckResults ( result ! = nil & & result ! , " Expected results did not match " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeFromNSSetAnyObjectToStringForced ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeFromNSSetAnyObjectToStringForced ( ) <nl> } <nl> + # endif <nl> } <nl> mmm a / benchmark / single - source / ObjectiveCBridgingStubs . swift <nl> ppp b / benchmark / single - source / ObjectiveCBridgingStubs . swift <nl> <nl> <nl> import TestsUtils <nl> import Foundation <nl> + # if _runtime ( _ObjC ) <nl> import ObjectiveCTests <nl> + # endif <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubFromNSString ( ) { <nl> let b = BridgeTester ( ) <nl> func testObjectiveCBridgeStubFromNSString ( ) { <nl> } <nl> CheckResults ( str ! = " " & & str = = " Default string value no tagged pointer " , " Wrong value returned " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubFromNSString ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubFromNSString ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubToNSString ( ) { <nl> let b = BridgeTester ( ) <nl> func testObjectiveCBridgeStubToNSString ( ) { <nl> b . test ( from : str ) <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubToNSString ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubToNSString ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubFromArrayOfNSString ( ) { <nl> let b = BridgeTester ( ) <nl> func testObjectiveCBridgeStubFromArrayOfNSString ( ) { <nl> } <nl> CheckResults ( str ! = " " & & str = = " Default string value no tagged pointer " , " Wrong value returned " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubFromArrayOfNSString ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubFromArrayOfNSString ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubToArrayOfNSString ( ) { <nl> let b = BridgeTester ( ) <nl> func testObjectiveCBridgeStubToArrayOfNSString ( ) { <nl> b . test ( fromArrayOf : arr ) <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubToArrayOfNSString ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubToArrayOfNSString ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubFromNSDate ( ) { <nl> let b = BridgeTester ( ) <nl> func testObjectiveCBridgeStubFromNSDate ( ) { <nl> let _ = bridgedEnd . timeIntervalSince ( bridgedBegin ) <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubFromNSDate ( N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubFromNSDate ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> public func testObjectiveCBridgeStubToNSDate ( ) { <nl> let b = BridgeTester ( ) <nl> public func testObjectiveCBridgeStubToNSDate ( ) { <nl> b . use ( d ) <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubToNSDate ( N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubToNSDate ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubDateAccess ( ) { <nl> var remainders = 0 . 0 <nl> func testObjectiveCBridgeStubDateAccess ( ) { <nl> remainders + = d . timeIntervalSinceReferenceDate . truncatingRemainder ( dividingBy : 10 ) <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubDateAccess ( N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubDateAccess ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubDateMutation ( ) { <nl> var d = Date ( ) <nl> func testObjectiveCBridgeStubDateMutation ( ) { <nl> d + = 1 <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubDateMutation ( N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubDateMutation ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubURLAppendPath ( ) { <nl> let startUrl = URL ( string : " / " ) ! <nl> func testObjectiveCBridgeStubURLAppendPath ( ) { <nl> } <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubURLAppendPath ( N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubURLAppendPath ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubDataAppend ( ) { <nl> let proto = Data ( ) <nl> func testObjectiveCBridgeStubDataAppend ( ) { <nl> } <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubDataAppend ( N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubDataAppend ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> mmm a / benchmark / single - source / ObjectiveCNoBridgingStubs . swift <nl> ppp b / benchmark / single - source / ObjectiveCNoBridgingStubs . swift <nl> <nl> <nl> import TestsUtils <nl> import Foundation <nl> + # if _runtime ( _ObjC ) <nl> import ObjectiveCTests <nl> + # endif <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubFromNSStringRef ( ) { <nl> let b = BridgeTester ( ) <nl> func testObjectiveCBridgeStubFromNSStringRef ( ) { <nl> } <nl> CheckResults ( nsString . isEqual ( to : " Default string value no tagged pointer " as NSString ) , " Wrong value returned " ) <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubFromNSStringRef ( N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubFromNSStringRef ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubToNSStringRef ( ) { <nl> let b = BridgeTester ( ) <nl> func testObjectiveCBridgeStubToNSStringRef ( ) { <nl> b . test ( from : str ) <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubToNSStringRef ( N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubToNSStringRef ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubFromNSDateRef ( ) { <nl> let b = BridgeTester ( ) <nl> func testObjectiveCBridgeStubFromNSDateRef ( ) { <nl> let _ = bridgedEnd . timeIntervalSince ( bridgedBegin ) <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubFromNSDateRef ( N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubFromNSDateRef ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> public func testObjectiveCBridgeStubToNSDateRef ( ) { <nl> let b = BridgeTester ( ) <nl> public func testObjectiveCBridgeStubToNSDateRef ( ) { <nl> b . use ( d ) <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubToNSDateRef ( N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubToNSDateRef ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubNSDateRefAccess ( ) { <nl> var remainders = 0 . 0 <nl> func testObjectiveCBridgeStubNSDateRefAccess ( ) { <nl> remainders + = d . timeIntervalSinceReferenceDate . truncatingRemainder ( dividingBy : 10 ) <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubNSDateRefAccess ( N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubNSDateRefAccess ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubNSDateMutationRef ( ) { <nl> var d = NSDate ( ) <nl> func testObjectiveCBridgeStubNSDateMutationRef ( ) { <nl> d = d . addingTimeInterval ( 1 ) <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubNSDateMutationRef ( N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubNSDateMutationRef ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubURLAppendPathRef ( ) { <nl> let startUrl = URL ( string : " / " ) ! <nl> func testObjectiveCBridgeStubURLAppendPathRef ( ) { <nl> } <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubURLAppendPathRef ( N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubURLAppendPathRef ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> + # if _runtime ( _ObjC ) <nl> @ inline ( never ) <nl> func testObjectiveCBridgeStubNSDataAppend ( ) { <nl> let proto = NSMutableData ( ) <nl> func testObjectiveCBridgeStubNSDataAppend ( ) { <nl> } <nl> } <nl> } <nl> + # endif <nl> <nl> @ inline ( never ) <nl> public func run_ObjectiveCBridgeStubNSDataAppend ( N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> autoreleasepool { <nl> for _ in 0 . . < N { <nl> testObjectiveCBridgeStubNSDataAppend ( ) <nl> } <nl> } <nl> + # endif <nl> } <nl> mmm a / benchmark / single - source / StringTests . swift <nl> ppp b / benchmark / single - source / StringTests . swift <nl> public func run_StringWithCString ( _ N : Int ) { <nl> } <nl> } <nl> <nl> + / / FIXME ( string ) <nl> public func run_StringHasPrefix ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> let prefix = " prefix " <nl> let testString = " prefixedString " <nl> for _ in 0 . . < N { <nl> public func run_StringHasPrefix ( _ N : Int ) { <nl> } <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> + / / FIXME ( string ) <nl> public func run_StringHasSuffix ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> let suffix = " Suffixed " <nl> let testString = " StringSuffixed " <nl> for _ in 0 . . < N { <nl> public func run_StringHasSuffix ( _ N : Int ) { <nl> } <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> + / / FIXME ( string ) <nl> public func run_StringHasPrefixUnicode ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> let prefix = " ❄ ️ prefix " <nl> let testString = " ❄ ️ prefixedString " <nl> for _ in 0 . . < N { <nl> public func run_StringHasPrefixUnicode ( _ N : Int ) { <nl> } <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> + / / FIXME ( string ) <nl> public func run_StringHasSuffixUnicode ( _ N : Int ) { <nl> + # if _runtime ( _ObjC ) <nl> let suffix = " ❄ ️ Suffixed " <nl> let testString = " String ❄ ️ Suffixed " <nl> for _ in 0 . . < N { <nl> public func run_StringHasSuffixUnicode ( _ N : Int ) { <nl> } <nl> } <nl> } <nl> + # endif <nl> } <nl> <nl> @ inline ( never ) <nl> mmm a / benchmark / single - source / Walsh . swift <nl> ppp b / benchmark / single - source / Walsh . swift <nl> <nl> / / = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> <nl> import TestsUtils <nl> + # if os ( Linux ) <nl> + import Glibc <nl> + # else <nl> import Darwin <nl> + # endif <nl> <nl> func IsPowerOfTwo ( _ x : Int ) - > Bool { return ( x & ( x - 1 ) ) = = 0 } <nl> <nl> mmm a / benchmark / utils / DriverUtils . swift <nl> ppp b / benchmark / utils / DriverUtils . swift <nl> <nl> / / <nl> / / = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> <nl> + # if os ( Linux ) <nl> + import Glibc <nl> + # else <nl> import Darwin <nl> + # endif <nl> <nl> struct BenchResults { <nl> var delim : String = " , " <nl> func stopTrackingObjects ( _ : UnsafeMutableRawPointer ) - > Int <nl> <nl> # endif <nl> <nl> - class SampleRunner { <nl> + # if os ( Linux ) <nl> + class Timer { <nl> + typealias TimeT = timespec <nl> + func getTime ( ) - > TimeT { <nl> + var ticks = timespec ( tv_sec : 0 , tv_nsec : 0 ) <nl> + clock_gettime ( CLOCK_REALTIME , & ticks ) <nl> + return ticks <nl> + } <nl> + func diffTimeInNanoSeconds ( from start_ticks : TimeT , to end_ticks : TimeT ) - > UInt64 { <nl> + var elapsed_ticks = timespec ( tv_sec : 0 , tv_nsec : 0 ) <nl> + if end_ticks . tv_nsec - start_ticks . tv_nsec < 0 { <nl> + elapsed_ticks . tv_sec = end_ticks . tv_sec - start_ticks . tv_sec - 1 <nl> + elapsed_ticks . tv_nsec = end_ticks . tv_nsec - start_ticks . tv_nsec + 1000000000 <nl> + } else { <nl> + elapsed_ticks . tv_sec = end_ticks . tv_sec - start_ticks . tv_sec <nl> + elapsed_ticks . tv_nsec = end_ticks . tv_nsec - start_ticks . tv_nsec <nl> + } <nl> + return UInt64 ( elapsed_ticks . tv_sec ) * UInt64 ( 1000000000 ) + UInt64 ( elapsed_ticks . tv_nsec ) <nl> + } <nl> + } <nl> + # else <nl> + class Timer { <nl> + typealias TimeT = UInt64 <nl> var info = mach_timebase_info_data_t ( numer : 0 , denom : 0 ) <nl> init ( ) { <nl> mach_timebase_info ( & info ) <nl> } <nl> + func getTime ( ) - > TimeT { <nl> + return mach_absolute_time ( ) <nl> + } <nl> + func diffTimeInNanoSeconds ( from start_ticks : TimeT , to end_ticks : TimeT ) - > UInt64 { <nl> + let elapsed_ticks = end_ticks - start_ticks <nl> + return elapsed_ticks * UInt64 ( info . numer ) / UInt64 ( info . denom ) <nl> + } <nl> + } <nl> + # endif <nl> + <nl> + class SampleRunner { <nl> + let timer = Timer ( ) <nl> func run ( _ name : String , fn : ( Int ) - > Void , num_iters : UInt ) - > UInt64 { <nl> / / Start the timer . <nl> # if SWIFT_RUNTIME_ENABLE_LEAK_CHECKER <nl> var str = name <nl> startTrackingObjects ( UnsafeMutableRawPointer ( str . _core . startASCII ) ) <nl> # endif <nl> - let start_ticks = mach_absolute_time ( ) <nl> + let start_ticks = timer . getTime ( ) <nl> fn ( Int ( num_iters ) ) <nl> / / Stop the timer . <nl> - let end_ticks = mach_absolute_time ( ) <nl> + let end_ticks = timer . getTime ( ) <nl> # if SWIFT_RUNTIME_ENABLE_LEAK_CHECKER <nl> stopTrackingObjects ( UnsafeMutableRawPointer ( str . _core . startASCII ) ) <nl> # endif <nl> <nl> / / Compute the spent time and the scaling factor . <nl> - let elapsed_ticks = end_ticks - start_ticks <nl> - return elapsed_ticks * UInt64 ( info . numer ) / UInt64 ( info . denom ) <nl> + return timer . diffTimeInNanoSeconds ( from : start_ticks , to : end_ticks ) <nl> } <nl> } <nl> <nl> func runBench ( _ name : String , _ fn : ( Int ) - > Void , _ c : TestConfig ) - > BenchResu <nl> var elapsed_time : UInt64 = 0 <nl> if c . fixedNumIters = = 0 { <nl> elapsed_time = sampler . run ( name , fn : fn , num_iters : 1 ) <nl> - scale = UInt ( time_per_sample / elapsed_time ) <nl> + if elapsed_time > 0 { <nl> + scale = UInt ( time_per_sample / elapsed_time ) <nl> + } else { <nl> + if c . verbose { <nl> + print ( " Warning : elapsed time is 0 . This can be safely ignored if the body is empty . " ) <nl> + } <nl> + scale = 1 <nl> + } <nl> } else { <nl> / / Compute the scaling factor if a fixed c . fixedNumIters is not specified . <nl> scale = c . fixedNumIters <nl> mmm a / benchmark / utils / TestsUtils . swift <nl> ppp b / benchmark / utils / TestsUtils . swift <nl> <nl> / / <nl> / / = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl> <nl> + # if os ( Linux ) <nl> + import Glibc <nl> + # else <nl> import Darwin <nl> + # endif <nl> <nl> / / Linear function shift register . <nl> / / <nl>
Merge remote - tracking branch ' origin / master ' into master - next
apple/swift
8863a7eb9db2c0609c74ee373deeefe1e30cba1a
2017-03-08T20:13:41Z
mmm a / docs / api / power - save - blocker . md <nl> ppp b / docs / api / power - save - blocker . md <nl> The ` powerSaveBlocker ` module has the following methods : <nl> Starts preventing the system from entering lower - power mode . Returns an integer <nl> identifying the power save blocker . <nl> <nl> - * * Note : * * ` prevent - display - sleep ` has higher has precedence over <nl> + * * Note : * * ` prevent - display - sleep ` has higher precedence over <nl> ` prevent - app - suspension ` . Only the highest precedence type takes effect . In <nl> other words , ` prevent - display - sleep ` always takes precedence over <nl> ` prevent - app - suspension ` . <nl>
Merge pull request from dalabarge / patch - 1
electron/electron
83e3d059b440435327b55f1359e43bcb884ea88e
2016-05-12T02:29:36Z
mmm a / Kodi . xcodeproj / project . pbxproj <nl> ppp b / Kodi . xcodeproj / project . pbxproj <nl> <nl> 1DE0443515828F4B005DDB4D / * Exception . cpp in Sources * / = { isa = PBXBuildFile ; fileRef = 1DE0443315828F4B005DDB4D / * Exception . cpp * / ; } ; <nl> 228FA65D1C53F9D50023BBF0 / * InfoScanner . cpp in Sources * / = { isa = PBXBuildFile ; fileRef = 228FA65C1C53F9D50023BBF0 / * InfoScanner . cpp * / ; } ; <nl> 228FA65E1C53F9D50023BBF0 / * InfoScanner . cpp in Sources * / = { isa = PBXBuildFile ; fileRef = 228FA65C1C53F9D50023BBF0 / * InfoScanner . cpp * / ; } ; <nl> + 2A1D96BD1D437911009D8B25 / * GUIDialogPlayerProcessInfo . cpp in Sources * / = { isa = PBXBuildFile ; fileRef = 2A1D96BC1D437911009D8B25 / * GUIDialogPlayerProcessInfo . cpp * / ; } ; <nl> + 2A1D96BE1D437911009D8B25 / * GUIDialogPlayerProcessInfo . cpp in Sources * / = { isa = PBXBuildFile ; fileRef = 2A1D96BC1D437911009D8B25 / * GUIDialogPlayerProcessInfo . cpp * / ; } ; <nl> 2A7B2BDC1BD6F16600044BCD / * PVRSettings . cpp in Sources * / = { isa = PBXBuildFile ; fileRef = 2A7B2BDB1BD6F16600044BCD / * PVRSettings . cpp * / ; } ; <nl> 2A7B2BDD1BD6F16600044BCD / * PVRSettings . cpp in Sources * / = { isa = PBXBuildFile ; fileRef = 2A7B2BDB1BD6F16600044BCD / * PVRSettings . cpp * / ; } ; <nl> 2AB491701CDDF1920004C263 / * HTTPRequestHandlerUtils . cpp in Sources * / = { isa = PBXBuildFile ; fileRef = 2AB4916E1CDDF1920004C263 / * HTTPRequestHandlerUtils . cpp * / ; } ; <nl> <nl> 1DE0443415828F4B005DDB4D / * Exception . h * / = { isa = PBXFileReference ; fileEncoding = 4 ; lastKnownFileType = sourcecode . c . h ; name = Exception . h ; path = commons / Exception . h ; sourceTree = " < group > " ; } ; <nl> 228FA65B1C53F9D50023BBF0 / * InfoScanner . h * / = { isa = PBXFileReference ; fileEncoding = 4 ; lastKnownFileType = sourcecode . c . h ; path = InfoScanner . h ; sourceTree = " < group > " ; } ; <nl> 228FA65C1C53F9D50023BBF0 / * InfoScanner . cpp * / = { isa = PBXFileReference ; fileEncoding = 4 ; lastKnownFileType = sourcecode . cpp . cpp ; path = InfoScanner . cpp ; sourceTree = " < group > " ; } ; <nl> + 2A1D96BB1D4378CC009D8B25 / * GUIDialogPlayerProcessInfo . h * / = { isa = PBXFileReference ; fileEncoding = 4 ; lastKnownFileType = sourcecode . c . h ; path = GUIDialogPlayerProcessInfo . h ; sourceTree = " < group > " ; } ; <nl> + 2A1D96BC1D437911009D8B25 / * GUIDialogPlayerProcessInfo . cpp * / = { isa = PBXFileReference ; fileEncoding = 4 ; lastKnownFileType = sourcecode . cpp . cpp ; path = GUIDialogPlayerProcessInfo . cpp ; sourceTree = " < group > " ; } ; <nl> + 2A1D96BF1D437CDB009D8B25 / * WindowIDs . h * / = { isa = PBXFileReference ; lastKnownFileType = sourcecode . c . h ; path = WindowIDs . h ; sourceTree = " < group > " ; } ; <nl> 2A45E7A71D2D042B000E49FA / * types . json * / = { isa = PBXFileReference ; fileEncoding = 4 ; lastKnownFileType = text . json ; name = types . json ; path = schema / types . json ; sourceTree = " < group > " ; } ; <nl> 2A45E7A81D2D042B000E49FA / * version . txt * / = { isa = PBXFileReference ; fileEncoding = 4 ; lastKnownFileType = text ; name = version . txt ; path = schema / version . txt ; sourceTree = " < group > " ; } ; <nl> 2A4AAD251CEBC2060057AD44 / * DVDDemuxVobsub . h * / = { isa = PBXFileReference ; fileEncoding = 4 ; lastKnownFileType = sourcecode . c . h ; path = DVDDemuxVobsub . h ; sourceTree = " < group > " ; } ; <nl> <nl> 18B7C7501294222E009E7A26 / * Tween . h * / , <nl> 18B7C7A61294222E009E7A26 / * VisibleEffect . cpp * / , <nl> 18B7C7511294222E009E7A26 / * VisibleEffect . h * / , <nl> + 2A1D96BF1D437CDB009D8B25 / * WindowIDs . h * / , <nl> 18B7C7A71294222E009E7A26 / * XBTF . cpp * / , <nl> 18B7C7521294222E009E7A26 / * XBTF . h * / , <nl> 18B7C7A81294222E009E7A26 / * XBTFReader . cpp * / , <nl> <nl> 7C99B7941340723F00FC2B16 / * GUIDialogPlayEject . h * / , <nl> E38E17C80D25F9FA00618676 / * GUIDialogPlayerControls . cpp * / , <nl> E38E17C90D25F9FA00618676 / * GUIDialogPlayerControls . h * / , <nl> + 2A1D96BC1D437911009D8B25 / * GUIDialogPlayerProcessInfo . cpp * / , <nl> + 2A1D96BB1D4378CC009D8B25 / * GUIDialogPlayerProcessInfo . h * / , <nl> E38E17CE0D25F9FA00618676 / * GUIDialogProgress . cpp * / , <nl> E38E17CF0D25F9FA00618676 / * GUIDialogProgress . h * / , <nl> E38E17D00D25F9FA00618676 / * GUIDialogSeekBar . cpp * / , <nl> <nl> 7CCDAA82192756250074CF51 / * NptPosixDynamicLibraries . cpp in Sources * / , <nl> 7CCDAA85192756250074CF51 / * NptPosixEnvironment . cpp in Sources * / , <nl> 7CCDAA8B192756250074CF51 / * NptPosixNetwork . cpp in Sources * / , <nl> + 2A1D96BD1D437911009D8B25 / * GUIDialogPlayerProcessInfo . cpp in Sources * / , <nl> 7CCDAA8E192756250074CF51 / * NptPosixQueue . cpp in Sources * / , <nl> 7CCDAA97192756250074CF51 / * NptPosixSystem . cpp in Sources * / , <nl> 7CCDAAA0192756250074CF51 / * NptPosixThreads . cpp in Sources * / , <nl> <nl> E49912E3174E5DAD00741B6D / * GUIAction . cpp in Sources * / , <nl> E49912E4174E5DAD00741B6D / * GUIAudioManager . cpp in Sources * / , <nl> E49912E5174E5DAD00741B6D / * GUIBaseContainer . cpp in Sources * / , <nl> + 2A1D96BE1D437911009D8B25 / * GUIDialogPlayerProcessInfo . cpp in Sources * / , <nl> E49912E6174E5DAD00741B6D / * GUIBorderedImage . cpp in Sources * / , <nl> E49912E7174E5DAD00741B6D / * GUIButtonControl . cpp in Sources * / , <nl> E49912E9174E5DAD00741B6D / * GUIColorManager . cpp in Sources * / , <nl> mmm a / project / VS2010Express / XBMC . vcxproj <nl> ppp b / project / VS2010Express / XBMC . vcxproj <nl> copy " . . \ Win32BuildSetup \ dependencies \ python27 . dll " " $ ( TargetDir ) " < / Command > <nl> < ClCompile Include = " . . \ . . \ xbmc \ dialogs \ GUIDialogOK . cpp " / > <nl> < ClCompile Include = " . . \ . . \ xbmc \ dialogs \ GUIDialogPlayEject . cpp " / > <nl> < ClCompile Include = " . . \ . . \ xbmc \ dialogs \ GUIDialogPlayerControls . cpp " / > <nl> + < ClCompile Include = " . . \ . . \ xbmc \ dialogs \ GUIDialogPlayerProcessInfo . cpp " / > <nl> < ClCompile Include = " . . \ . . \ xbmc \ dialogs \ GUIDialogProgress . cpp " / > <nl> < ClCompile Include = " . . \ . . \ xbmc \ dialogs \ GUIDialogSeekBar . cpp " / > <nl> < ClCompile Include = " . . \ . . \ xbmc \ dialogs \ GUIDialogSelect . cpp " / > <nl> copy " . . \ Win32BuildSetup \ dependencies \ python27 . dll " " $ ( TargetDir ) " < / Command > <nl> < ClInclude Include = " . . \ . . \ xbmc \ DbUrl . h " / > <nl> < ClInclude Include = " . . \ . . \ xbmc \ dialogs \ GUIDialogKeyboardTouch . h " / > <nl> < ClInclude Include = " . . \ . . \ xbmc \ dialogs \ GUIDialogMediaFilter . h " / > <nl> + < ClInclude Include = " . . \ . . \ xbmc \ dialogs \ GUIDialogPlayerProcessInfo . h " / > <nl> < ClInclude Include = " . . \ . . \ xbmc \ dialogs \ GUIDialogSimpleMenu . h " / > <nl> < ClInclude Include = " . . \ . . \ xbmc \ epg \ GUIEPGGridContainerModel . h " / > <nl> < ClInclude Include = " . . \ . . \ xbmc \ events \ AddonEvent . h " / > <nl> mmm a / project / VS2010Express / XBMC . vcxproj . filters <nl> ppp b / project / VS2010Express / XBMC . vcxproj . filters <nl> <nl> < ClCompile Include = " . . \ . . \ xbmc \ cores \ AudioEngine \ Engines \ ActiveAE \ AudioDSPAddons \ ActiveAEDSP . cpp " > <nl> < Filter > cores \ AudioEngine \ Engines \ ActiveAE \ AudioDSPAddons < / Filter > <nl> < / ClCompile > <nl> + < ClCompile Include = " . . \ . . \ xbmc \ dialogs \ GUIDialogPlayerProcessInfo . cpp " > <nl> + < Filter > dialogs < / Filter > <nl> + < / ClCompile > <nl> < / ItemGroup > <nl> < ItemGroup > <nl> < ClCompile Include = " . . \ . . \ xbmc \ media \ MediaType . cpp " > <nl> <nl> < ClInclude Include = " . . \ . . \ xbmc \ cores \ AudioEngine \ Engines \ ActiveAE \ AudioDSPAddons \ ActiveAEDSP . h " > <nl> < Filter > cores \ AudioEngine \ Engines \ ActiveAE \ AudioDSPAddons < / Filter > <nl> < / ClInclude > <nl> + < ClInclude Include = " . . \ . . \ xbmc \ dialogs \ GUIDialogPlayerProcessInfo . h " > <nl> + < Filter > dialogs < / Filter > <nl> + < / ClInclude > <nl> < / ItemGroup > <nl> < ItemGroup > <nl> < ResourceCompile Include = " . . \ . . \ xbmc \ platform \ win32 \ XBMC_PC . rc " > <nl> mmm a / system / keymaps / customcontroller . Harmony . xml <nl> ppp b / system / keymaps / customcontroller . Harmony . xml <nl> <nl> < ! - - pwrToggle - - > < button id = " 166 " > ShutDown ( ) < / button > <nl> < ! - - Queue - - > < button id = " 162 " > Queue < / button > <nl> < ! - - Sleep - - > < button id = " 146 " > Suspend ( ) < / button > <nl> - < ! - - Red - - > < button id = " 183 " > CodecInfo < / button > <nl> + < ! - - Red - - > < button id = " 183 " > PlayerProcessInfo < / button > <nl> < ! - - Green - - > < button id = " 184 " > ActivateWindow ( Settings ) < / button > <nl> < ! - - Yellow - - > < button id = " 185 " > xbmc . ActivateWindow ( SystemSettings ) < / button > <nl> < ! - - Blue - - > < button id = " 186 " > ActivateWindow ( SystemInfo ) < / button > <nl> <nl> < MusicOSD > <nl> < customcontroller name = " Harmony " > <nl> < ! - - menu - - > < button id = " 106 " > Back < / button > <nl> - < ! - - Info - - > < button id = " 131 " > CodecInfo < / button > <nl> + < ! - - Info - - > < button id = " 131 " > PlayerProcessInfo < / button > <nl> < / customcontroller > <nl> < / MusicOSD > <nl> < AddonSettings > <nl> mmm a / system / keymaps / gamepad . xml <nl> ppp b / system / keymaps / gamepad . xml <nl> <nl> < A > Pause < / A > <nl> < B > Stop < / B > <nl> < Y > AspectRatio < / Y > <nl> - < black > CodecInfo < / black > <nl> + < black > PlayerProcessInfo < / black > <nl> < white > Info < / white > <nl> < back > Seek ( - 7 ) < / back > < ! - - Replaces smallstepback - - > <nl> < start > OSD < / start > <nl> <nl> < FullscreenInfo > <nl> < gamepad > <nl> < start > OSD < / start > <nl> - < black > CodecInfo < / black > <nl> + < black > PlayerProcessInfo < / black > <nl> < white > Back < / white > <nl> < leftanalogtrigger > AnalogRewind < / leftanalogtrigger > <nl> < rightanalogtrigger > AnalogFastForward < / rightanalogtrigger > <nl> <nl> < A > Pause < / A > <nl> < B > Stop < / B > <nl> < Y > ActivateWindow ( VisualisationPresetList ) < / Y > <nl> - < black > CodecInfo < / black > <nl> + < black > PlayerProcessInfo < / black > <nl> < white > Info < / white > <nl> < start > OSD < / start > <nl> < back > LockPreset < / back > <nl> <nl> < MusicOSD > <nl> < gamepad > <nl> < start > Back < / start > <nl> - < black > CodecInfo < / black > <nl> + < black > PlayerProcessInfo < / black > <nl> < white > Info < / white > <nl> < leftanalogtrigger > AnalogRewind < / leftanalogtrigger > <nl> < rightanalogtrigger > AnalogFastForward < / rightanalogtrigger > <nl> <nl> < VideoOSD > <nl> < gamepad > <nl> < start > Back < / start > <nl> - < black > CodecInfo < / black > <nl> + < black > PlayerProcessInfo < / black > <nl> < white > Info < / white > <nl> < leftanalogtrigger > AnalogRewind < / leftanalogtrigger > <nl> < rightanalogtrigger > AnalogFastForward < / rightanalogtrigger > <nl> <nl> < B > Stop < / B > <nl> < start > OSD < / start > <nl> < white > Info < / white > <nl> - < black > CodecInfo < / black > <nl> + < black > PlayerProcessInfo < / black > <nl> < leftanalogtrigger > AnalogRewind < / leftanalogtrigger > <nl> < rightanalogtrigger > AnalogFastForward < / rightanalogtrigger > <nl> < / gamepad > <nl> <nl> < X / > <nl> < Y > AspectRatio < / Y > <nl> < start > Back < / start > <nl> - < black > CodecInfo < / black > <nl> + < black > PlayerProcessInfo < / black > <nl> < white > Info < / white > <nl> < leftanalogtrigger > AnalogRewind < / leftanalogtrigger > <nl> < rightanalogtrigger > AnalogFastForward < / rightanalogtrigger > <nl> <nl> < X / > <nl> < Y > AspectRatio < / Y > <nl> < start > Back < / start > <nl> - < black > CodecInfo < / black > <nl> + < black > PlayerProcessInfo < / black > <nl> < white > Info < / white > <nl> < leftanalogtrigger > AnalogRewind < / leftanalogtrigger > <nl> < rightanalogtrigger > AnalogFastForward < / rightanalogtrigger > <nl> <nl> < dpadright > NextPicture < / dpadright > <nl> < / gamepad > <nl> < / PictureInfo > <nl> + < PlayerProcessInfo > <nl> + < gamepad > <nl> + < black > PlayerProcessInfo < / black > <nl> + < / gamepad > <nl> + < / PlayerProcessInfo > <nl> < / keymap > <nl> mmm a / system / keymaps / keyboard . xml <nl> ppp b / system / keymaps / keyboard . xml <nl> <nl> < m > OSD < / m > <nl> < menu > OSD < / menu > <nl> < i > Info < / i > <nl> - < o > CodecInfo < / o > <nl> + < o > PlayerProcessInfo < / o > <nl> < z > AspectRatio < / z > <nl> < zoom > AspectRatio < / zoom > <nl> < t > ShowSubtitles < / t > <nl> <nl> < f > FastForward < / f > <nl> < r > Rewind < / r > <nl> < period > StepForward < / period > <nl> - < o > CodecInfo < / o > <nl> + < o > PlayerProcessInfo < / o > <nl> < i > Back < / i > <nl> < d mod = " ctrl " > Back < / d > <nl> < m > OSD < / m > <nl> <nl> < right mod = " longpress " > FastForward < / right > <nl> < up > SkipNext < / up > <nl> < down > SkipPrevious < / down > <nl> - < o > CodecInfo < / o > <nl> + < o > PlayerProcessInfo < / o > <nl> < l > LockPreset < / l > <nl> < escape > FullScreen < / escape > <nl> < g > ActivateWindow ( PVROSDGuide ) < / g > <nl> <nl> < m > Back < / m > <nl> < menu > Back < / menu > <nl> < i > Info < / i > <nl> - < o > CodecInfo < / o > <nl> + < o > PlayerProcessInfo < / o > <nl> < p > ActivateWindow ( VisualisationPresetList ) < / p > <nl> < v > Addon . Default . OpenSettings ( xbmc . player . musicviz ) < / v > <nl> < text > Addon . Default . OpenSettings ( xbmc . player . musicviz ) < / text > <nl> <nl> < comma > SkipPrevious < / comma > <nl> < m > Back < / m > <nl> < i > Info < / i > <nl> - < o > CodecInfo < / o > <nl> + < o > PlayerProcessInfo < / o > <nl> < p > Back < / p > <nl> < v > Back < / v > <nl> < text > Back < / text > <nl> <nl> < eight > ZoomLevel8 < / eight > <nl> < nine > ZoomLevel9 < / nine > <nl> < i > Info < / i > <nl> - < o > CodecInfo < / o > <nl> + < o > PlayerProcessInfo < / o > <nl> < period > NextPicture < / period > <nl> < comma > PreviousPicture < / comma > <nl> < plus > ZoomIn < / plus > <nl> <nl> < menu > Back < / menu > <nl> < g mod = " ctrl " > Back < / g > < ! - - MCE Guide button - - > <nl> < i > Info < / i > <nl> - < o > CodecInfo < / o > <nl> + < o > PlayerProcessInfo < / o > <nl> < / keyboard > <nl> < / VideoOSD > <nl> < VideoMenu > <nl> <nl> < m > OSD < / m > <nl> < menu > OSD < / menu > <nl> < i > Info < / i > <nl> - < o > CodecInfo < / o > <nl> + < o > PlayerProcessInfo < / o > <nl> < z > AspectRatio < / z > <nl> < zoom > AspectRatio < / zoom > <nl> < t > ShowSubtitles < / t > <nl> <nl> < OSDVideoSettings > <nl> < keyboard > <nl> < i > Info < / i > <nl> - < o > CodecInfo < / o > <nl> + < o > PlayerProcessInfo < / o > <nl> < / keyboard > <nl> < / OSDVideoSettings > <nl> < OSDAudioSettings > <nl> < keyboard > <nl> < i > Info < / i > <nl> - < o > CodecInfo < / o > <nl> + < o > PlayerProcessInfo < / o > <nl> < / keyboard > <nl> < / OSDAudioSettings > <nl> < VideoBookmarks > <nl> <nl> < backspace mod = " longpress " > ActivateWindow ( Home ) < / backspace > <nl> < / keyboard > <nl> < / Weather > <nl> + < PlayerProcessInfo > <nl> + < keyboard > <nl> + < o > PlayerProcessInfo < / o > <nl> + < / keyboard > <nl> + < / PlayerProcessInfo > <nl> < / keymap > <nl> mmm a / system / keymaps / remote . xml <nl> ppp b / system / keymaps / remote . xml <nl> <nl> < rootmenu > OSD < / rootmenu > <nl> < start > OSD < / start > <nl> < select > OSD < / select > <nl> - < title > CodecInfo < / title > <nl> + < title > PlayerProcessInfo < / title > <nl> < info > Info < / info > <nl> < guide > ActivateWindow ( PVROSDGuide ) < / guide > <nl> < teletext > ActivateWindow ( Teletext ) < / teletext > <nl> <nl> < / VideoTimeSeek > <nl> < FullscreenInfo > <nl> < remote > <nl> - < title > CodecInfo < / title > <nl> + < title > PlayerProcessInfo < / title > <nl> < info > Back < / info > <nl> < menu > OSD < / menu > <nl> < contentsmenu > OSD < / contentsmenu > <nl> <nl> < pageplus > IncreaseRating < / pageplus > <nl> < pageminus > DecreaseRating < / pageminus > <nl> < back > Back < / back > <nl> - < title > CodecInfo < / title > <nl> + < title > PlayerProcessInfo < / title > <nl> < select > OSD < / select > <nl> < menu > OSD < / menu > <nl> < contentsmenu > OSD < / contentsmenu > <nl> <nl> < contentsmenu > Back < / contentsmenu > <nl> < rootmenu > Back < / rootmenu > <nl> < title > Info < / title > <nl> - < info > CodecInfo < / info > <nl> + < info > PlayerProcessInfo < / info > <nl> < / remote > <nl> < / MusicOSD > <nl> < VisualisationPresetList > <nl> <nl> < contentsmenu > OSD < / contentsmenu > <nl> < rootmenu > OSD < / rootmenu > <nl> < info > Info < / info > <nl> - < title > CodecInfo < / title > <nl> + < title > PlayerProcessInfo < / title > <nl> < zero > Number0 < / zero > <nl> < one > Number1 < / one > <nl> < two > Number2 < / two > <nl> <nl> < blue > Blue < / blue > <nl> < / remote > <nl> < / Addon > <nl> + < PlayerProcessInfo > <nl> + < remote > <nl> + < title > PlayerProcessInfo < / title > <nl> + < / remote > <nl> + < / PlayerProcessInfo > <nl> < / keymap > <nl> mmm a / xbmc / Application . cpp <nl> ppp b / xbmc / Application . cpp <nl> bool CApplication : : OnAction ( const CAction & action ) <nl> g_windowManager . ActivateWindow ( WINDOW_MUSIC_PLAYLIST ) ; <nl> return true ; <nl> } <nl> + if ( action . GetID ( ) = = ACTION_PLAYER_PROCESS_INFO ) <nl> + { <nl> + if ( m_pPlayer - > GetCurrentPlayer ( ) = = " VideoPlayer " & & <nl> + g_windowManager . GetActiveWindow ( ) ! = WINDOW_DIALOG_PLAYER_PROCESS_INFO ) <nl> + { <nl> + g_windowManager . ActivateWindow ( WINDOW_DIALOG_PLAYER_PROCESS_INFO ) ; <nl> + return true ; <nl> + } <nl> + } <nl> return false ; <nl> } <nl> <nl> mmm a / xbmc / dialogs / CMakeLists . txt <nl> ppp b / xbmc / dialogs / CMakeLists . txt <nl> set ( SOURCES GUIDialogBoxBase . cpp <nl> GUIDialogOK . cpp <nl> GUIDialogPlayEject . cpp <nl> GUIDialogPlayerControls . cpp <nl> + GUIDialogPlayerProcessInfo . cpp <nl> GUIDialogProgress . cpp <nl> GUIDialogSeekBar . cpp <nl> GUIDialogSelect . cpp <nl> set ( HEADERS GUIDialogBoxBase . h <nl> GUIDialogOK . h <nl> GUIDialogPlayEject . h <nl> GUIDialogPlayerControls . h <nl> + GUIDialogPlayerProcessInfo . h <nl> GUIDialogProgress . h <nl> GUIDialogSeekBar . h <nl> GUIDialogSelect . h <nl> new file mode 100644 <nl> index 000000000000 . . bf6b9a70f0b9 <nl> mmm / dev / null <nl> ppp b / xbmc / dialogs / GUIDialogPlayerProcessInfo . cpp <nl> <nl> + / * <nl> + * Copyright ( C ) 2005 - 2016 Team Kodi <nl> + * http : / / kodi . tv <nl> + * <nl> + * This Program is free software ; you can redistribute it and / or modify <nl> + * it under the terms of the GNU General Public License as published by <nl> + * the Free Software Foundation ; either version 2 , or ( at your option ) <nl> + * any later version . <nl> + * <nl> + * This Program is distributed in the hope that it will be useful , <nl> + * but WITHOUT ANY WARRANTY ; without even the implied warranty of <nl> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the <nl> + * GNU General Public License for more details . <nl> + * <nl> + * You should have received a copy of the GNU General Public License <nl> + * along with XBMC ; see the file COPYING . If not , see <nl> + * < http : / / www . gnu . org / licenses / > . <nl> + * <nl> + * / <nl> + <nl> + # include " GUIDialogPlayerProcessInfo . h " <nl> + <nl> + # include " input / Key . h " <nl> + <nl> + CGUIDialogPlayerProcessInfo : : CGUIDialogPlayerProcessInfo ( void ) <nl> + : CGUIDialog ( WINDOW_DIALOG_PLAYER_PROCESS_INFO , " DialogPlayerProcessInfo . xml " ) <nl> + { <nl> + m_loadType = KEEP_IN_MEMORY ; <nl> + } <nl> + <nl> + CGUIDialogPlayerProcessInfo : : ~ CGUIDialogPlayerProcessInfo ( void ) <nl> + { <nl> + } <nl> + <nl> + bool CGUIDialogPlayerProcessInfo : : OnAction ( const CAction & action ) <nl> + { <nl> + if ( action . GetID ( ) = = ACTION_PLAYER_PROCESS_INFO ) <nl> + { <nl> + Close ( ) ; <nl> + return true ; <nl> + } <nl> + return CGUIDialog : : OnAction ( action ) ; <nl> + } <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 000000000000 . . f5063d0ebb33 <nl> mmm / dev / null <nl> ppp b / xbmc / dialogs / GUIDialogPlayerProcessInfo . h <nl> <nl> + # pragma once <nl> + <nl> + / * <nl> + * Copyright ( C ) 2005 - 2016 Team Kodi <nl> + * http : / / kodi . tv <nl> + * <nl> + * This Program is free software ; you can redistribute it and / or modify <nl> + * it under the terms of the GNU General Public License as published by <nl> + * the Free Software Foundation ; either version 2 , or ( at your option ) <nl> + * any later version . <nl> + * <nl> + * This Program is distributed in the hope that it will be useful , <nl> + * but WITHOUT ANY WARRANTY ; without even the implied warranty of <nl> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the <nl> + * GNU General Public License for more details . <nl> + * <nl> + * You should have received a copy of the GNU General Public License <nl> + * along with XBMC ; see the file COPYING . If not , see <nl> + * < http : / / www . gnu . org / licenses / > . <nl> + * <nl> + * / <nl> + <nl> + # include " guilib / GUIDialog . h " <nl> + <nl> + class CGUIDialogPlayerProcessInfo : public CGUIDialog <nl> + { <nl> + public : <nl> + CGUIDialogPlayerProcessInfo ( void ) ; <nl> + virtual ~ CGUIDialogPlayerProcessInfo ( void ) ; <nl> + <nl> + bool OnAction ( const CAction & action ) override ; <nl> + } ; <nl> mmm a / xbmc / dialogs / Makefile <nl> ppp b / xbmc / dialogs / Makefile <nl> SRCS = GUIDialogBoxBase . cpp \ <nl> GUIDialogOK . cpp \ <nl> GUIDialogPlayEject . cpp \ <nl> GUIDialogPlayerControls . cpp \ <nl> + GUIDialogPlayerProcessInfo . cpp \ <nl> GUIDialogProgress . cpp \ <nl> GUIDialogSeekBar . cpp \ <nl> GUIDialogSelect . cpp \ <nl> mmm a / xbmc / guilib / GUIWindowManager . cpp <nl> ppp b / xbmc / guilib / GUIWindowManager . cpp <nl> <nl> # include " dialogs / GUIDialogButtonMenu . h " <nl> # include " dialogs / GUIDialogContextMenu . h " <nl> # include " dialogs / GUIDialogPlayerControls . h " <nl> + # include " dialogs / GUIDialogPlayerProcessInfo . h " <nl> # include " music / dialogs / GUIDialogSongInfo . h " <nl> # include " dialogs / GUIDialogSmartPlaylistEditor . h " <nl> # include " dialogs / GUIDialogSmartPlaylistRule . h " <nl> void CGUIWindowManager : : CreateWindows ( ) <nl> Add ( new CGUIDialogGamepad ) ; <nl> Add ( new CGUIDialogButtonMenu ) ; <nl> Add ( new CGUIDialogPlayerControls ) ; <nl> + Add ( new CGUIDialogPlayerProcessInfo ) ; <nl> Add ( new CGUIDialogSlider ) ; <nl> Add ( new CGUIDialogMusicOSD ) ; <nl> Add ( new CGUIDialogVisualisationPresetList ) ; <nl> bool CGUIWindowManager : : DestroyWindows ( ) <nl> Delete ( WINDOW_DIALOG_BUTTON_MENU ) ; <nl> Delete ( WINDOW_DIALOG_CONTEXT_MENU ) ; <nl> Delete ( WINDOW_DIALOG_PLAYER_CONTROLS ) ; <nl> + Delete ( WINDOW_DIALOG_PLAYER_PROCESS_INFO ) ; <nl> Delete ( WINDOW_DIALOG_MUSIC_OSD ) ; <nl> Delete ( WINDOW_DIALOG_VIS_PRESET_LIST ) ; <nl> Delete ( WINDOW_DIALOG_SELECT ) ; <nl> mmm a / xbmc / guilib / WindowIDs . h <nl> ppp b / xbmc / guilib / WindowIDs . h <nl> <nl> # define WINDOW_DIALOG_BUTTON_MENU 10111 <nl> # define WINDOW_DIALOG_PLAYER_CONTROLS 10114 <nl> # define WINDOW_DIALOG_SEEK_BAR 10115 <nl> + # define WINDOW_DIALOG_PLAYER_PROCESS_INFO 10116 <nl> # define WINDOW_DIALOG_MUSIC_OSD 10120 <nl> # define WINDOW_DIALOG_VIS_SETTINGS 10121 <nl> # define WINDOW_DIALOG_VIS_PRESET_LIST 10122 <nl> mmm a / xbmc / input / ButtonTranslator . cpp <nl> ppp b / xbmc / input / ButtonTranslator . cpp <nl> static const ActionMapping actions [ ] = <nl> { " nextsubtitle " , ACTION_NEXT_SUBTITLE } , <nl> { " cyclesubtitle " , ACTION_CYCLE_SUBTITLE } , <nl> { " codecinfo " , ACTION_SHOW_CODEC } , <nl> + { " playerprocessinfo " , ACTION_PLAYER_PROCESS_INFO } , <nl> { " nextpicture " , ACTION_NEXT_PICTURE } , <nl> { " previouspicture " , ACTION_PREV_PICTURE } , <nl> { " zoomout " , ACTION_ZOOM_OUT } , <nl> static const ActionMapping windows [ ] = <nl> { " gamepadinput " , WINDOW_DIALOG_GAMEPAD } , <nl> { " shutdownmenu " , WINDOW_DIALOG_BUTTON_MENU } , <nl> { " playercontrols " , WINDOW_DIALOG_PLAYER_CONTROLS } , <nl> + { " playerprocessinfo " , WINDOW_DIALOG_PLAYER_PROCESS_INFO } , <nl> { " seekbar " , WINDOW_DIALOG_SEEK_BAR } , <nl> { " musicosd " , WINDOW_DIALOG_MUSIC_OSD } , <nl> { " addonsettings " , WINDOW_DIALOG_ADDON_SETTINGS } , <nl> mmm a / xbmc / input / Key . h <nl> ppp b / xbmc / input / Key . h <nl> <nl> # define REMOTE_9 67 <nl> <nl> # define ACTION_PLAY 68 / / ! < Unused at the moment <nl> + # define ACTION_PLAYER_PROCESS_INFO 69 / / ! < show player process info ( video decoder , pixel format , pvr signal strength and the like <nl> # define ACTION_SMALL_STEP_BACK 76 / / ! < jumps a few seconds back during playback of movie . Can b used in videoFullScreen . xml window id = 2005 <nl> <nl> # define ACTION_PLAYER_FORWARD 77 / / ! < FF in current file played . global action , can be used anywhere <nl> mmm a / xbmc / interfaces / json - rpc / InputOperations . cpp <nl> ppp b / xbmc / interfaces / json - rpc / InputOperations . cpp <nl> JSONRPC_STATUS CInputOperations : : ShowCodec ( const std : : string & method , ITransport <nl> return SendAction ( ACTION_SHOW_CODEC ) ; <nl> } <nl> <nl> + JSONRPC_STATUS CInputOperations : : ShowPlayerProcessInfo ( const std : : string & method , ITransportLayer * transport , IClient * client , const CVariant & parameterObject , CVariant & result ) <nl> + { <nl> + return SendAction ( ACTION_PLAYER_PROCESS_INFO ) ; <nl> + } <nl> + <nl> JSONRPC_STATUS CInputOperations : : ShowOSD ( const std : : string & method , ITransportLayer * transport , IClient * client , const CVariant & parameterObject , CVariant & result ) <nl> { <nl> return SendAction ( ACTION_SHOW_OSD ) ; <nl> mmm a / xbmc / interfaces / json - rpc / InputOperations . h <nl> ppp b / xbmc / interfaces / json - rpc / InputOperations . h <nl> namespace JSONRPC <nl> static JSONRPC_STATUS Home ( const std : : string & method , ITransportLayer * transport , IClient * client , const CVariant & parameterObject , CVariant & result ) ; <nl> <nl> static JSONRPC_STATUS ShowCodec ( const std : : string & method , ITransportLayer * transport , IClient * client , const CVariant & parameterObject , CVariant & result ) ; <nl> + static JSONRPC_STATUS ShowPlayerProcessInfo ( const std : : string & method , ITransportLayer * transport , IClient * client , const CVariant & parameterObject , CVariant & result ) ; <nl> static JSONRPC_STATUS ShowOSD ( const std : : string & method , ITransportLayer * transport , IClient * client , const CVariant & parameterObject , CVariant & result ) ; <nl> <nl> static JSONRPC_STATUS SendAction ( int actionID , bool wakeScreensaver = true , bool waitResult = false ) ; <nl> mmm a / xbmc / interfaces / json - rpc / JSONServiceDescription . cpp <nl> ppp b / xbmc / interfaces / json - rpc / JSONServiceDescription . cpp <nl> JsonRpcMethodMap CJSONServiceDescription : : m_methodMaps [ ] = { <nl> { " Input . Home " , CInputOperations : : Home } , <nl> { " Input . ShowCodec " , CInputOperations : : ShowCodec } , <nl> { " Input . ShowOSD " , CInputOperations : : ShowOSD } , <nl> + { " Input . ShowPlayerProcessInfo " , CInputOperations : : ShowPlayerProcessInfo } , <nl> <nl> / / Application operations <nl> { " Application . GetProperties " , CApplicationOperations : : GetProperties } , <nl> mmm a / xbmc / interfaces / json - rpc / schema / methods . json <nl> ppp b / xbmc / interfaces / json - rpc / schema / methods . json <nl> <nl> " params " : [ ] , <nl> " returns " : " string " <nl> } , <nl> + " Input . ShowPlayerProcessInfo " : { <nl> + " type " : " method " , <nl> + " description " : " Show player process information of the playing item , like video decoder , pixel format , pvr signal strength , . . . " , <nl> + " transport " : " Response " , <nl> + " permission " : " Navigate " , <nl> + " params " : [ ] , <nl> + " returns " : " string " <nl> + } , <nl> " Application . GetProperties " : { <nl> " type " : " method " , <nl> " description " : " Retrieves the values of the given properties " , <nl> mmm a / xbmc / interfaces / json - rpc / schema / version . txt <nl> ppp b / xbmc / interfaces / json - rpc / schema / version . txt <nl> @ @ - 1 + 1 @ @ <nl> - 7 . 19 . 0 <nl> + 7 . 20 . 0 <nl>
Merge pull request from ksooo / playerprocessinfo
xbmc/xbmc
078e38c3a39dfe170bedf8d7e445497a53af91b5
2016-07-30T09:24:37Z
mmm a / src / torque / implementation - visitor . cc <nl> ppp b / src / torque / implementation - visitor . cc <nl> void ImplementationVisitor : : GenerateClassVerifiers ( <nl> <nl> const char * verifier_class = " TorqueGeneratedClassVerifiers " ; <nl> <nl> - h_contents < < " class " < < verifier_class < < " { \ n " ; <nl> + h_contents < < " class V8_EXPORT_PRIVATE " < < verifier_class < < " { \ n " ; <nl> h_contents < < " public : \ n " ; <nl> <nl> for ( const ClassType * type : TypeOracle : : GetClasses ( ) ) { <nl>
[ torque ] : Export methods for Torque @ export - ed C + + classes
v8/v8
6e11cfdc29b2df596bb3fab4c5f75567784843b3
2020-04-08T14:22:21Z
mmm a / src / lookup . cc <nl> ppp b / src / lookup . cc <nl> void LookupIterator : : TransitionToAccessorProperty ( <nl> Handle < Map > old_map ( receiver - > map ( ) , isolate_ ) ; <nl> Handle < Map > new_map = Map : : TransitionToAccessorProperty ( <nl> old_map , name_ , component , accessor , attributes ) ; <nl> + bool simple_transition = new_map - > GetBackPointer ( ) = = receiver - > map ( ) ; <nl> JSObject : : MigrateToMap ( receiver , new_map ) ; <nl> <nl> - ReloadPropertyInformation ( ) ; <nl> + if ( simple_transition ) { <nl> + int number = new_map - > LastAdded ( ) ; <nl> + number_ = static_cast < uint32_t > ( number ) ; <nl> + property_details_ = new_map - > GetLastDescriptorDetails ( ) ; <nl> + state_ = ACCESSOR ; <nl> + return ; <nl> + } <nl> <nl> + ReloadPropertyInformation ( ) ; <nl> if ( ! new_map - > is_dictionary_map ( ) ) return ; <nl> } <nl> <nl>
[ LookupIterator ] Add fast - path for reloading accessor property information
v8/v8
7011ddd6528ce75491228efc001790090a8bb947
2016-03-04T10:41:15Z
new file mode 100644 <nl> index 00000000000 . . e1091950742 <nl> mmm / dev / null <nl> ppp b / dbms / tests / performance / parallel_insert . xml <nl> <nl> + < test > <nl> + < type > loop < / type > <nl> + <nl> + < stop_conditions > <nl> + < any_of > <nl> + < iterations > 2 < / iterations > <nl> + < / any_of > <nl> + < / stop_conditions > <nl> + <nl> + < main_metric > <nl> + < rows_per_second / > <nl> + < / main_metric > <nl> + <nl> + < preconditions > <nl> + < table_exists > default . hits_10m_single < / table_exists > <nl> + < / preconditions > <nl> + <nl> + < create_query > CREATE TABLE hits2 AS hits_10m_single < / create_query > <nl> + <nl> + < query > INSERT INTO hits2 SELECT * FROM hits_10m_single < / query > <nl> + <nl> + < drop_query > DROP TABLE IF EXISTS hits2 < / drop_query > <nl> + < / test > <nl>
add performance test
ClickHouse/ClickHouse
f31d61e450f534659e2e75e6488d696a556b7634
2019-12-17T04:22:58Z
mmm a / xbmc / Application . cpp <nl> ppp b / xbmc / Application . cpp <nl> void CApplication : : Render ( ) <nl> <nl> # ifdef HAS_SDL <nl> SDL_mutexP ( m_frameMutex ) ; <nl> - if ( m_frameCount > 0 ) <nl> + if ( m_frameCount > 0 & & m_bPresentFrame ) <nl> m_frameCount - - ; <nl> SDL_mutexV ( m_frameMutex ) ; <nl> SDL_CondBroadcast ( m_frameCond ) ; <nl>
changed : if we timed out waiting for a frame , we should not be reducing framecount , could confuse rendererer
xbmc/xbmc
b0450e042a86e5cd0f036077d5acf636c09869ee
2009-12-02T00:06:03Z
mmm a / include / grpc + + / impl / codegen / config . h <nl> ppp b / include / grpc + + / impl / codegen / config . h <nl> <nl> / / nullptr was added in gcc 4 . 6 <nl> # if ( __GNUC__ * 100 + __GNUC_MINOR__ < 406 ) <nl> # define GRPC_CXX0X_NO_NULLPTR 1 <nl> + # define GRPC_CXX0X_LIMITED_TOSTRING 1 <nl> # endif <nl> / / final and override were added in gcc 4 . 7 <nl> # if ( __GNUC__ * 100 + __GNUC_MINOR__ < 407 ) <nl> namespace grpc { <nl> <nl> typedef GRPC_CUSTOM_STRING string ; <nl> <nl> + # ifdef GRPC_CXX0X_LIMITED_TOSTRING <nl> + inline grpc : : string to_string ( const int x ) { <nl> + return std : : to_string ( static_cast < const long long int > ( x ) ) ; <nl> + } <nl> + inline grpc : : string to_string ( const unsigned int x ) { <nl> + return std : : to_string ( static_cast < const long long unsigned int > ( x ) ) ; <nl> + } <nl> + # else <nl> + using std : : to_string ; <nl> + # endif <nl> + <nl> } / / namespace grpc <nl> <nl> # endif / / GRPCXX_IMPL_CODEGEN_CONFIG_H <nl> mmm a / test / cpp / end2end / async_end2end_test . cc <nl> ppp b / test / cpp / end2end / async_end2end_test . cc <nl> class AsyncEnd2endServerTryCancelTest : public AsyncEnd2endTest { <nl> <nl> / / Client sends 3 messages ( tags 3 , 4 and 5 ) <nl> for ( int tag_idx = 3 ; tag_idx < = 5 ; tag_idx + + ) { <nl> - send_request . set_message ( " Ping " + std : : to_string ( tag_idx ) ) ; <nl> + send_request . set_message ( " Ping " + grpc : : to_string ( tag_idx ) ) ; <nl> cli_stream - > Write ( send_request , tag ( tag_idx ) ) ; <nl> Verifier ( GetParam ( ) . disable_blocking ) <nl> . Expect ( tag_idx , true ) <nl> class AsyncEnd2endServerTryCancelTest : public AsyncEnd2endTest { <nl> / / Server sends three messages ( tags 3 , 4 and 5 ) <nl> / / But if want_done tag is true , we might also see tag 11 <nl> for ( int tag_idx = 3 ; tag_idx < = 5 ; tag_idx + + ) { <nl> - send_response . set_message ( " Pong " + std : : to_string ( tag_idx ) ) ; <nl> + send_response . set_message ( " Pong " + grpc : : to_string ( tag_idx ) ) ; <nl> srv_stream . Write ( send_response , tag ( tag_idx ) ) ; <nl> / / Note that we ' ll add something to the verifier and verify that <nl> / / something was seen , but it might be tag 11 and not what we <nl> mmm a / test / cpp / end2end / end2end_test . cc <nl> ppp b / test / cpp / end2end / end2end_test . cc <nl> class End2endServerTryCancelTest : public End2endTest { <nl> <nl> / / Send server_try_cancel value in the client metadata <nl> context . AddMetadata ( kServerTryCancelRequest , <nl> - std : : to_string ( server_try_cancel ) ) ; <nl> + grpc : : to_string ( server_try_cancel ) ) ; <nl> <nl> auto stream = stub_ - > RequestStream ( & context , & response ) ; <nl> <nl> class End2endServerTryCancelTest : public End2endTest { <nl> <nl> / / Send server_try_cancel in the client metadata <nl> context . AddMetadata ( kServerTryCancelRequest , <nl> - std : : to_string ( server_try_cancel ) ) ; <nl> + grpc : : to_string ( server_try_cancel ) ) ; <nl> <nl> request . set_message ( " hello " ) ; <nl> auto stream = stub_ - > ResponseStream ( & context , request ) ; <nl> class End2endServerTryCancelTest : public End2endTest { <nl> break ; <nl> } <nl> EXPECT_EQ ( response . message ( ) , <nl> - request . message ( ) + std : : to_string ( num_msgs_read ) ) ; <nl> + request . message ( ) + grpc : : to_string ( num_msgs_read ) ) ; <nl> num_msgs_read + + ; <nl> } <nl> gpr_log ( GPR_INFO , " Read % d messages " , num_msgs_read ) ; <nl> class End2endServerTryCancelTest : public End2endTest { <nl> <nl> / / Send server_try_cancel in the client metadata <nl> context . AddMetadata ( kServerTryCancelRequest , <nl> - std : : to_string ( server_try_cancel ) ) ; <nl> + grpc : : to_string ( server_try_cancel ) ) ; <nl> <nl> auto stream = stub_ - > BidiStream ( & context ) ; <nl> <nl> int num_msgs_read = 0 ; <nl> int num_msgs_sent = 0 ; <nl> while ( num_msgs_sent < num_messages ) { <nl> - request . set_message ( " hello " + std : : to_string ( num_msgs_sent ) ) ; <nl> + request . set_message ( " hello " + grpc : : to_string ( num_msgs_sent ) ) ; <nl> if ( ! stream - > Write ( request ) ) { <nl> break ; <nl> } <nl> TEST_P ( End2endServerTryCancelTest , RequestEchoServerCancel ) { <nl> ClientContext context ; <nl> <nl> context . AddMetadata ( kServerTryCancelRequest , <nl> - std : : to_string ( CANCEL_BEFORE_PROCESSING ) ) ; <nl> + grpc : : to_string ( CANCEL_BEFORE_PROCESSING ) ) ; <nl> Status s = stub_ - > Echo ( & context , request , & response ) ; <nl> EXPECT_FALSE ( s . ok ( ) ) ; <nl> EXPECT_EQ ( grpc : : StatusCode : : CANCELLED , s . error_code ( ) ) ; <nl> mmm a / test / cpp / end2end / test_service_impl . cc <nl> ppp b / test / cpp / end2end / test_service_impl . cc <nl> <nl> <nl> # include " test / cpp / end2end / test_service_impl . h " <nl> <nl> + # include < string > <nl> # include < thread > <nl> <nl> # include < grpc + + / security / credentials . h > <nl> Status TestServiceImpl : : ResponseStream ( ServerContext * context , <nl> } <nl> <nl> for ( int i = 0 ; i < kNumResponseStreamsMsgs ; i + + ) { <nl> - response . set_message ( request - > message ( ) + std : : to_string ( i ) ) ; <nl> + response . set_message ( request - > message ( ) + grpc : : to_string ( i ) ) ; <nl> writer - > Write ( response ) ; <nl> } <nl> <nl> mmm a / test / cpp / end2end / thread_stress_test . cc <nl> ppp b / test / cpp / end2end / thread_stress_test . cc <nl> class CommonStressTestSyncServer : public CommonStressTest < TestServiceImpl > { <nl> } ; <nl> <nl> class CommonStressTestAsyncServer <nl> - : public CommonStressTest < : : grpc : : testing : : EchoTestService : : AsyncService > { <nl> + : public CommonStressTest < : : grpc : : testing : : EchoTestService : : AsyncService > { <nl> public : <nl> void SetUp ( ) GRPC_OVERRIDE { <nl> shutting_down_ = false ; <nl> class AsyncClientEnd2endTest : public : : testing : : Test { <nl> for ( int i = 0 ; i < num_rpcs ; + + i ) { <nl> AsyncClientCall * call = new AsyncClientCall ; <nl> EchoRequest request ; <nl> - request . set_message ( " Hello : " + std : : to_string ( i ) ) ; <nl> + request . set_message ( " Hello : " + grpc : : to_string ( i ) ) ; <nl> call - > response_reader = <nl> common_ . GetStub ( ) - > AsyncEcho ( & call - > context , request , & cq_ ) ; <nl> call - > response_reader - > Finish ( & call - > response , & call - > status , <nl> mmm a / test / cpp / util / metrics_server . cc <nl> ppp b / test / cpp / util / metrics_server . cc <nl> std : : shared_ptr < QpsGauge > MetricsServiceImpl : : CreateQpsGauge ( <nl> std : : lock_guard < std : : mutex > lock ( mu_ ) ; <nl> <nl> std : : shared_ptr < QpsGauge > qps_gauge ( new QpsGauge ( ) ) ; <nl> - const auto p = qps_gauges_ . emplace ( name , qps_gauge ) ; <nl> + const auto p = qps_gauges_ . insert ( std : : make_pair ( name , qps_gauge ) ) ; <nl> <nl> / / p . first is an iterator pointing to < name , shared_ptr < QpsGauge > > pair . <nl> / / p . second is a boolean which is set to ' true ' if the QpsGauge is <nl> std : : shared_ptr < QpsGauge > MetricsServiceImpl : : CreateQpsGauge ( <nl> std : : unique_ptr < grpc : : Server > MetricsServiceImpl : : StartServer ( int port ) { <nl> gpr_log ( GPR_INFO , " Building metrics server . . " ) ; <nl> <nl> - const grpc : : string address = " 0 . 0 . 0 . 0 : " + std : : to_string ( port ) ; <nl> + const grpc : : string address = " 0 . 0 . 0 . 0 : " + grpc : : to_string ( port ) ; <nl> <nl> ServerBuilder builder ; <nl> builder . AddListeningPort ( address , grpc : : InsecureServerCredentials ( ) ) ; <nl> mmm a / test / cpp / util / test_credentials_provider . cc <nl> ppp b / test / cpp / util / test_credentials_provider . cc <nl> <nl> <nl> # include " test / core / end2end / data / ssl_test_data . h " <nl> <nl> + namespace grpc { <nl> namespace { <nl> <nl> - using grpc : : ChannelArguments ; <nl> - using grpc : : ChannelCredentials ; <nl> - using grpc : : InsecureChannelCredentials ; <nl> - using grpc : : InsecureServerCredentials ; <nl> - using grpc : : ServerCredentials ; <nl> - using grpc : : SslCredentialsOptions ; <nl> - using grpc : : SslServerCredentialsOptions ; <nl> using grpc : : testing : : CredentialTypeProvider ; <nl> <nl> / / Provide test credentials . Thread - safe . <nl> CredentialsProvider * GetProvider ( ) { <nl> <nl> } / / namespace <nl> <nl> - namespace grpc { <nl> namespace testing { <nl> <nl> void AddSecureType ( const grpc : : string & type , <nl>
Deal with to_string , proper usage of nullptr , and lack of map : : emplace
grpc/grpc
a63271c77f7ee4802761535f8c844f789328ad9f
2016-06-15T19:56:38Z
mmm a / code / sorting / src / bubble_sort / bubble_sort . py <nl> ppp b / code / sorting / src / bubble_sort / bubble_sort . py <nl> def bubble_sort ( alist ) : <nl> # insert the popped element to its right position in the list <nl> alist . insert ( i , a ) <nl> num_swaps + = 1 <nl> - # if the list is sorted , no more swaps are carried out <nl> + # if the list is sorted , no more swaps are carried out <nl> if num_swaps = = 0 : <nl> is_sorted = True <nl> return alist <nl>
Update code / sorting / src / bubble_sort / bubble_sort . py
OpenGenus/cosmos
446592aac0199bbeb3b278b6d9294b57f1dbf9c6
2020-03-28T18:10:48Z
mmm a / tools / shared . py <nl> ppp b / tools / shared . py <nl> def expand_response ( data ) : <nl> # Given a string with arithmetic and / or KB / MB size suffixes , such as " 1024 * 1024 " or " 32MB " , computes how many bytes that is and returns it as an integer . <nl> def expand_byte_size_suffixes ( value ) : <nl> value = value . lower ( ) . replace ( ' tb ' , ' * 1024 * 1024 * 1024 * 1024 ' ) . replace ( ' gb ' , ' * 1024 * 1024 * 1024 ' ) . replace ( ' mb ' , ' * 1024 * 1024 ' ) . replace ( ' kb ' , ' * 1024 ' ) . replace ( ' b ' , ' ' ) <nl> - return eval ( value ) <nl> + try : <nl> + return eval ( value ) <nl> + except : <nl> + raise Exception ( " Invalid byte size , valid suffixes : KB , MB , GB , TB " ) <nl> <nl> # Settings . A global singleton . Not pretty , but nicer than passing | , settings | everywhere <nl> <nl>
expand_byte_size_suffixes : clearer error message ( )
emscripten-core/emscripten
f962c9d0b0ac3361ec75ecae8ecdd7d089e078fc
2018-06-29T15:34:15Z
mmm a / tensorflow / workspace . bzl <nl> ppp b / tensorflow / workspace . bzl <nl> def tf_workspace ( path_prefix = " " , tf_repo_name = " " ) : <nl> tf_http_archive ( <nl> name = " com_google_absl " , <nl> build_file = clean_dep ( " / / third_party : com_google_absl . BUILD " ) , <nl> - sha256 = " 042badbfa529555ed63d57c39bf58410aa16e518ce98299599d85729feb25070 " , <nl> - strip_prefix = " abseil - cpp - a06c4a1d9093137b7217a5aaba8920d62e835dc0 " , <nl> + sha256 = " 28a6cb644dcebe7d3e0ee347706fec2e6975fae2bceb0add834c77140c7b6632 " , <nl> + strip_prefix = " abseil - cpp - f6ae816808cd913e0e2b3e2af14f328fa1071af0 " , <nl> urls = [ <nl> - " https : / / mirror . bazel . build / github . com / abseil / abseil - cpp / archive / a06c4a1d9093137b7217a5aaba8920d62e835dc0 . tar . gz " , <nl> - " https : / / github . com / abseil / abseil - cpp / archive / a06c4a1d9093137b7217a5aaba8920d62e835dc0 . tar . gz " , <nl> + " https : / / mirror . bazel . build / github . com / abseil / abseil - cpp / archive / f6ae816808cd913e0e2b3e2af14f328fa1071af0 . tar . gz " , <nl> + " https : / / github . com / abseil / abseil - cpp / archive / f6ae816808cd913e0e2b3e2af14f328fa1071af0 . tar . gz " , <nl> ] , <nl> ) <nl> <nl>
[ TF : XLA ] Bump open source abseil revision to f6ae816808cd913e0e2b3e2af14f328fa1071af0
tensorflow/tensorflow
a4602189610551435fbff5f99059450163d012de
2018-11-17T00:33:50Z
mmm a / api / xds_protocol . rst <nl> ppp b / api / xds_protocol . rst <nl> API flow <nl> For typical HTTP routing scenarios , the core resource types for the client ' s configuration are <nl> ` Listener ` , ` RouteConfiguration ` , ` Cluster ` , and ` ClusterLoadAssignment ` . Each ` Listener ` resource <nl> may point to a ` RouteConfiguration ` resource , which may point to one or more ` Cluster ` resources , <nl> - and each Cluster ` resource may point to a ` ClusterLoadAssignment ` resource . <nl> + and each ` Cluster ` resource may point to a ` ClusterLoadAssignment ` resource . <nl> <nl> Envoy fetches all ` Listener ` and ` Cluster ` resources at startup . It then fetches whatever <nl> ` RouteConfiguration ` and ` ClusterLoadAssignment ` resources that are required by the ` Listener ` and <nl>
fix xds proto doc ( )
envoyproxy/envoy
889e4e4dbaebe1ad6c70d773536fb1a6a5752838
2020-07-06T16:40:08Z
mmm a / include / swift / Sema / IDETypeChecking . h <nl> ppp b / include / swift / Sema / IDETypeChecking . h <nl> namespace swift { <nl> / / / \ returns true on convertible , false on not . <nl> bool isConvertibleTo ( Type T1 , Type T2 , DeclContext * DC ) ; <nl> <nl> - bool isEqual ( Type T1 , Type T2 , DeclContext * DC ) ; <nl> + bool canPossiblyEqual ( Type T1 , Type T2 , DeclContext & DC ) ; <nl> + <nl> + bool canPossiblyConvertTo ( Type T1 , Type T2 , DeclContext & DC ) ; <nl> <nl> Type lookUpTypeInContext ( DeclContext * DC , StringRef Name ) ; <nl> <nl> mmm a / lib / Sema / CSGen . cpp <nl> ppp b / lib / Sema / CSGen . cpp <nl> bool swift : : isExtensionApplied ( DeclContext & DC , Type BaseTy , <nl> return CS . solveSingle ( ) . hasValue ( ) ; <nl> } <nl> <nl> - bool swift : : isEqual ( Type T1 , Type T2 , DeclContext * DC ) { <nl> - auto & Ctx = DC - > getASTContext ( ) ; <nl> - TypeChecker * TC ; <nl> - / / We try to reuse the type checker associated with the ast context first . <nl> - if ( Ctx . getLazyResolver ( ) ) { <nl> - TC = static_cast < TypeChecker * > ( Ctx . getLazyResolver ( ) ) ; <nl> - } else { <nl> - DiagnosticEngine Diags ( Ctx . SourceMgr ) ; <nl> - TC = new TypeChecker ( Ctx , Diags ) ; <nl> + bool canPossiblySatisfy ( Type T1 , Type T2 , DeclContext & DC , ConstraintKind Kind ) { <nl> + ConstraintSystemOptions Options = ConstraintSystemFlags : : AllowFixes ; <nl> + std : : unique_ptr < TypeChecker > CreatedTC ; <nl> + / / If the current ast context has no type checker , create one for it . <nl> + auto * TC = static_cast < TypeChecker * > ( DC . getASTContext ( ) . getLazyResolver ( ) ) ; <nl> + if ( ! TC ) { <nl> + CreatedTC . reset ( new TypeChecker ( DC . getASTContext ( ) ) ) ; <nl> + TC = CreatedTC . get ( ) ; <nl> } <nl> - return TC - > typesSatisfyConstraint ( T1 , T2 , <nl> - constraints : : ConstraintKind : : Equal , DC ) ; <nl> + ConstraintSystem CS ( * TC , & DC , Options ) ; <nl> + std : : function < Type ( Type ) > Trans = [ & ] ( Type Base ) { <nl> + if ( Base - > getKind ( ) = = TypeKind : : Archetype ) { <nl> + return Type ( CS . createTypeVariable ( CS . getConstraintLocator ( nullptr ) , <nl> + TypeVariableOptions : : TVO_CanBindToLValue ) ) ; <nl> + } <nl> + return Base ; <nl> + } ; <nl> + T1 = T1 . transform ( Trans ) ; <nl> + T2 = T2 . transform ( Trans ) ; <nl> + CS . addConstraint ( Constraint : : create ( CS , Kind , T1 , T2 , DeclName ( ) , <nl> + CS . getConstraintLocator ( nullptr ) ) ) ; <nl> + SmallVector < Solution , 4 > Solutions ; <nl> + return ! CS . solve ( Solutions , FreeTypeVariableBinding : : Allow ) ; <nl> + } <nl> + <nl> + bool swift : : canPossiblyEqual ( Type T1 , Type T2 , DeclContext & DC ) { <nl> + return canPossiblySatisfy ( T1 , T2 , DC , ConstraintKind : : Equal ) ; <nl> + } <nl> + <nl> + bool swift : : canPossiblyConvertTo ( Type T1 , Type T2 , DeclContext & DC ) { <nl> + return canPossiblySatisfy ( T1 , T2 , DC , ConstraintKind : : Conversion ) ; <nl> } <nl>
IDETypeChecking : Add two utilities canPossiblyConvertTo ( ) and canPossiblyEqual ( ) .
apple/swift
2f41702dd91cdff5e45e871e49dc8ba51ff99d45
2016-03-02T20:28:02Z
mmm a / mk / paths . mk <nl> ppp b / mk / paths . mk <nl> <nl> # This makefile defines paths that are needed by the other Makefiles <nl> <nl> SCRIPTS_DIR : = $ ( TOP ) / scripts <nl> + BACKUP_SCRIPTS_DIR : = $ ( SCRIPTS_DIR ) / backup <nl> SOURCE_DIR : = $ ( TOP ) / src <nl> BUILD_ROOT_DIR : = $ ( TOP ) / build <nl> PACKAGING_DIR : = $ ( TOP ) / packaging <nl> GDB_FUNCTIONS_NAME : = rethinkdb - gdb . py <nl> PACKAGE_NAME : = $ ( VANILLA_PACKAGE_NAME ) <nl> SERVER_UNIT_TEST_NAME : = $ ( SERVER_EXEC_NAME ) - unittest <nl> <nl> + EXPORT_SCRIPT_NAME : = rethinkdb - export <nl> + IMPORT_SCRIPT_NAME : = rethinkdb - import <nl> + DUMP_SCRIPT_NAME : = rethinkdb - dump <nl> + RESTORE_SCRIPT_NAME : = rethinkdb - restore <nl> + <nl> + EXPORT_SCRIPT_SRC : = $ ( BACKUP_SCRIPTS_DIR ) / $ ( EXPORT_SCRIPT_NAME ) <nl> + IMPORT_SCRIPT_SRC : = $ ( BACKUP_SCRIPTS_DIR ) / $ ( IMPORT_SCRIPT_NAME ) <nl> + DUMP_SCRIPT_SRC : = $ ( BACKUP_SCRIPTS_DIR ) / $ ( DUMP_SCRIPT_NAME ) <nl> + RESTORE_SCRIPT_SRC : = $ ( BACKUP_SCRIPTS_DIR ) / $ ( RESTORE_SCRIPT_NAME ) <nl> + <nl> EXTERNAL_DIR : = $ ( TOP ) / external <nl> EXTERNAL_DIR_ABS : = $ ( abspath $ ( EXTERNAL_DIR ) ) <nl> COLONIZE_SCRIPT : = $ ( EXTERNAL_DIR ) / colonist / colonize . sh <nl> similarity index 100 % <nl> rename from scripts / backup / rethinkdb_dump . py <nl> rename to scripts / backup / rethinkdb - dump <nl> similarity index 100 % <nl> rename from scripts / backup / rethinkdb_export . py <nl> rename to scripts / backup / rethinkdb - export <nl> similarity index 100 % <nl> rename from scripts / backup / rethinkdb_import . py <nl> rename to scripts / backup / rethinkdb - import <nl> similarity index 100 % <nl> rename from scripts / backup / rethinkdb_restore . py <nl> rename to scripts / backup / rethinkdb - restore <nl> mmm a / src / build . mk <nl> ppp b / src / build . mk <nl> SERVER_NOMAIN_OBJS : = $ ( QL2_PROTO_OBJS ) $ ( patsubst $ ( SOURCE_DIR ) / % . cc , $ ( OBJ_DIR ) <nl> <nl> SERVER_UNIT_TEST_OBJS : = $ ( SERVER_NOMAIN_OBJS ) $ ( OBJ_DIR ) / unittest / main . o <nl> <nl> + BACKUP_SCRIPTS : = $ ( EXPORT_SCRIPT_NAME ) $ ( IMPORT_SCRIPT_NAME ) $ ( DUMP_SCRIPT_NAME ) $ ( RESTORE_SCRIPT_NAME ) <nl> + <nl> # # # # # Version number handling <nl> <nl> RT_CXXFLAGS + = - DRETHINKDB_VERSION = \ " $ ( RETHINKDB_VERSION ) \ " <nl> rpc / semilattice / joins / macros . hpp rpc / serialize_macros . hpp rpc / mailbox / typed . hpp : <nl> . PHONY : rethinkdb <nl> rethinkdb : $ ( BUILD_DIR ) / $ ( SERVER_EXEC_NAME ) <nl> <nl> - $ ( BUILD_DIR ) / $ ( SERVER_EXEC_NAME ) : $ ( SERVER_EXEC_OBJS ) | $ ( BUILD_DIR ) / . $ ( TCMALLOC_DEP ) $ ( PROTOBUF_DEP ) <nl> + $ ( EXPORT_SCRIPT_NAME ) : $ ( EXPORT_SCRIPT_SRC ) <nl> + $ P CP $ @ <nl> + cp $ ( EXPORT_SCRIPT_SRC ) $ ( BUILD_DIR ) <nl> + <nl> + $ ( IMPORT_SCRIPT_NAME ) : $ ( IMPORT_SCRIPT_SRC ) <nl> + $ P CP $ @ <nl> + cp $ ( IMPORT_SCRIPT_SRC ) $ ( BUILD_DIR ) <nl> + <nl> + $ ( DUMP_SCRIPT_NAME ) : $ ( DUMP_SCRIPT_SRC ) <nl> + $ P CP $ @ <nl> + cp $ ( DUMP_SCRIPT_SRC ) $ ( BUILD_DIR ) <nl> + <nl> + $ ( RESTORE_SCRIPT_NAME ) : $ ( RESTORE_SCRIPT_SRC ) <nl> + $ P CP $ @ <nl> + cp $ ( RESTORE_SCRIPT_SRC ) $ ( BUILD_DIR ) <nl> + <nl> + $ ( BUILD_DIR ) / $ ( SERVER_EXEC_NAME ) : $ ( SERVER_EXEC_OBJS ) $ ( BACKUP_SCRIPTS ) | $ ( BUILD_DIR ) / . $ ( TCMALLOC_DEP ) $ ( PROTOBUF_DEP ) <nl> $ P LD $ @ <nl> $ ( RT_CXX ) $ ( SERVER_EXEC_OBJS ) $ ( RT_LDFLAGS ) - o $ ( BUILD_DIR ) / $ ( SERVER_EXEC_NAME ) $ ( LD_OUTPUT_FILTER ) <nl> ifeq ( $ ( NO_TCMALLOC ) , 0 ) # if we link to tcmalloc <nl> mmm a / src / clustering / administration / main / command_line . cc <nl> ppp b / src / clustering / administration / main / command_line . cc <nl> <nl> # include " utils . hpp " <nl> # include " help . hpp " <nl> <nl> - # define RETHINKDB_EXPORT_SCRIPT " . . / scripts / backup / rethinkdb_export . py " <nl> - # define RETHINKDB_IMPORT_SCRIPT " . . / scripts / backup / rethinkdb_import . py " <nl> - # define RETHINKDB_DUMP_SCRIPT " . . / scripts / backup / rethinkdb_dump . py " <nl> - # define RETHINKDB_RESTORE_SCRIPT " . . / scripts / backup / rethinkdb_restore . py " <nl> + / / Needed for determining rehtinkdb binary path below <nl> + # if defined ( __MACH__ ) <nl> + # include < mach - o / dyld . h > <nl> + # elif defined ( __FreeBSD_version ) <nl> + # include < sys / sysctl . h > <nl> + # endif <nl> + <nl> + # define RETHINKDB_EXPORT_SCRIPT " rethinkdb - export " <nl> + # define RETHINKDB_IMPORT_SCRIPT " rethinkdb - import " <nl> + # define RETHINKDB_DUMP_SCRIPT " rethinkdb - dump " <nl> + # define RETHINKDB_RESTORE_SCRIPT " rethinkdb - restore " <nl> <nl> MUST_USE bool numwrite ( const char * path , int number ) { <nl> / / Try to figure out what this function does . <nl> MUST_USE bool split_db_table ( const std : : string & db_table , std : : string * db_name_o <nl> return true ; <nl> } <nl> <nl> - int main_rethinkdb_export ( int , char * argv [ ] ) { <nl> - int res = execvp ( RETHINKDB_EXPORT_SCRIPT , argv + 2 ) ; <nl> + # if defined ( __linux__ ) <nl> + bool get_rethinkdb_exe_directory ( std : : string * result ) { <nl> + char buffer [ PATH_MAX + 1 ] ; <nl> + ssize_t len = readlink ( " / proc / self / exe " , buffer , PATH_MAX ) ; <nl> + <nl> + if ( len = = - 1 ) { <nl> + fprintf ( stderr , " Error when determining rethinkdb directory : % s \ n " , <nl> + errno_string ( errno ) . c_str ( ) ) ; <nl> + return false ; <nl> + } <nl> + <nl> + buffer [ len ] = ' \ 0 ' ; <nl> + <nl> + char * dir = dirname ( buffer ) ; <nl> + if ( dir = = NULL ) { <nl> + fprintf ( stderr , " Error when determining rethinkdb directory : % s \ n " , <nl> + errno_string ( errno ) . c_str ( ) ) ; <nl> + return false ; <nl> + } <nl> + <nl> + result - > assign ( dir ) ; <nl> + return true ; <nl> + } <nl> + # elif defined ( __MACH__ ) <nl> + bool get_rethinkdb_exe_directory ( std : : string * result ) { <nl> + uint32_t buffer_size = PATH_MAX ; <nl> + scoped_array_t < char > buffer ; <nl> + buffer . init ( buffer_size ) ; <nl> + <nl> + if ( _NSGetExecutablePath ( buffer . data ( ) , & buffer_size ) = = - 1 ) { <nl> + buffer . reset ( ) ; <nl> + buffer . init ( buffer_size ) ; <nl> + <nl> + if ( _NSGetExecutablePath ( buffer . data ( ) , & buffer_size ) = = - 1 ) { <nl> + fprintf ( stderr , " Error when determining rethinkdb directory \ n " ) ; <nl> + return false ; <nl> + } <nl> + } <nl> + <nl> + char * dir = dirname ( buffer ) ; <nl> + if ( dir = = NULL ) { <nl> + fprintf ( stderr , " Error when determining rethinkdb directory : % s \ n " , <nl> + errno_string ( errno ) . c_str ( ) ) ; <nl> + return false ; <nl> + } <nl> + <nl> + result - > assign ( dir ) ; <nl> + return true ; <nl> + } <nl> + # elif defined ( __FreeBSD_version ) <nl> + bool get_rethinkdb_exe_directory ( std : : string * result ) { <nl> + / / Taken from http : / / stackoverflow . com / questions / 799679 , completely untested <nl> + int mib [ 4 ] ; <nl> + mib [ 0 ] = CTL_KERN ; <nl> + mib [ 1 ] = KERN_PROC ; <nl> + mib [ 2 ] = KERN_PROC_PATHNAME ; <nl> + mib [ 3 ] = - 1 ; <nl> + char buf [ 2048 ] ; <nl> + size_t cb = sizeof ( buf ) ; <nl> + int res = sysctl ( mib , 4 , buf , & cb , NULL , 0 ) ; <nl> + <nl> + if ( res ! = 0 ) { <nl> + fprintf ( stderr , " Error when determining rethinkdb directory : % s \ n " , <nl> + errno_string ( res ) . c_str ( ) ) ; <nl> + return false ; <nl> + } <nl> + <nl> + char * dir = dirname ( buffer ) ; <nl> + if ( dir = = NULL ) { <nl> + fprintf ( stderr , " Error when determining rethinkdb directory : % s \ n " , <nl> + errno_string ( errno ) . c_str ( ) ) ; <nl> + return false ; <nl> + } <nl> + <nl> + result - > assign ( dir ) ; <nl> + return true ; <nl> + } <nl> + # else <nl> + # error " no implementation for ' get_rethinkdb_exe_directory ( ) ' available for this operating system " <nl> + # endif <nl> + <nl> + void run_backup_script ( const std : : string & script_name , char * const arguments [ ] ) { <nl> + std : : string exe_dir ; <nl> + <nl> + if ( ! get_rethinkdb_exe_directory ( & exe_dir ) ) { <nl> + return ; <nl> + } <nl> + <nl> + / / First attempt to launch the script from the same directory as us <nl> + int res = execvp ( ( exe_dir + " / " + script_name ) . c_str ( ) , arguments ) ; <nl> + <nl> + / / TODO : anything we can do with / want to do with res ? maybe a warning ? <nl> + <nl> + / / If that fails , try to run it from the system path <nl> + res = execvp ( script_name . c_str ( ) , arguments ) ; <nl> if ( res = = - 1 ) { <nl> - fprintf ( stderr , " Error when launching export script : % s \ n " , errno_string ( errno ) . c_str ( ) ) ; <nl> + fprintf ( stderr , " Error when launching % s : % s \ n " , <nl> + script_name . c_str ( ) , <nl> + errno_string ( errno ) . c_str ( ) ) ; <nl> } <nl> + } <nl> + <nl> + int main_rethinkdb_export ( int , char * argv [ ] ) { <nl> + run_backup_script ( RETHINKDB_EXPORT_SCRIPT , argv + 1 ) ; <nl> return EXIT_FAILURE ; <nl> } <nl> <nl> int main_rethinkdb_import ( int , char * argv [ ] ) { <nl> - int res = execvp ( RETHINKDB_IMPORT_SCRIPT , argv + 2 ) ; <nl> - if ( res = = - 1 ) { <nl> - fprintf ( stderr , " Error when launching import script : % s \ n " , errno_string ( errno ) . c_str ( ) ) ; <nl> - } <nl> + run_backup_script ( RETHINKDB_IMPORT_SCRIPT , argv + 1 ) ; <nl> return EXIT_FAILURE ; <nl> } <nl> <nl> int main_rethinkdb_dump ( int , char * argv [ ] ) { <nl> - int res = execvp ( RETHINKDB_DUMP_SCRIPT , argv + 2 ) ; <nl> - if ( res = = - 1 ) { <nl> - fprintf ( stderr , " Error when launching dump script : % s \ n " , errno_string ( errno ) . c_str ( ) ) ; <nl> - } <nl> + run_backup_script ( RETHINKDB_DUMP_SCRIPT , argv + 1 ) ; <nl> return EXIT_FAILURE ; <nl> } <nl> <nl> int main_rethinkdb_restore ( int , char * argv [ ] ) { <nl> - int res = execvp ( RETHINKDB_RESTORE_SCRIPT , argv + 2 ) ; <nl> - if ( res = = - 1 ) { <nl> - fprintf ( stderr , " Error when launching restore script : % s \ n " , errno_string ( errno ) . c_str ( ) ) ; <nl> - } <nl> + run_backup_script ( RETHINKDB_RESTORE_SCRIPT , argv + 1 ) ; <nl> return EXIT_FAILURE ; <nl> } <nl> <nl> void help_rethinkdb_proxy ( ) { <nl> } <nl> <nl> void help_rethinkdb_export ( ) { <nl> - int res = execlp ( RETHINKDB_EXPORT_SCRIPT , " - - help " , static_cast < char * > ( NULL ) ) ; <nl> - if ( res = = - 1 ) { <nl> - fprintf ( stderr , " Error when launching export script : % s \ n " , errno_string ( errno ) . c_str ( ) ) ; <nl> - } <nl> + char help_arg [ ] = " - - help " ; <nl> + char dummy_arg [ ] = RETHINKDB_EXPORT_SCRIPT ; <nl> + char * args [ 3 ] = { dummy_arg , help_arg , NULL } ; <nl> + run_backup_script ( RETHINKDB_EXPORT_SCRIPT , args ) ; <nl> } <nl> <nl> void help_rethinkdb_import ( ) { <nl> - int res = execlp ( RETHINKDB_IMPORT_SCRIPT , " - - help " , static_cast < char * > ( NULL ) ) ; <nl> - if ( res = = - 1 ) { <nl> - fprintf ( stderr , " Error when launching import script : % s \ n " , errno_string ( errno ) . c_str ( ) ) ; <nl> - } <nl> + char help_arg [ ] = " - - help " ; <nl> + char dummy_arg [ ] = RETHINKDB_IMPORT_SCRIPT ; <nl> + char * args [ 3 ] = { dummy_arg , help_arg , NULL } ; <nl> + run_backup_script ( RETHINKDB_IMPORT_SCRIPT , args ) ; <nl> } <nl> <nl> void help_rethinkdb_dump ( ) { <nl> - int res = execlp ( RETHINKDB_DUMP_SCRIPT , " - - help " , static_cast < char * > ( NULL ) ) ; <nl> - if ( res = = - 1 ) { <nl> - fprintf ( stderr , " Error when launching dump script : % s \ n " , errno_string ( errno ) . c_str ( ) ) ; <nl> - } <nl> + char help_arg [ ] = " - - help " ; <nl> + char dummy_arg [ ] = RETHINKDB_DUMP_SCRIPT ; <nl> + char * args [ 3 ] = { dummy_arg , help_arg , NULL } ; <nl> + run_backup_script ( RETHINKDB_DUMP_SCRIPT , args ) ; <nl> } <nl> <nl> void help_rethinkdb_restore ( ) { <nl> - int res = execlp ( RETHINKDB_RESTORE_SCRIPT , " - - help " , static_cast < char * > ( NULL ) ) ; <nl> - if ( res = = - 1 ) { <nl> - fprintf ( stderr , " Error when launching restore script : % s \ n " , errno_string ( errno ) . c_str ( ) ) ; <nl> - } <nl> + char help_arg [ ] = " - - help " ; <nl> + char dummy_arg [ ] = RETHINKDB_RESTORE_SCRIPT ; <nl> + char * args [ 3 ] = { dummy_arg , help_arg , NULL } ; <nl> + run_backup_script ( RETHINKDB_RESTORE_SCRIPT , args ) ; <nl> } <nl>
renaming backup scripts , added them to the build process , and fixed some problems with the rethinkdb exe calling them
rethinkdb/rethinkdb
14cdf4fd6357a49f2c9089ec78c0d0fa7d9afd53
2013-06-21T02:47:28Z
mmm a / lib / Sema / SemaDecl . cpp <nl> ppp b / lib / Sema / SemaDecl . cpp <nl> void SemaDecl : : handleEndOfTranslationUnit ( TranslationUnitDecl * TUD , <nl> / / Strip out stuff that got replaced . <nl> UnresolvedTypeList . resize ( Next ) ; <nl> <nl> - TUD - > UnresolvedTypesForParser = <nl> - S . Context . AllocateCopy ( llvm : : ArrayRef < TypeAliasDecl * > ( UnresolvedTypeList ) ) ; <nl> + TUD - > UnresolvedTypesForParser = S . Context . AllocateCopy ( UnresolvedTypeList ) ; <nl> } <nl> <nl> / / = = = mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - = = = / / <nl>
use new AllocateCopy method .
apple/swift
4bf1feaeecb541aa9b5541c81a2e119f7d6816db
2011-04-29T07:19:29Z
mmm a / src / parsing / scanner . cc <nl> ppp b / src / parsing / scanner . cc <nl> uc32 Scanner : : ScanOctalEscape ( uc32 c , int length ) { <nl> } <nl> <nl> <nl> - const int kMaxAscii = 127 ; <nl> - <nl> - <nl> Token : : Value Scanner : : ScanString ( ) { <nl> uc32 quote = c0_ ; <nl> Advance < false , false > ( ) ; / / consume quote <nl> Token : : Value Scanner : : ScanString ( ) { <nl> Advance < false , false > ( ) ; <nl> return Token : : STRING ; <nl> } <nl> - uc32 c = c0_ ; <nl> + char c = static_cast < char > ( c0_ ) ; <nl> if ( c = = ' \ \ ' ) break ; <nl> Advance < false , false > ( ) ; <nl> AddLiteralChar ( c ) ; <nl> Token : : Value Scanner : : ScanIdentifierOrKeyword ( ) { <nl> LiteralScope literal ( this ) ; <nl> if ( IsInRange ( c0_ , ' a ' , ' z ' ) ) { <nl> do { <nl> - uc32 first_char = c0_ ; <nl> + char first_char = static_cast < char > ( c0_ ) ; <nl> Advance < false , false > ( ) ; <nl> AddLiteralChar ( first_char ) ; <nl> } while ( IsInRange ( c0_ , ' a ' , ' z ' ) ) ; <nl> Token : : Value Scanner : : ScanIdentifierOrKeyword ( ) { <nl> if ( IsDecimalDigit ( c0_ ) | | IsInRange ( c0_ , ' A ' , ' Z ' ) | | c0_ = = ' _ ' | | <nl> c0_ = = ' $ ' ) { <nl> / / Identifier starting with lowercase . <nl> - uc32 first_char = c0_ ; <nl> + char first_char = static_cast < char > ( c0_ ) ; <nl> Advance < false , false > ( ) ; <nl> AddLiteralChar ( first_char ) ; <nl> while ( IsAsciiIdentifier ( c0_ ) ) { <nl> - uc32 first_char = c0_ ; <nl> + char first_char = static_cast < char > ( c0_ ) ; <nl> Advance < false , false > ( ) ; <nl> AddLiteralChar ( first_char ) ; <nl> } <nl> Token : : Value Scanner : : ScanIdentifierOrKeyword ( ) { <nl> HandleLeadSurrogate ( ) ; <nl> } else if ( IsInRange ( c0_ , ' A ' , ' Z ' ) | | c0_ = = ' _ ' | | c0_ = = ' $ ' ) { <nl> do { <nl> - uc32 first_char = c0_ ; <nl> + char first_char = static_cast < char > ( c0_ ) ; <nl> Advance < false , false > ( ) ; <nl> AddLiteralChar ( first_char ) ; <nl> } while ( IsAsciiIdentifier ( c0_ ) ) ; <nl> mmm a / src / parsing / scanner . h <nl> ppp b / src / parsing / scanner . h <nl> class DuplicateFinder { <nl> char number_buffer_ [ kBufferSize ] ; <nl> } ; <nl> <nl> - <nl> / / mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - <nl> / / LiteralBuffer - Collector of chars of literals . <nl> <nl> + const int kMaxAscii = 127 ; <nl> + <nl> class LiteralBuffer { <nl> public : <nl> LiteralBuffer ( ) : is_one_byte_ ( true ) , position_ ( 0 ) , backing_store_ ( ) { } <nl> <nl> ~ LiteralBuffer ( ) { backing_store_ . Dispose ( ) ; } <nl> <nl> - INLINE ( void AddChar ( uint32_t code_unit ) ) { <nl> + INLINE ( void AddChar ( char code_unit ) ) { <nl> + if ( position_ > = backing_store_ . length ( ) ) ExpandBuffer ( ) ; <nl> + DCHECK ( is_one_byte_ ) ; <nl> + DCHECK ( 0 < = code_unit & & code_unit < = kMaxAscii ) ; <nl> + backing_store_ [ position_ ] = static_cast < byte > ( code_unit ) ; <nl> + position_ + = kOneByteSize ; <nl> + return ; <nl> + } <nl> + <nl> + INLINE ( void AddChar ( uc32 code_unit ) ) { <nl> if ( position_ > = backing_store_ . length ( ) ) ExpandBuffer ( ) ; <nl> if ( is_one_byte_ ) { <nl> if ( code_unit < = unibrow : : Latin1 : : kMaxChar ) { <nl> class Scanner { <nl> next_ . literal_chars - > AddChar ( c ) ; <nl> } <nl> <nl> + INLINE ( void AddLiteralChar ( char c ) ) { <nl> + DCHECK_NOT_NULL ( next_ . literal_chars ) ; <nl> + next_ . literal_chars - > AddChar ( c ) ; <nl> + } <nl> + <nl> INLINE ( void AddRawLiteralChar ( uc32 c ) ) { <nl> DCHECK_NOT_NULL ( next_ . raw_literal_chars ) ; <nl> next_ . raw_literal_chars - > AddChar ( c ) ; <nl>
Speed up adding literal chars when the buffer is known to be one - byte
v8/v8
e7de678a2c108949856e3005fe62f43d49aad7ec
2016-06-09T15:14:55Z
mmm a / dbms / src / Storages / StorageMergeTree . cpp <nl> ppp b / dbms / src / Storages / StorageMergeTree . cpp <nl> void StorageMergeTree : : mergeParts ( std : : vector < DataPartPtr > parts ) <nl> Yandex : : DateLUTSingleton & date_lut = Yandex : : DateLUTSingleton : : instance ( ) ; <nl> <nl> StorageMergeTree : : DataPartPtr new_data_part = new DataPart ( * this ) ; <nl> - new_data_part - > left_date = std : : min ( parts . front ( ) - > left_date , parts . back ( ) - > left_date ) ; <nl> - new_data_part - > right_date = std : : max ( parts . front ( ) - > right_date , parts . back ( ) - > right_date ) ; <nl> + new_data_part - > left_date = std : : numeric_limits < UInt16 > : : max ( ) ; <nl> + new_data_part - > right_date = std : : numeric_limits < UInt16 > : : min ( ) ; <nl> new_data_part - > left = parts . front ( ) - > left ; <nl> new_data_part - > right = parts . back ( ) - > right ; <nl> new_data_part - > level = 0 ; <nl> for ( size_t i = 0 ; i < parts . size ( ) ; + + i ) <nl> { <nl> new_data_part - > level = std : : max ( new_data_part - > level , parts [ i ] - > level ) ; <nl> + new_data_part - > left_date = std : : min ( new_data_part - > left_date , parts [ i ] - > left_date ) ; <nl> + new_data_part - > right_date = std : : max ( new_data_part - > right_date , parts [ i ] - > right_date ) ; <nl> } <nl> + + new_data_part - > level ; <nl> new_data_part - > name = getPartName ( <nl>
Merge
ClickHouse/ClickHouse
35184afdc2f2d52285502064ba6bfa4e2e34b61b
2012-12-06T12:51:15Z
mmm a / tools / js - optimizer . js <nl> ppp b / tools / js - optimizer . js <nl> function registerize ( ast ) { <nl> var ELIMINATION_SAFE_NODES = set ( ' var ' , ' assign ' , ' call ' , ' if ' , ' toplevel ' ) ; <nl> var NODES_WITHOUT_ELIMINATION_SIDE_EFFECTS = set ( ' name ' , ' num ' , ' string ' , ' binary ' , ' sub ' , ' unary - prefix ' ) ; <nl> var IGNORABLE_ELIMINATOR_SCAN_NODES = set ( ' num ' , ' toplevel ' , ' string ' , ' break ' , ' continue ' , ' dot ' , ' return ' ) ; / / dot can only be STRING_TABLE . * <nl> + var ABORTING_ELIMINATOR_SCAN_NODES = set ( ' new ' , ' object ' , ' function ' , ' defun ' , ' switch ' , ' for ' ) ; / / we could handle some of these , TODO <nl> <nl> function eliminate ( ast ) { <nl> / / Find variables that have a single use , and if they can be eliminated , do so <nl> function eliminate ( ast ) { <nl> traverseInOrder ( node [ 1 ] ) ; <nl> traverseInOrder ( node [ 2 ] ) ; <nl> traverseInOrder ( node [ 3 ] ) ; <nl> - } else if ( type = = ' new ' | | type = = ' object ' ) { <nl> - tracked = { } ; / / we could do this , but nevermind <nl> + } else if ( type in ABORTING_ELIMINATOR_SCAN_NODES ) { <nl> + tracked = { } ; <nl> abort = true ; <nl> } else { <nl> - throw ' unfamiliar eliminator scan node : ' + JSON . stringify ( node ) ; <nl> + printErr ( ' unfamiliar eliminator scan node : ' + JSON . stringify ( node ) ) ; <nl> } <nl> } <nl> traverseInOrder ( node ) ; <nl>
handle more nodes in eliminator scanning
emscripten-core/emscripten
cb9b1db479868532192c764739b0578de68b91e4
2012-10-27T16:54:09Z
mmm a / python / mxnet / model . py <nl> ppp b / python / mxnet / model . py <nl> def fit ( self , X , y = None , eval_data = None , eval_metric = ' acc ' , <nl> rescale_grad = ( 1 . 0 / batch_size ) , <nl> * * ( self . kwargs ) ) <nl> elif isinstance ( self . optimizer , opt . Optimizer ) : <nl> + if not optimizer . idx2name : <nl> + optimizer . idx2name = param_idx2name . copy ( ) <nl> optimizer = self . optimizer <nl> <nl> # do training <nl> mmm a / python / mxnet / module / module . py <nl> ppp b / python / mxnet / module / module . py <nl> def init_optimizer ( self , kvstore = ' local ' , optimizer = ' sgd ' , <nl> batch_size * = kvstore . num_workers <nl> rescale_grad = 1 . 0 / batch_size <nl> <nl> + idx2name = { } <nl> + if update_on_kvstore : <nl> + idx2name . update ( enumerate ( self . _exec_group . param_names ) ) <nl> + else : <nl> + for k in range ( len ( self . _context ) ) : <nl> + idx2name . update ( { i * len ( self . _context ) + k : n <nl> + for i , n in enumerate ( self . _exec_group . param_names ) } ) <nl> if isinstance ( optimizer , str ) : <nl> - idx2name = { } <nl> - if update_on_kvstore : <nl> - idx2name . update ( enumerate ( self . _exec_group . param_names ) ) <nl> - else : <nl> - for k in range ( len ( self . _context ) ) : <nl> - idx2name . update ( { i * len ( self . _context ) + k : n <nl> - for i , n in enumerate ( self . _exec_group . param_names ) } ) <nl> optimizer_params = dict ( optimizer_params ) <nl> if ' rescale_grad ' not in optimizer_params : <nl> optimizer_params [ ' rescale_grad ' ] = rescale_grad <nl> def init_optimizer ( self , kvstore = ' local ' , optimizer = ' sgd ' , <nl> " is not normalized to 1 . 0 / batch_size / num_workers ( % s vs . % s ) . " % ( <nl> optimizer . rescale_grad , rescale_grad ) + <nl> " Is this intended ? " , stacklevel = 2 ) <nl> + if not optimizer . idx2name : <nl> + optimizer . idx2name = idx2name . copy ( ) <nl> <nl> self . _optimizer = optimizer <nl> self . _kvstore = kvstore <nl> mmm a / tests / python / unittest / test_module . py <nl> ppp b / tests / python / unittest / test_module . py <nl> def test_module_update_no_pragram ( ) : <nl> mod . update ( ) <nl> assert ( mod . get_outputs ( ) [ 0 ] . shape = = data_shape ) <nl> <nl> + <nl> + def test_module_init_optimizer ( ) : <nl> + def get_module_idx2name ( mod ) : <nl> + idx2name = { } <nl> + idx2name . update ( enumerate ( mod . _exec_group . param_names ) ) <nl> + return idx2name <nl> + <nl> + data = mx . sym . Variable ( ' data ' ) <nl> + sym = mx . sym . FullyConnected ( data , num_hidden = 20 , name = ' fc ' ) <nl> + batch_size = 8 <nl> + opt_params = { ' learning_rate ' : 1 , ' rescale_grad ' : 1 . 0 / batch_size } <nl> + <nl> + # Pass an optimizer str <nl> + mod1 = mx . mod . Module ( sym , ( ' data ' , ) , None , context = mx . cpu ( 0 ) ) <nl> + mod1 . bind ( data_shapes = [ ( ' data ' , ( batch_size , 20 ) ) ] ) <nl> + mod1 . init_params ( ) <nl> + mod1 . init_optimizer ( optimizer = ' sgd ' , optimizer_params = opt_params ) <nl> + assert mod1 . _optimizer . idx2name = = get_module_idx2name ( mod1 ) <nl> + <nl> + # Pass an Optimizer object <nl> + mod2 = mx . mod . Module ( sym , ( ' data ' , ) , None , context = mx . cpu ( 0 ) ) <nl> + mod2 . bind ( data_shapes = [ ( ' data ' , ( batch_size , 20 ) ) ] ) <nl> + mod2 . init_params ( ) <nl> + opt = mx . optimizer . SGD ( * * opt_params ) <nl> + mod2 . init_optimizer ( optimizer = opt ) <nl> + assert mod2 . _optimizer . idx2name = = get_module_idx2name ( mod2 ) <nl> + <nl> + <nl> if __name__ = = ' __main__ ' : <nl> import nose <nl> nose . runmodule ( ) <nl>
Set idx2name for Optimizer object ( )
apache/incubator-mxnet
391a1be260eb75b437ebced6743647b8e9df7802
2019-04-19T06:04:46Z
mmm a / cocos / scripting / js - bindings / auto / api / jsb_cocos2dx_physics3d_auto_api . js <nl> ppp b / cocos / scripting / js - bindings / auto / api / jsb_cocos2dx_physics3d_auto_api . js <nl> removeAllPhysics3DConstraints : function ( <nl> { <nl> } , <nl> <nl> - / * * <nl> - * @ method rayCast <nl> - * @ param { vec3_object } arg0 <nl> - * @ param { vec3_object } arg1 <nl> - * @ param { cc . Physics3DWorld : : HitResult } arg2 <nl> - * @ return { bool } <nl> - * / <nl> - rayCast : function ( <nl> - vec3 , <nl> - vec3 , <nl> - hitresult <nl> - ) <nl> - { <nl> - return false ; <nl> - } , <nl> - <nl> / * * <nl> * @ method getGravity <nl> * @ return { vec3_object } <nl> mmm a / cocos / scripting / js - bindings / auto / jsb_cocos2dx_3d_auto . hpp <nl> ppp b / cocos / scripting / js - bindings / auto / jsb_cocos2dx_3d_auto . hpp <nl> <nl> # include " jsapi . h " <nl> # include " jsfriendapi . h " <nl> <nl> - <nl> extern JSClass * jsb_cocos2d_Animation3D_class ; <nl> extern JSObject * jsb_cocos2d_Animation3D_prototype ; <nl> <nl> mmm a / cocos / scripting / js - bindings / auto / jsb_cocos2dx_3d_extension_auto . hpp <nl> ppp b / cocos / scripting / js - bindings / auto / jsb_cocos2dx_3d_extension_auto . hpp <nl> <nl> # include " jsapi . h " <nl> # include " jsfriendapi . h " <nl> <nl> - <nl> extern JSClass * jsb_cocos2d_ParticleSystem3D_class ; <nl> extern JSObject * jsb_cocos2d_ParticleSystem3D_prototype ; <nl> <nl> mmm a / cocos / scripting / js - bindings / auto / jsb_cocos2dx_auto . hpp <nl> ppp b / cocos / scripting / js - bindings / auto / jsb_cocos2dx_auto . hpp <nl> <nl> # include " jsapi . h " <nl> # include " jsfriendapi . h " <nl> <nl> - <nl> extern JSClass * jsb_cocos2d_Texture2D_class ; <nl> extern JSObject * jsb_cocos2d_Texture2D_prototype ; <nl> <nl> mmm a / cocos / scripting / js - bindings / auto / jsb_cocos2dx_builder_auto . hpp <nl> ppp b / cocos / scripting / js - bindings / auto / jsb_cocos2dx_builder_auto . hpp <nl> <nl> # include " jsapi . h " <nl> # include " jsfriendapi . h " <nl> <nl> - <nl> extern JSClass * jsb_cocosbuilder_CCBAnimationManager_class ; <nl> extern JSObject * jsb_cocosbuilder_CCBAnimationManager_prototype ; <nl> <nl> mmm a / cocos / scripting / js - bindings / auto / jsb_cocos2dx_experimental_video_auto . hpp <nl> ppp b / cocos / scripting / js - bindings / auto / jsb_cocos2dx_experimental_video_auto . hpp <nl> <nl> # include " jsapi . h " <nl> # include " jsfriendapi . h " <nl> <nl> - <nl> extern JSClass * jsb_cocos2d_experimental_ui_VideoPlayer_class ; <nl> extern JSObject * jsb_cocos2d_experimental_ui_VideoPlayer_prototype ; <nl> <nl> mmm a / cocos / scripting / js - bindings / auto / jsb_cocos2dx_experimental_webView_auto . hpp <nl> ppp b / cocos / scripting / js - bindings / auto / jsb_cocos2dx_experimental_webView_auto . hpp <nl> <nl> # include " jsapi . h " <nl> # include " jsfriendapi . h " <nl> <nl> - <nl> extern JSClass * jsb_cocos2d_experimental_ui_WebView_class ; <nl> extern JSObject * jsb_cocos2d_experimental_ui_WebView_prototype ; <nl> <nl> mmm a / cocos / scripting / js - bindings / auto / jsb_cocos2dx_extension_auto . hpp <nl> ppp b / cocos / scripting / js - bindings / auto / jsb_cocos2dx_extension_auto . hpp <nl> <nl> # include " jsapi . h " <nl> # include " jsfriendapi . h " <nl> <nl> - <nl> extern JSClass * jsb_cocos2d_extension_Control_class ; <nl> extern JSObject * jsb_cocos2d_extension_Control_prototype ; <nl> <nl> mmm a / cocos / scripting / js - bindings / auto / jsb_cocos2dx_physics3d_auto . cpp <nl> ppp b / cocos / scripting / js - bindings / auto / jsb_cocos2dx_physics3d_auto . cpp <nl> bool js_cocos2dx_physics3d_Physics3DWorld_removeAllPhysics3DConstraints ( JSContex <nl> JS_ReportError ( cx , " js_cocos2dx_physics3d_Physics3DWorld_removeAllPhysics3DConstraints : wrong number of arguments : % d , was expecting % d " , argc , 0 ) ; <nl> return false ; <nl> } <nl> - bool js_cocos2dx_physics3d_Physics3DWorld_rayCast ( JSContext * cx , uint32_t argc , jsval * vp ) <nl> - { <nl> - JS : : CallArgs args = JS : : CallArgsFromVp ( argc , vp ) ; <nl> - bool ok = true ; <nl> - JS : : RootedObject obj ( cx , args . thisv ( ) . toObjectOrNull ( ) ) ; <nl> - js_proxy_t * proxy = jsb_get_js_proxy ( obj ) ; <nl> - cocos2d : : Physics3DWorld * cobj = ( cocos2d : : Physics3DWorld * ) ( proxy ? proxy - > ptr : NULL ) ; <nl> - JSB_PRECONDITION2 ( cobj , cx , false , " js_cocos2dx_physics3d_Physics3DWorld_rayCast : Invalid Native Object " ) ; <nl> - if ( argc = = 3 ) { <nl> - cocos2d : : Vec3 arg0 ; <nl> - cocos2d : : Vec3 arg1 ; <nl> - cocos2d : : Physics3DWorld : : HitResult * arg2 ; <nl> - ok & = jsval_to_vector3 ( cx , args . get ( 0 ) , & arg0 ) ; <nl> - ok & = jsval_to_vector3 ( cx , args . get ( 1 ) , & arg1 ) ; <nl> - # pragma warning NO CONVERSION TO NATIVE FOR HitResult * <nl> - ok = false ; <nl> - JSB_PRECONDITION2 ( ok , cx , false , " js_cocos2dx_physics3d_Physics3DWorld_rayCast : Error processing arguments " ) ; <nl> - bool ret = cobj - > rayCast ( arg0 , arg1 , arg2 ) ; <nl> - jsval jsret = JSVAL_NULL ; <nl> - jsret = BOOLEAN_TO_JSVAL ( ret ) ; <nl> - args . rval ( ) . set ( jsret ) ; <nl> - return true ; <nl> - } <nl> - <nl> - JS_ReportError ( cx , " js_cocos2dx_physics3d_Physics3DWorld_rayCast : wrong number of arguments : % d , was expecting % d " , argc , 3 ) ; <nl> - return false ; <nl> - } <nl> bool js_cocos2dx_physics3d_Physics3DWorld_getGravity ( JSContext * cx , uint32_t argc , jsval * vp ) <nl> { <nl> JS : : CallArgs args = JS : : CallArgsFromVp ( argc , vp ) ; <nl> void js_register_cocos2dx_physics3d_Physics3DWorld ( JSContext * cx , JS : : HandleObje <nl> JS_FN ( " removeAllPhysics3DObjects " , js_cocos2dx_physics3d_Physics3DWorld_removeAllPhysics3DObjects , 0 , JSPROP_PERMANENT | JSPROP_ENUMERATE ) , <nl> JS_FN ( " isDebugDrawEnabled " , js_cocos2dx_physics3d_Physics3DWorld_isDebugDrawEnabled , 0 , JSPROP_PERMANENT | JSPROP_ENUMERATE ) , <nl> JS_FN ( " removeAllPhysics3DConstraints " , js_cocos2dx_physics3d_Physics3DWorld_removeAllPhysics3DConstraints , 0 , JSPROP_PERMANENT | JSPROP_ENUMERATE ) , <nl> - JS_FN ( " rayCast " , js_cocos2dx_physics3d_Physics3DWorld_rayCast , 3 , JSPROP_PERMANENT | JSPROP_ENUMERATE ) , <nl> JS_FN ( " getGravity " , js_cocos2dx_physics3d_Physics3DWorld_getGravity , 0 , JSPROP_PERMANENT | JSPROP_ENUMERATE ) , <nl> JS_FN ( " removePhysics3DConstraint " , js_cocos2dx_physics3d_Physics3DWorld_removePhysics3DConstraint , 1 , JSPROP_PERMANENT | JSPROP_ENUMERATE ) , <nl> JS_FN ( " addPhysics3DObject " , js_cocos2dx_physics3d_Physics3DWorld_addPhysics3DObject , 1 , JSPROP_PERMANENT | JSPROP_ENUMERATE ) , <nl> mmm a / cocos / scripting / js - bindings / auto / jsb_cocos2dx_physics3d_auto . hpp <nl> ppp b / cocos / scripting / js - bindings / auto / jsb_cocos2dx_physics3d_auto . hpp <nl> <nl> # include " jsapi . h " <nl> # include " jsfriendapi . h " <nl> <nl> - <nl> extern JSClass * jsb_cocos2d_Physics3DShape_class ; <nl> extern JSObject * jsb_cocos2d_Physics3DShape_prototype ; <nl> <nl> bool js_cocos2dx_physics3d_Physics3DWorld_init ( JSContext * cx , uint32_t argc , jsv <nl> bool js_cocos2dx_physics3d_Physics3DWorld_removeAllPhysics3DObjects ( JSContext * cx , uint32_t argc , jsval * vp ) ; <nl> bool js_cocos2dx_physics3d_Physics3DWorld_isDebugDrawEnabled ( JSContext * cx , uint32_t argc , jsval * vp ) ; <nl> bool js_cocos2dx_physics3d_Physics3DWorld_removeAllPhysics3DConstraints ( JSContext * cx , uint32_t argc , jsval * vp ) ; <nl> - bool js_cocos2dx_physics3d_Physics3DWorld_rayCast ( JSContext * cx , uint32_t argc , jsval * vp ) ; <nl> bool js_cocos2dx_physics3d_Physics3DWorld_getGravity ( JSContext * cx , uint32_t argc , jsval * vp ) ; <nl> bool js_cocos2dx_physics3d_Physics3DWorld_removePhysics3DConstraint ( JSContext * cx , uint32_t argc , jsval * vp ) ; <nl> bool js_cocos2dx_physics3d_Physics3DWorld_addPhysics3DObject ( JSContext * cx , uint32_t argc , jsval * vp ) ; <nl> mmm a / cocos / scripting / js - bindings / auto / jsb_cocos2dx_spine_auto . hpp <nl> ppp b / cocos / scripting / js - bindings / auto / jsb_cocos2dx_spine_auto . hpp <nl> <nl> # include " jsapi . h " <nl> # include " jsfriendapi . h " <nl> <nl> - <nl> extern JSClass * jsb_spine_SkeletonRenderer_class ; <nl> extern JSObject * jsb_spine_SkeletonRenderer_prototype ; <nl> <nl> mmm a / cocos / scripting / js - bindings / auto / jsb_cocos2dx_studio_auto . hpp <nl> ppp b / cocos / scripting / js - bindings / auto / jsb_cocos2dx_studio_auto . hpp <nl> <nl> # include " jsapi . h " <nl> # include " jsfriendapi . h " <nl> <nl> - <nl> extern JSClass * jsb_cocostudio_ActionObject_class ; <nl> extern JSObject * jsb_cocostudio_ActionObject_prototype ; <nl> <nl> mmm a / cocos / scripting / js - bindings / auto / jsb_cocos2dx_ui_auto . hpp <nl> ppp b / cocos / scripting / js - bindings / auto / jsb_cocos2dx_ui_auto . hpp <nl> <nl> # include " jsapi . h " <nl> # include " jsfriendapi . h " <nl> <nl> - <nl> extern JSClass * jsb_cocos2d_ui_LayoutParameter_class ; <nl> extern JSObject * jsb_cocos2d_ui_LayoutParameter_prototype ; <nl> <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_3d_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_3d_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_3d_Animation3D_initWithFile ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_audioengine_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_audioengine_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_audioengine_AudioProfile_constructor ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_Ref_release ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_cocosbuilder_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_cocosbuilder_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_cocosbuilder_CCBAnimationManager_moveAnimationsFromNode ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_cocosdenshion_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_cocosdenshion_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_cocosdenshion_SimpleAudioEngine_preloadBackgroundMusic ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_controller_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_controller_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_controller_Controller_receiveExternalKeyEvent ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_csloader_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_csloader_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_csloader_CSLoader_createNodeFromJson ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_experimental_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_experimental_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_experimental_TMXLayer_getPositionAt ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_experimental_video_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_experimental_video_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_experimental_video_VideoPlayer_getFileName ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_experimental_webview_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_experimental_webview_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_experimental_webview_WebView_canGoBack ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_extension_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_extension_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_extension_Control_setEnabled ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_navmesh_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_navmesh_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_navmesh_NavMeshAgent_setMaxSpeed ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_physics3d_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_physics3d_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_physics3d_Physics3DShape_getbtShape ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_physics_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_physics_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_physics_PhysicsShape_getFriction ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_spine_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_spine_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_spine_SkeletonRenderer_setTimeScale ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_studio_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_studio_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_studio_ActionFrame_getAction ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl> mmm a / cocos / scripting / lua - bindings / auto / lua_cocos2dx_ui_auto . cpp <nl> ppp b / cocos / scripting / lua - bindings / auto / lua_cocos2dx_ui_auto . cpp <nl> <nl> # include " LuaBasicConversions . h " <nl> <nl> <nl> - <nl> int lua_cocos2dx_ui_LayoutParameter_clone ( lua_State * tolua_S ) <nl> { <nl> int argc = 0 ; <nl>
[ ci skip ] [ AUTO ] : updating luabinding & jsbinding automatically
cocos2d/cocos2d-x
e2268bb16fd7b6227b8f634f3708e0502ca564ff
2015-06-18T14:00:57Z
mmm a / CMakeLists . txt <nl> ppp b / CMakeLists . txt <nl> if ( USE_HDFS ) <nl> endif ( USE_HDFS ) <nl> <nl> if ( UNIX OR MINGW OR CYGWIN ) <nl> - SET ( CMAKE_CXX_FLAGS " $ { CMAKE_CXX_FLAGS } - std = c + + 11 - pthread - O3 - Wextra - Wall - Wno - ignored - attributes - Wno - unknown - pragmas " ) <nl> + SET ( CMAKE_CXX_FLAGS " $ { CMAKE_CXX_FLAGS } - std = c + + 11 - pthread - O3 - Wextra - Wall - Wno - ignored - attributes - Wno - unknown - pragmas - Wno - return - type " ) <nl> endif ( ) <nl> <nl> if ( WIN32 AND MINGW ) <nl> mmm a / docs / Parameters . rst <nl> ppp b / docs / Parameters . rst <nl> Learning Control Parameters <nl> <nl> - set this to larger value for more accurate result , but it will slow down the training speed <nl> <nl> + - ` ` monotone_constraint ` ` , default = ` ` None ` ` , type = multi - int , alias = \ ` ` mc ` ` <nl> + <nl> + - used for constraints of monotonic features <nl> + <nl> + - ` ` 1 ` ` means increasing , ` ` - 1 ` ` means decreasing , ` ` 0 ` ` means non - constraint <nl> + <nl> + - need to specific all features in order . For example , ` ` mc = - 1 , 0 , 1 ` ` means the decreasing for 1st feature , non - constraint for 2nd feature and increasing for the 3rd feature . <nl> + <nl> IO Parameters <nl> mmmmmmmmmmmm - <nl> <nl> mmm a / include / LightGBM / config . h <nl> ppp b / include / LightGBM / config . h <nl> struct IOConfig : public ConfigBase { <nl> double max_conflict_rate = 0 . 0f ; <nl> bool enable_bundle = true ; <nl> bool has_header = false ; <nl> + std : : vector < int8_t > monotone_constraints ; <nl> / * ! \ brief Index or column name of label , default is the first column <nl> * And add an prefix " name : " while using column name * / <nl> std : : string label_column = " " ; <nl> struct ParameterAlias { <nl> { " workers " , " machines " } , <nl> { " nodes " , " machines " } , <nl> { " subsample_for_bin " , " bin_construct_sample_cnt " } , <nl> - { " metric_freq " , " output_freq " } <nl> + { " metric_freq " , " output_freq " } , <nl> + { " mc " , " monotone_constraints " } <nl> } ) ; <nl> const std : : unordered_set < std : : string > parameter_set ( { <nl> " config " , " config_file " , " task " , " device " , <nl> struct ParameterAlias { <nl> " histogram_pool_size " , " is_provide_training_metric " , " machine_list_filename " , " machines " , <nl> " zero_as_missing " , " init_score_file " , " valid_init_score_file " , " is_predict_contrib " , <nl> " max_cat_threshold " , " cat_smooth " , " min_data_per_group " , " cat_l2 " , " max_cat_to_onehot " , <nl> - " alpha " , " reg_sqrt " , " tweedie_variance_power " <nl> + " alpha " , " reg_sqrt " , " tweedie_variance_power " , " monotone_constraints " <nl> } ) ; <nl> std : : unordered_map < std : : string , std : : string > tmp_map ; <nl> for ( const auto & pair : * params ) { <nl> mmm a / include / LightGBM / dataset . h <nl> ppp b / include / LightGBM / dataset . h <nl> class Dataset { <nl> const int sub_feature = feature2subfeature_ [ i ] ; <nl> return feature_groups_ [ group ] - > bin_mappers_ [ sub_feature ] - > num_bin ( ) ; <nl> } <nl> + <nl> + inline int8_t FeatureMonotone ( int i ) const { <nl> + if ( monotone_types_ . empty ( ) ) { <nl> + return 0 ; <nl> + } else { <nl> + return monotone_types_ [ i ] ; <nl> + } <nl> + } <nl> + <nl> + bool HasMonotone ( ) const { <nl> + if ( monotone_types_ . empty ( ) ) { <nl> + return false ; <nl> + } else { <nl> + for ( size_t i = 0 ; i < monotone_types_ . size ( ) ; + + i ) { <nl> + if ( monotone_types_ [ i ] ! = 0 ) { <nl> + return true ; <nl> + } <nl> + } <nl> + return false ; <nl> + } <nl> + } <nl> <nl> inline int FeatureGroupNumBin ( int group ) const { <nl> return feature_groups_ [ group ] - > num_total_bin_ ; <nl> class Dataset { <nl> std : : vector < uint64_t > group_bin_boundaries_ ; <nl> std : : vector < int > group_feature_start_ ; <nl> std : : vector < int > group_feature_cnt_ ; <nl> + std : : vector < int8_t > monotone_types_ ; <nl> bool is_finish_load_ ; <nl> } ; <nl> <nl> mmm a / include / LightGBM / utils / array_args . h <nl> ppp b / include / LightGBM / utils / array_args . h <nl> class ArrayArgs { <nl> out - > erase ( out - > begin ( ) + k , out - > end ( ) ) ; <nl> } <nl> <nl> + inline static void Assign ( std : : vector < VAL_T > * array , VAL_T t , size_t n ) { <nl> + array - > resize ( n ) ; <nl> + for ( size_t i = 0 ; i < array - > size ( ) ; + + i ) { <nl> + ( * array ) [ i ] = t ; <nl> + } <nl> + } <nl> + <nl> + inline static bool CheckAllZero ( const std : : vector < VAL_T > & array ) { <nl> + for ( size_t i = 0 ; i < array . size ( ) ; + + i ) { <nl> + if ( array [ i ] ! = VAL_T ( 0 ) ) { <nl> + return false ; <nl> + } <nl> + } <nl> + return true ; <nl> + } <nl> + <nl> } ; <nl> <nl> } / / namespace LightGBM <nl> mmm a / src / io / config . cpp <nl> ppp b / src / io / config . cpp <nl> void IOConfig : : Set ( const std : : unordered_map < std : : string , std : : string > & params ) { <nl> GetString ( params , " convert_model " , & convert_model ) ; <nl> GetString ( params , " output_result " , & output_result ) ; <nl> std : : string tmp_str = " " ; <nl> + if ( GetString ( params , " monotone_constraints " , & tmp_str ) ) { <nl> + monotone_constraints = Common : : StringToArray < int8_t > ( tmp_str . c_str ( ) , ' , ' ) ; <nl> + } <nl> if ( GetString ( params , " valid_data " , & tmp_str ) ) { <nl> valid_data_filenames = Common : : Split ( tmp_str . c_str ( ) , ' , ' ) ; <nl> } <nl> mmm a / src / io / dataset . cpp <nl> ppp b / src / io / dataset . cpp <nl> void Dataset : : Construct ( <nl> last_group = group ; <nl> } <nl> } <nl> + <nl> + if ( ! io_config . monotone_constraints . empty ( ) ) { <nl> + CHECK ( static_cast < size_t > ( num_total_features_ ) = = io_config . monotone_constraints . size ( ) ) ; <nl> + monotone_types_ . resize ( num_features_ ) ; <nl> + for ( int i = 0 ; i < num_total_features_ ; + + i ) { <nl> + int inner_fidx = InnerFeatureIndex ( i ) ; <nl> + if ( inner_fidx > = 0 ) { <nl> + monotone_types_ [ inner_fidx ] = io_config . monotone_constraints [ i ] ; <nl> + } <nl> + } <nl> + if ( ArrayArgs < int8_t > : : CheckAllZero ( monotone_types_ ) ) { <nl> + monotone_types_ . clear ( ) ; <nl> + } <nl> + } <nl> } <nl> <nl> void Dataset : : FinishLoad ( ) { <nl> void Dataset : : CopyFeatureMapperFrom ( const Dataset * dataset ) { <nl> group_bin_boundaries_ = dataset - > group_bin_boundaries_ ; <nl> group_feature_start_ = dataset - > group_feature_start_ ; <nl> group_feature_cnt_ = dataset - > group_feature_cnt_ ; <nl> + monotone_types_ = dataset - > monotone_types_ ; <nl> } <nl> <nl> void Dataset : : CreateValid ( const Dataset * dataset ) { <nl> void Dataset : : CreateValid ( const Dataset * dataset ) { <nl> last_group = group ; <nl> } <nl> } <nl> + monotone_types_ = dataset - > monotone_types_ ; <nl> } <nl> <nl> void Dataset : : ReSize ( data_size_t num_data ) { <nl> void Dataset : : SaveBinaryFile ( const char * bin_filename ) { <nl> / / get size of header <nl> size_t size_of_header = sizeof ( num_data_ ) + sizeof ( num_features_ ) + sizeof ( num_total_features_ ) <nl> + sizeof ( int ) * num_total_features_ + sizeof ( label_idx_ ) + sizeof ( num_groups_ ) <nl> - + 3 * sizeof ( int ) * num_features_ + sizeof ( uint64_t ) * ( num_groups_ + 1 ) + 2 * sizeof ( int ) * num_groups_ ; <nl> + + 3 * sizeof ( int ) * num_features_ + sizeof ( uint64_t ) * ( num_groups_ + 1 ) + 2 * sizeof ( int ) * num_groups_ + sizeof ( int8_t ) * num_features_ ; <nl> / / size of feature names <nl> for ( int i = 0 ; i < num_total_features_ ; + + i ) { <nl> size_of_header + = feature_names_ [ i ] . size ( ) + sizeof ( int ) ; <nl> void Dataset : : SaveBinaryFile ( const char * bin_filename ) { <nl> writer - > Write ( group_bin_boundaries_ . data ( ) , sizeof ( uint64_t ) * ( num_groups_ + 1 ) ) ; <nl> writer - > Write ( group_feature_start_ . data ( ) , sizeof ( int ) * num_groups_ ) ; <nl> writer - > Write ( group_feature_cnt_ . data ( ) , sizeof ( int ) * num_groups_ ) ; <nl> - <nl> + if ( monotone_types_ . empty ( ) ) { <nl> + ArrayArgs < int8_t > : : Assign ( & monotone_types_ , 0 , num_features_ ) ; <nl> + } <nl> + writer - > Write ( monotone_types_ . data ( ) , sizeof ( int8_t ) * num_features_ ) ; <nl> + if ( ArrayArgs < int8_t > : : CheckAllZero ( monotone_types_ ) ) { <nl> + monotone_types_ . clear ( ) ; <nl> + } <nl> / / write feature names <nl> for ( int i = 0 ; i < num_total_features_ ; + + i ) { <nl> int str_len = static_cast < int > ( feature_names_ [ i ] . size ( ) ) ; <nl> mmm a / src / io / dataset_loader . cpp <nl> ppp b / src / io / dataset_loader . cpp <nl> <nl> # include < LightGBM / utils / openmp_wrapper . h > <nl> - <nl> # include < LightGBM / utils / log . h > <nl> + # include < LightGBM / utils / array_args . h > <nl> + <nl> # include < LightGBM / dataset_loader . h > <nl> # include < LightGBM / network . h > <nl> <nl> Dataset * DatasetLoader : : LoadFromBinFile ( const char * data_filename , const char * b <nl> } <nl> mem_ptr + = sizeof ( int ) * ( dataset - > num_groups_ ) ; <nl> <nl> + const int8_t * tmp_ptr_monotone_type = reinterpret_cast < const int8_t * > ( mem_ptr ) ; <nl> + dataset - > monotone_types_ . clear ( ) ; <nl> + for ( int i = 0 ; i < dataset - > num_features_ ; + + i ) { <nl> + dataset - > monotone_types_ . push_back ( tmp_ptr_monotone_type [ i ] ) ; <nl> + } <nl> + mem_ptr + = sizeof ( int8_t ) * ( dataset - > num_features_ ) ; <nl> + <nl> + if ( ArrayArgs < int8_t > : : CheckAllZero ( dataset - > monotone_types_ ) ) { <nl> + dataset - > monotone_types_ . clear ( ) ; <nl> + } <nl> + <nl> / / get feature names <nl> dataset - > feature_names_ . clear ( ) ; <nl> / / write feature names <nl> mmm a / src / treelearner / data_parallel_tree_learner . cpp <nl> ppp b / src / treelearner / data_parallel_tree_learner . cpp <nl> void DataParallelTreeLearner < TREELEARNER_T > : : FindBestSplitsFromHistograms ( const <nl> this - > smaller_leaf_splits_ - > sum_gradients ( ) , <nl> this - > smaller_leaf_splits_ - > sum_hessians ( ) , <nl> GetGlobalDataCountInLeaf ( this - > smaller_leaf_splits_ - > LeafIndex ( ) ) , <nl> + this - > smaller_leaf_splits_ - > min_constraint ( ) , <nl> + this - > smaller_leaf_splits_ - > max_constraint ( ) , <nl> & smaller_split ) ; <nl> smaller_split . feature = real_feature_index ; <nl> if ( smaller_split > smaller_bests_per_thread [ tid ] ) { <nl> void DataParallelTreeLearner < TREELEARNER_T > : : FindBestSplitsFromHistograms ( const <nl> this - > larger_leaf_splits_ - > sum_gradients ( ) , <nl> this - > larger_leaf_splits_ - > sum_hessians ( ) , <nl> GetGlobalDataCountInLeaf ( this - > larger_leaf_splits_ - > LeafIndex ( ) ) , <nl> + this - > larger_leaf_splits_ - > min_constraint ( ) , <nl> + this - > larger_leaf_splits_ - > max_constraint ( ) , <nl> & larger_split ) ; <nl> larger_split . feature = real_feature_index ; <nl> if ( larger_split > larger_bests_per_thread [ tid ] ) { <nl> mmm a / src / treelearner / feature_histogram . hpp <nl> ppp b / src / treelearner / feature_histogram . hpp <nl> class FeatureMetainfo { <nl> MissingType missing_type ; <nl> int8_t bias = 0 ; <nl> uint32_t default_bin ; <nl> + int8_t monotone_type ; <nl> / * ! \ brief pointer of tree config * / <nl> const TreeConfig * tree_config ; <nl> } ; <nl> class FeatureHistogram { <nl> data_ = data ; <nl> if ( bin_type = = BinType : : NumericalBin ) { <nl> find_best_threshold_fun_ = std : : bind ( & FeatureHistogram : : FindBestThresholdNumerical , this , std : : placeholders : : _1 <nl> - , std : : placeholders : : _2 , std : : placeholders : : _3 , std : : placeholders : : _4 ) ; <nl> + , std : : placeholders : : _2 , std : : placeholders : : _3 , std : : placeholders : : _4 , std : : placeholders : : _5 , std : : placeholders : : _6 ) ; <nl> } else { <nl> find_best_threshold_fun_ = std : : bind ( & FeatureHistogram : : FindBestThresholdCategorical , this , std : : placeholders : : _1 <nl> - , std : : placeholders : : _2 , std : : placeholders : : _3 , std : : placeholders : : _4 ) ; <nl> + , std : : placeholders : : _2 , std : : placeholders : : _3 , std : : placeholders : : _4 , std : : placeholders : : _5 , std : : placeholders : : _6 ) ; <nl> } <nl> } <nl> <nl> class FeatureHistogram { <nl> } <nl> } <nl> <nl> - void FindBestThreshold ( double sum_gradient , double sum_hessian , data_size_t num_data , <nl> + void FindBestThreshold ( double sum_gradient , double sum_hessian , data_size_t num_data , double min_constraint , double max_constraint , <nl> SplitInfo * output ) { <nl> output - > default_left = true ; <nl> output - > gain = kMinScore ; <nl> - find_best_threshold_fun_ ( sum_gradient , sum_hessian + 2 * kEpsilon , num_data , output ) ; <nl> + find_best_threshold_fun_ ( sum_gradient , sum_hessian + 2 * kEpsilon , num_data , min_constraint , max_constraint , output ) ; <nl> } <nl> <nl> - void FindBestThresholdNumerical ( double sum_gradient , double sum_hessian , data_size_t num_data , <nl> + void FindBestThresholdNumerical ( double sum_gradient , double sum_hessian , data_size_t num_data , double min_constraint , double max_constraint , <nl> SplitInfo * output ) { <nl> <nl> is_splittable_ = false ; <nl> class FeatureHistogram { <nl> double min_gain_shift = gain_shift + meta_ - > tree_config - > min_gain_to_split ; <nl> if ( meta_ - > num_bin > 2 & & meta_ - > missing_type ! = MissingType : : None ) { <nl> if ( meta_ - > missing_type = = MissingType : : Zero ) { <nl> - FindBestThresholdSequence ( sum_gradient , sum_hessian , num_data , min_gain_shift , output , - 1 , true , false ) ; <nl> - FindBestThresholdSequence ( sum_gradient , sum_hessian , num_data , min_gain_shift , output , 1 , true , false ) ; <nl> + FindBestThresholdSequence ( sum_gradient , sum_hessian , num_data , min_constraint , max_constraint , min_gain_shift , output , - 1 , true , false ) ; <nl> + FindBestThresholdSequence ( sum_gradient , sum_hessian , num_data , min_constraint , max_constraint , min_gain_shift , output , 1 , true , false ) ; <nl> } else { <nl> - FindBestThresholdSequence ( sum_gradient , sum_hessian , num_data , min_gain_shift , output , - 1 , false , true ) ; <nl> - FindBestThresholdSequence ( sum_gradient , sum_hessian , num_data , min_gain_shift , output , 1 , false , true ) ; <nl> + FindBestThresholdSequence ( sum_gradient , sum_hessian , num_data , min_constraint , max_constraint , min_gain_shift , output , - 1 , false , true ) ; <nl> + FindBestThresholdSequence ( sum_gradient , sum_hessian , num_data , min_constraint , max_constraint , min_gain_shift , output , 1 , false , true ) ; <nl> } <nl> } else { <nl> - FindBestThresholdSequence ( sum_gradient , sum_hessian , num_data , min_gain_shift , output , - 1 , false , false ) ; <nl> + FindBestThresholdSequence ( sum_gradient , sum_hessian , num_data , min_constraint , max_constraint , min_gain_shift , output , - 1 , false , false ) ; <nl> / / fix the direction error when only have 2 bins <nl> if ( meta_ - > missing_type = = MissingType : : NaN ) { <nl> output - > default_left = false ; <nl> } <nl> } <nl> output - > gain - = min_gain_shift ; <nl> + output - > monotone_type = meta_ - > monotone_type ; <nl> + output - > min_constraint = min_constraint ; <nl> + output - > max_constraint = max_constraint ; <nl> } <nl> <nl> - void FindBestThresholdCategorical ( double sum_gradient , double sum_hessian , data_size_t num_data , <nl> + void FindBestThresholdCategorical ( double sum_gradient , double sum_hessian , data_size_t num_data , double min_constraint , double max_constraint , <nl> SplitInfo * output ) { <nl> output - > default_left = false ; <nl> double best_gain = kMinScore ; <nl> class FeatureHistogram { <nl> <nl> double sum_other_gradient = sum_gradient - data_ [ t ] . sum_gradients ; <nl> / / current split gain <nl> - double current_gain = GetLeafSplitGain ( sum_other_gradient , sum_other_hessian , <nl> - meta_ - > tree_config - > lambda_l1 , l2 ) <nl> - + GetLeafSplitGain ( data_ [ t ] . sum_gradients , data_ [ t ] . sum_hessians + kEpsilon , <nl> - meta_ - > tree_config - > lambda_l1 , l2 ) ; <nl> + double current_gain = GetSplitGains ( sum_other_gradient , sum_other_hessian , data_ [ t ] . sum_gradients , data_ [ t ] . sum_hessians + kEpsilon , <nl> + meta_ - > tree_config - > lambda_l1 , l2 , <nl> + min_constraint , max_constraint , 0 ) ; <nl> / / gain with split is worse than without split <nl> if ( current_gain < = min_gain_shift ) continue ; <nl> <nl> class FeatureHistogram { <nl> cnt_cur_group = 0 ; <nl> <nl> double sum_right_gradient = sum_gradient - sum_left_gradient ; <nl> - double current_gain = GetLeafSplitGain ( sum_left_gradient , sum_left_hessian , meta_ - > tree_config - > lambda_l1 , l2 ) <nl> - + GetLeafSplitGain ( sum_right_gradient , sum_right_hessian , meta_ - > tree_config - > lambda_l1 , l2 ) ; <nl> + double current_gain = GetSplitGains ( sum_left_gradient , sum_left_hessian , sum_right_gradient , sum_right_hessian , <nl> + meta_ - > tree_config - > lambda_l1 , l2 , <nl> + min_constraint , max_constraint , 0 ) ; <nl> if ( current_gain < = min_gain_shift ) continue ; <nl> is_splittable_ = true ; <nl> if ( current_gain > best_gain ) { <nl> class FeatureHistogram { <nl> <nl> if ( is_splittable_ ) { <nl> output - > left_output = CalculateSplittedLeafOutput ( best_sum_left_gradient , best_sum_left_hessian , <nl> - meta_ - > tree_config - > lambda_l1 , l2 ) ; <nl> + meta_ - > tree_config - > lambda_l1 , l2 , min_constraint , max_constraint ) ; <nl> output - > left_count = best_left_count ; <nl> output - > left_sum_gradient = best_sum_left_gradient ; <nl> output - > left_sum_hessian = best_sum_left_hessian - kEpsilon ; <nl> output - > right_output = CalculateSplittedLeafOutput ( sum_gradient - best_sum_left_gradient , <nl> sum_hessian - best_sum_left_hessian , <nl> - meta_ - > tree_config - > lambda_l1 , l2 ) ; <nl> + meta_ - > tree_config - > lambda_l1 , l2 , min_constraint , max_constraint ) ; <nl> output - > right_count = num_data - best_left_count ; <nl> output - > right_sum_gradient = sum_gradient - best_sum_left_gradient ; <nl> output - > right_sum_hessian = sum_hessian - best_sum_left_hessian - kEpsilon ; <nl> class FeatureHistogram { <nl> } <nl> } <nl> } <nl> + output - > monotone_type = 0 ; <nl> + output - > min_constraint = min_constraint ; <nl> + output - > max_constraint = max_constraint ; <nl> } <nl> } <nl> <nl> class FeatureHistogram { <nl> void set_is_splittable ( bool val ) { is_splittable_ = val ; } <nl> <nl> / * ! <nl> - * \ brief Calculate the split gain based on regularized sum_gradients and sum_hessians <nl> + * \ brief Calculate the output of a leaf based on regularized sum_gradients and sum_hessians <nl> * \ param sum_gradients <nl> * \ param sum_hessians <nl> - * \ return split gain <nl> + * \ return leaf output <nl> * / <nl> - static double GetLeafSplitGain ( double sum_gradients , double sum_hessians , double l1 , double l2 ) { <nl> - double abs_sum_gradients = std : : fabs ( sum_gradients ) ; <nl> - double reg_abs_sum_gradients = std : : max ( 0 . 0 , abs_sum_gradients - l1 ) ; <nl> - return ( reg_abs_sum_gradients * reg_abs_sum_gradients ) <nl> - / ( sum_hessians + l2 ) ; <nl> + static double CalculateSplittedLeafOutput ( double sum_gradients , double sum_hessians , double l1 , double l2 ) { <nl> + const double reg_abs_sum_gradients = std : : max ( 0 . 0 , std : : fabs ( sum_gradients ) - l1 ) ; <nl> + return - ( Common : : Sign ( sum_gradients ) * reg_abs_sum_gradients ) / ( sum_hessians + l2 ) ; <nl> + } <nl> + <nl> + private : <nl> <nl> + static double GetSplitGains ( double sum_left_gradients , double sum_left_hessians , <nl> + double sum_right_gradients , double sum_right_hessians , <nl> + double l1 , double l2 , <nl> + double min_constraint , double max_constraint , int8_t monotone_constraint ) { <nl> + double left_output = CalculateSplittedLeafOutput ( sum_left_gradients , sum_left_hessians , l1 , l2 , min_constraint , max_constraint ) ; <nl> + double right_output = CalculateSplittedLeafOutput ( sum_right_gradients , sum_right_hessians , l1 , l2 , min_constraint , max_constraint ) ; <nl> + if ( ( ( monotone_constraint > 0 ) & & ( left_output > right_output ) ) | | <nl> + ( ( monotone_constraint < 0 ) & & ( left_output < right_output ) ) ) { <nl> + return 0 ; <nl> + } <nl> + return GetLeafSplitGainGivenOutput ( sum_left_gradients , sum_left_hessians , l1 , l2 , left_output ) <nl> + + GetLeafSplitGainGivenOutput ( sum_right_gradients , sum_right_hessians , l1 , l2 , right_output ) ; <nl> + } <nl> + <nl> + static double ThresholdL1 ( double s , double l1 ) { <nl> + const double reg_s = std : : max ( 0 . 0 , std : : fabs ( s ) - l1 ) ; <nl> + return Common : : Sign ( s ) * reg_s ; <nl> } <nl> <nl> / * ! <nl> class FeatureHistogram { <nl> * \ param sum_hessians <nl> * \ return leaf output <nl> * / <nl> - static double CalculateSplittedLeafOutput ( double sum_gradients , double sum_hessians , double l1 , double l2 ) { <nl> - const double reg_abs_sum_gradients = std : : max ( 0 . 0 , std : : fabs ( sum_gradients ) - l1 ) ; <nl> - return - ( Common : : Sign ( sum_gradients ) * reg_abs_sum_gradients ) / ( sum_hessians + l2 ) ; <nl> + static double CalculateSplittedLeafOutput ( double sum_gradients , double sum_hessians , double l1 , double l2 , <nl> + double min_constraint , double max_constraint ) { <nl> + double ret = - ThresholdL1 ( sum_gradients , l1 ) / ( sum_hessians + l2 ) ; <nl> + if ( ret < min_constraint ) { <nl> + ret = min_constraint ; <nl> + } else if ( ret > max_constraint ) { <nl> + ret = max_constraint ; <nl> + } <nl> + return ret ; <nl> } <nl> <nl> - private : <nl> + / * ! <nl> + * \ brief Calculate the split gain based on regularized sum_gradients and sum_hessians <nl> + * \ param sum_gradients <nl> + * \ param sum_hessians <nl> + * \ return split gain <nl> + * / <nl> + static double GetLeafSplitGain ( double sum_gradients , double sum_hessians , double l1 , double l2 ) { <nl> + double abs_sum_gradients = std : : fabs ( sum_gradients ) ; <nl> + double reg_abs_sum_gradients = std : : max ( 0 . 0 , abs_sum_gradients - l1 ) ; <nl> + return ( reg_abs_sum_gradients * reg_abs_sum_gradients ) <nl> + / ( sum_hessians + l2 ) ; <nl> + } <nl> + <nl> + static double GetLeafSplitGainGivenOutput ( double sum_gradients , double sum_hessians , double l1 , double l2 , double output ) { <nl> + const double sg_l1 = ThresholdL1 ( sum_gradients , l1 ) ; <nl> + return - ( 2 . 0 * sg_l1 * output + ( sum_hessians + l2 ) * output * output ) ; <nl> + } <nl> <nl> - void FindBestThresholdSequence ( double sum_gradient , double sum_hessian , data_size_t num_data , double min_gain_shift , <nl> - SplitInfo * output , int dir , bool skip_default_bin , bool use_na_as_missing ) { <nl> + void FindBestThresholdSequence ( double sum_gradient , double sum_hessian , data_size_t num_data , double min_constraint , double max_constraint , <nl> + double min_gain_shift , SplitInfo * output , int dir , bool skip_default_bin , bool use_na_as_missing ) { <nl> <nl> const int8_t bias = meta_ - > bias ; <nl> <nl> class FeatureHistogram { <nl> <nl> double sum_left_gradient = sum_gradient - sum_right_gradient ; <nl> / / current split gain <nl> - double current_gain = GetLeafSplitGain ( sum_left_gradient , sum_left_hessian , <nl> - meta_ - > tree_config - > lambda_l1 , meta_ - > tree_config - > lambda_l2 ) <nl> - + GetLeafSplitGain ( sum_right_gradient , sum_right_hessian , <nl> - meta_ - > tree_config - > lambda_l1 , meta_ - > tree_config - > lambda_l2 ) ; <nl> + double current_gain = GetSplitGains ( sum_left_gradient , sum_left_hessian , sum_right_gradient , sum_right_hessian , <nl> + meta_ - > tree_config - > lambda_l1 , meta_ - > tree_config - > lambda_l2 , <nl> + min_constraint , max_constraint , meta_ - > monotone_type ) ; <nl> / / gain with split is worse than without split <nl> if ( current_gain < = min_gain_shift ) continue ; <nl> <nl> class FeatureHistogram { <nl> <nl> double sum_right_gradient = sum_gradient - sum_left_gradient ; <nl> / / current split gain <nl> - double current_gain = GetLeafSplitGain ( sum_left_gradient , sum_left_hessian , <nl> - meta_ - > tree_config - > lambda_l1 , meta_ - > tree_config - > lambda_l2 ) <nl> - + GetLeafSplitGain ( sum_right_gradient , sum_right_hessian , <nl> - meta_ - > tree_config - > lambda_l1 , meta_ - > tree_config - > lambda_l2 ) ; <nl> + double current_gain = GetSplitGains ( sum_left_gradient , sum_left_hessian , sum_right_gradient , sum_right_hessian , <nl> + meta_ - > tree_config - > lambda_l1 , meta_ - > tree_config - > lambda_l2 , <nl> + min_constraint , max_constraint , meta_ - > monotone_type ) ; <nl> / / gain with split is worse than without split <nl> if ( current_gain < = min_gain_shift ) continue ; <nl> <nl> class FeatureHistogram { <nl> / / update split information <nl> output - > threshold = best_threshold ; <nl> output - > left_output = CalculateSplittedLeafOutput ( best_sum_left_gradient , best_sum_left_hessian , <nl> - meta_ - > tree_config - > lambda_l1 , meta_ - > tree_config - > lambda_l2 ) ; <nl> + meta_ - > tree_config - > lambda_l1 , meta_ - > tree_config - > lambda_l2 , min_constraint , max_constraint ) ; <nl> output - > left_count = best_left_count ; <nl> output - > left_sum_gradient = best_sum_left_gradient ; <nl> output - > left_sum_hessian = best_sum_left_hessian - kEpsilon ; <nl> output - > right_output = CalculateSplittedLeafOutput ( sum_gradient - best_sum_left_gradient , <nl> sum_hessian - best_sum_left_hessian , <nl> - meta_ - > tree_config - > lambda_l1 , meta_ - > tree_config - > lambda_l2 ) ; <nl> + meta_ - > tree_config - > lambda_l1 , meta_ - > tree_config - > lambda_l2 , min_constraint , max_constraint ) ; <nl> output - > right_count = num_data - best_left_count ; <nl> output - > right_sum_gradient = sum_gradient - best_sum_left_gradient ; <nl> output - > right_sum_hessian = sum_hessian - best_sum_left_hessian - kEpsilon ; <nl> class FeatureHistogram { <nl> / * ! \ brief False if this histogram cannot split * / <nl> bool is_splittable_ = true ; <nl> <nl> - std : : function < void ( double , double , data_size_t , SplitInfo * ) > find_best_threshold_fun_ ; <nl> + std : : function < void ( double , double , data_size_t , double , double , SplitInfo * ) > find_best_threshold_fun_ ; <nl> } ; <nl> class HistogramPool { <nl> public : <nl> class HistogramPool { <nl> feature_metas_ [ i ] . num_bin = train_data - > FeatureNumBin ( i ) ; <nl> feature_metas_ [ i ] . default_bin = train_data - > FeatureBinMapper ( i ) - > GetDefaultBin ( ) ; <nl> feature_metas_ [ i ] . missing_type = train_data - > FeatureBinMapper ( i ) - > missing_type ( ) ; <nl> + feature_metas_ [ i ] . monotone_type = train_data - > FeatureMonotone ( i ) ; <nl> if ( train_data - > FeatureBinMapper ( i ) - > GetDefaultBin ( ) = = 0 ) { <nl> feature_metas_ [ i ] . bias = 1 ; <nl> } else { <nl> mmm a / src / treelearner / gpu_tree_learner . cpp <nl> ppp b / src / treelearner / gpu_tree_learner . cpp <nl> void GPUTreeLearner : : Split ( Tree * tree , int best_Leaf , int * left_leaf , int * right <nl> Log : : Fatal ( " Bug in GPU histogram ! split % d : % d , smaller_leaf : % d , larger_leaf : % d \ n " , best_split_info . left_count , best_split_info . right_count , smaller_leaf_splits_ - > num_data_in_leaf ( ) , larger_leaf_splits_ - > num_data_in_leaf ( ) ) ; <nl> } <nl> } else { <nl> + double smaller_min = smaller_leaf_splits_ - > min_constraint ( ) ; <nl> + double smaller_max = smaller_leaf_splits_ - > max_constraint ( ) ; <nl> + double larger_min = larger_leaf_splits_ - > min_constraint ( ) ; <nl> + double larger_max = larger_leaf_splits_ - > max_constraint ( ) ; <nl> smaller_leaf_splits_ - > Init ( * right_leaf , data_partition_ . get ( ) , best_split_info . right_sum_gradient , best_split_info . right_sum_hessian ) ; <nl> larger_leaf_splits_ - > Init ( * left_leaf , data_partition_ . get ( ) , best_split_info . left_sum_gradient , best_split_info . left_sum_hessian ) ; <nl> + smaller_leaf_splits_ - > SetValueConstraint ( smaller_min , smaller_max ) ; <nl> + larger_leaf_splits_ - > SetValueConstraint ( larger_min , larger_max ) ; <nl> if ( ( best_split_info . left_count ! = larger_leaf_splits_ - > num_data_in_leaf ( ) ) | | <nl> ( best_split_info . right_count ! = smaller_leaf_splits_ - > num_data_in_leaf ( ) ) ) { <nl> Log : : Fatal ( " Bug in GPU histogram ! split % d : % d , smaller_leaf : % d , larger_leaf : % d \ n " , best_split_info . left_count , best_split_info . right_count , smaller_leaf_splits_ - > num_data_in_leaf ( ) , larger_leaf_splits_ - > num_data_in_leaf ( ) ) ; <nl> mmm a / src / treelearner / leaf_splits . hpp <nl> ppp b / src / treelearner / leaf_splits . hpp <nl> <nl> # ifndef LIGHTGBM_TREELEARNER_LEAF_SPLITS_HPP_ <nl> # define LIGHTGBM_TREELEARNER_LEAF_SPLITS_HPP_ <nl> <nl> + # include < limits > <nl> + <nl> # include < LightGBM / meta . h > <nl> # include " data_partition . hpp " <nl> <nl> class LeafSplits { <nl> data_indices_ = data_partition - > GetIndexOnLeaf ( leaf , & num_data_in_leaf_ ) ; <nl> sum_gradients_ = sum_gradients ; <nl> sum_hessians_ = sum_hessians ; <nl> + min_val_ = - std : : numeric_limits < double > : : max ( ) ; <nl> + max_val_ = std : : numeric_limits < double > : : max ( ) ; <nl> + } <nl> + <nl> + void SetValueConstraint ( double min , double max ) { <nl> + min_val_ = min ; <nl> + max_val_ = max ; <nl> } <nl> <nl> + <nl> / * ! <nl> * \ brief Init splits on current leaf , it will traverse all data to sum up the results <nl> * \ param gradients <nl> class LeafSplits { <nl> } <nl> sum_gradients_ = tmp_sum_gradients ; <nl> sum_hessians_ = tmp_sum_hessians ; <nl> + min_val_ = - std : : numeric_limits < double > : : max ( ) ; <nl> + max_val_ = std : : numeric_limits < double > : : max ( ) ; <nl> } <nl> <nl> / * ! <nl> class LeafSplits { <nl> } <nl> sum_gradients_ = tmp_sum_gradients ; <nl> sum_hessians_ = tmp_sum_hessians ; <nl> + min_val_ = - std : : numeric_limits < double > : : max ( ) ; <nl> + max_val_ = std : : numeric_limits < double > : : max ( ) ; <nl> } <nl> <nl> <nl> class LeafSplits { <nl> leaf_index_ = 0 ; <nl> sum_gradients_ = sum_gradients ; <nl> sum_hessians_ = sum_hessians ; <nl> + min_val_ = - std : : numeric_limits < double > : : max ( ) ; <nl> + max_val_ = std : : numeric_limits < double > : : max ( ) ; <nl> } <nl> <nl> / * ! <nl> class LeafSplits { <nl> leaf_index_ = - 1 ; <nl> data_indices_ = nullptr ; <nl> num_data_in_leaf_ = 0 ; <nl> + min_val_ = - std : : numeric_limits < double > : : max ( ) ; <nl> + max_val_ = std : : numeric_limits < double > : : max ( ) ; <nl> } <nl> <nl> <nl> class LeafSplits { <nl> / * ! \ brief Get sum of hessians of current leaf * / <nl> double sum_hessians ( ) const { return sum_hessians_ ; } <nl> <nl> + double max_constraint ( ) const { return max_val_ ; } <nl> + <nl> + double min_constraint ( ) const { return min_val_ ; } <nl> + <nl> / * ! \ brief Get indices of data of current leaf * / <nl> const data_size_t * data_indices ( ) const { return data_indices_ ; } <nl> <nl> class LeafSplits { <nl> double sum_hessians_ ; <nl> / * ! \ brief indices of data of current leaf * / <nl> const data_size_t * data_indices_ ; <nl> + double min_val_ ; <nl> + double max_val_ ; <nl> } ; <nl> <nl> } / / namespace LightGBM <nl> mmm a / src / treelearner / serial_tree_learner . cpp <nl> ppp b / src / treelearner / serial_tree_learner . cpp <nl> void SerialTreeLearner : : FindBestSplitsFromHistograms ( const std : : vector < int8_t > & <nl> smaller_leaf_splits_ - > sum_gradients ( ) , <nl> smaller_leaf_splits_ - > sum_hessians ( ) , <nl> smaller_leaf_splits_ - > num_data_in_leaf ( ) , <nl> + smaller_leaf_splits_ - > min_constraint ( ) , <nl> + smaller_leaf_splits_ - > max_constraint ( ) , <nl> & smaller_split ) ; <nl> smaller_split . feature = real_fidx ; <nl> if ( smaller_split > smaller_best [ tid ] ) { <nl> void SerialTreeLearner : : FindBestSplitsFromHistograms ( const std : : vector < int8_t > & <nl> larger_leaf_splits_ - > sum_gradients ( ) , <nl> larger_leaf_splits_ - > sum_hessians ( ) , <nl> larger_leaf_splits_ - > num_data_in_leaf ( ) , <nl> + larger_leaf_splits_ - > min_constraint ( ) , <nl> + larger_leaf_splits_ - > max_constraint ( ) , <nl> & larger_split ) ; <nl> larger_split . feature = real_fidx ; <nl> if ( larger_split > larger_best [ tid ] ) { <nl> void SerialTreeLearner : : Split ( Tree * tree , int best_leaf , int * left_leaf , int * ri <nl> const int inner_feature_index = train_data_ - > InnerFeatureIndex ( best_split_info . feature ) ; <nl> / / left = parent <nl> * left_leaf = best_leaf ; <nl> - if ( train_data_ - > FeatureBinMapper ( inner_feature_index ) - > bin_type ( ) = = BinType : : NumericalBin ) { <nl> + bool is_numerical_split = train_data_ - > FeatureBinMapper ( inner_feature_index ) - > bin_type ( ) = = BinType : : NumericalBin ; <nl> + if ( is_numerical_split ) { <nl> auto threshold_double = train_data_ - > RealThreshold ( inner_feature_index , best_split_info . threshold ) ; <nl> / / split tree , will return right leaf <nl> * right_leaf = tree - > Split ( best_leaf , <nl> void SerialTreeLearner : : Split ( Tree * tree , int best_leaf , int * left_leaf , int * ri <nl> # ifdef DEBUG <nl> CHECK ( best_split_info . left_count = = data_partition_ - > leaf_count ( best_leaf ) ) ; <nl> # endif <nl> - <nl> + auto p_left = smaller_leaf_splits_ . get ( ) ; <nl> + auto p_right = larger_leaf_splits_ . get ( ) ; <nl> / / init the leaves that used on next iteration <nl> if ( best_split_info . left_count < best_split_info . right_count ) { <nl> - smaller_leaf_splits_ - > Init ( * left_leaf , data_partition_ . get ( ) , <nl> - best_split_info . left_sum_gradient , <nl> - best_split_info . left_sum_hessian ) ; <nl> - larger_leaf_splits_ - > Init ( * right_leaf , data_partition_ . get ( ) , <nl> - best_split_info . right_sum_gradient , <nl> - best_split_info . right_sum_hessian ) ; <nl> + smaller_leaf_splits_ - > Init ( * left_leaf , data_partition_ . get ( ) , best_split_info . left_sum_gradient , best_split_info . left_sum_hessian ) ; <nl> + larger_leaf_splits_ - > Init ( * right_leaf , data_partition_ . get ( ) , best_split_info . right_sum_gradient , best_split_info . right_sum_hessian ) ; <nl> } else { <nl> smaller_leaf_splits_ - > Init ( * right_leaf , data_partition_ . get ( ) , best_split_info . right_sum_gradient , best_split_info . right_sum_hessian ) ; <nl> larger_leaf_splits_ - > Init ( * left_leaf , data_partition_ . get ( ) , best_split_info . left_sum_gradient , best_split_info . left_sum_hessian ) ; <nl> + p_right = smaller_leaf_splits_ . get ( ) ; <nl> + p_left = larger_leaf_splits_ . get ( ) ; <nl> + } <nl> + p_left - > SetValueConstraint ( best_split_info . min_constraint , best_split_info . max_constraint ) ; <nl> + p_right - > SetValueConstraint ( best_split_info . min_constraint , best_split_info . max_constraint ) ; <nl> + if ( is_numerical_split ) { <nl> + double mid = ( best_split_info . left_output + best_split_info . right_output ) / 2 . 0f ; <nl> + if ( best_split_info . monotone_type < 0 ) { <nl> + p_left - > SetValueConstraint ( mid , best_split_info . max_constraint ) ; <nl> + p_right - > SetValueConstraint ( best_split_info . min_constraint , mid ) ; <nl> + } else if ( best_split_info . monotone_type > 0 ) { <nl> + p_left - > SetValueConstraint ( best_split_info . min_constraint , mid ) ; <nl> + p_right - > SetValueConstraint ( mid , best_split_info . max_constraint ) ; <nl> + } <nl> } <nl> } <nl> <nl> mmm a / src / treelearner / split_info . hpp <nl> ppp b / src / treelearner / split_info . hpp <nl> <nl> # include < cmath > <nl> # include < cstdint > <nl> # include < cstring > <nl> + # include < limits > <nl> <nl> # include < functional > <nl> <nl> struct SplitInfo { <nl> std : : vector < uint32_t > cat_threshold ; <nl> / * ! \ brief True if default split is left * / <nl> bool default_left = true ; <nl> - <nl> + int8_t monotone_type = 0 ; <nl> + double min_constraint = - std : : numeric_limits < double > : : max ( ) ; <nl> + double max_constraint = std : : numeric_limits < double > : : max ( ) ; <nl> inline static int Size ( int max_cat_threshold ) { <nl> - return 2 * sizeof ( int ) + sizeof ( uint32_t ) + sizeof ( bool ) + sizeof ( double ) * 7 + sizeof ( data_size_t ) * 2 + max_cat_threshold * sizeof ( uint32_t ) ; <nl> + return 2 * sizeof ( int ) + sizeof ( uint32_t ) + sizeof ( bool ) + sizeof ( double ) * 9 + sizeof ( data_size_t ) * 2 + max_cat_threshold * sizeof ( uint32_t ) + sizeof ( int8_t ) ; <nl> } <nl> <nl> inline void CopyTo ( char * buffer ) const { <nl> struct SplitInfo { <nl> buffer + = sizeof ( right_sum_hessian ) ; <nl> std : : memcpy ( buffer , & default_left , sizeof ( default_left ) ) ; <nl> buffer + = sizeof ( default_left ) ; <nl> + std : : memcpy ( buffer , & monotone_type , sizeof ( monotone_type ) ) ; <nl> + buffer + = sizeof ( monotone_type ) ; <nl> + std : : memcpy ( buffer , & min_constraint , sizeof ( min_constraint ) ) ; <nl> + buffer + = sizeof ( min_constraint ) ; <nl> + std : : memcpy ( buffer , & max_constraint , sizeof ( max_constraint ) ) ; <nl> + buffer + = sizeof ( max_constraint ) ; <nl> std : : memcpy ( buffer , & num_cat_threshold , sizeof ( num_cat_threshold ) ) ; <nl> buffer + = sizeof ( num_cat_threshold ) ; <nl> std : : memcpy ( buffer , cat_threshold . data ( ) , sizeof ( uint32_t ) * num_cat_threshold ) ; <nl> struct SplitInfo { <nl> buffer + = sizeof ( right_sum_hessian ) ; <nl> std : : memcpy ( & default_left , buffer , sizeof ( default_left ) ) ; <nl> buffer + = sizeof ( default_left ) ; <nl> + std : : memcpy ( & monotone_type , buffer , sizeof ( monotone_type ) ) ; <nl> + buffer + = sizeof ( monotone_type ) ; <nl> + std : : memcpy ( & min_constraint , buffer , sizeof ( min_constraint ) ) ; <nl> + buffer + = sizeof ( min_constraint ) ; <nl> + std : : memcpy ( & max_constraint , buffer , sizeof ( max_constraint ) ) ; <nl> + buffer + = sizeof ( max_constraint ) ; <nl> std : : memcpy ( & num_cat_threshold , buffer , sizeof ( num_cat_threshold ) ) ; <nl> buffer + = sizeof ( num_cat_threshold ) ; <nl> cat_threshold . resize ( num_cat_threshold ) ; <nl> mmm a / src / treelearner / voting_parallel_tree_learner . cpp <nl> ppp b / src / treelearner / voting_parallel_tree_learner . cpp <nl> void VotingParallelTreeLearner < TREELEARNER_T > : : Init ( const Dataset * train_data , b <nl> feature_metas_ [ i ] . num_bin = train_data - > FeatureNumBin ( i ) ; <nl> feature_metas_ [ i ] . default_bin = train_data - > FeatureBinMapper ( i ) - > GetDefaultBin ( ) ; <nl> feature_metas_ [ i ] . missing_type = train_data - > FeatureBinMapper ( i ) - > missing_type ( ) ; <nl> + feature_metas_ [ i ] . monotone_type = train_data - > FeatureMonotone ( i ) ; <nl> if ( train_data - > FeatureBinMapper ( i ) - > GetDefaultBin ( ) = = 0 ) { <nl> feature_metas_ [ i ] . bias = 1 ; <nl> } else { <nl> void VotingParallelTreeLearner < TREELEARNER_T > : : FindBestSplits ( ) { <nl> this - > smaller_leaf_splits_ - > sum_gradients ( ) , <nl> this - > smaller_leaf_splits_ - > sum_hessians ( ) , <nl> this - > smaller_leaf_splits_ - > num_data_in_leaf ( ) , <nl> + this - > smaller_leaf_splits_ - > min_constraint ( ) , <nl> + this - > smaller_leaf_splits_ - > max_constraint ( ) , <nl> & smaller_bestsplit_per_features [ feature_index ] ) ; <nl> smaller_bestsplit_per_features [ feature_index ] . feature = real_feature_index ; <nl> / / only has root leaf <nl> void VotingParallelTreeLearner < TREELEARNER_T > : : FindBestSplits ( ) { <nl> this - > larger_leaf_splits_ - > sum_gradients ( ) , <nl> this - > larger_leaf_splits_ - > sum_hessians ( ) , <nl> this - > larger_leaf_splits_ - > num_data_in_leaf ( ) , <nl> + this - > larger_leaf_splits_ - > min_constraint ( ) , <nl> + this - > larger_leaf_splits_ - > max_constraint ( ) , <nl> & larger_bestsplit_per_features [ feature_index ] ) ; <nl> larger_bestsplit_per_features [ feature_index ] . feature = real_feature_index ; <nl> OMP_LOOP_EX_END ( ) ; <nl> void VotingParallelTreeLearner < TREELEARNER_T > : : FindBestSplitsFromHistograms ( cons <nl> smaller_leaf_splits_global_ - > sum_gradients ( ) , <nl> smaller_leaf_splits_global_ - > sum_hessians ( ) , <nl> GetGlobalDataCountInLeaf ( smaller_leaf_splits_global_ - > LeafIndex ( ) ) , <nl> + smaller_leaf_splits_global_ - > min_constraint ( ) , <nl> + smaller_leaf_splits_global_ - > max_constraint ( ) , <nl> & smaller_split ) ; <nl> smaller_split . feature = real_feature_index ; <nl> if ( smaller_split > smaller_bests_per_thread [ tid ] ) { <nl> void VotingParallelTreeLearner < TREELEARNER_T > : : FindBestSplitsFromHistograms ( cons <nl> larger_leaf_splits_global_ - > sum_gradients ( ) , <nl> larger_leaf_splits_global_ - > sum_hessians ( ) , <nl> GetGlobalDataCountInLeaf ( larger_leaf_splits_global_ - > LeafIndex ( ) ) , <nl> + larger_leaf_splits_global_ - > min_constraint ( ) , <nl> + larger_leaf_splits_global_ - > max_constraint ( ) , <nl> & larger_split ) ; <nl> larger_split . feature = real_feature_index ; <nl> if ( larger_split > larger_best_per_thread [ tid ] ) { <nl> void VotingParallelTreeLearner < TREELEARNER_T > : : Split ( Tree * tree , int best_Leaf , <nl> / / set the global number of data for leaves <nl> global_data_count_in_leaf_ [ * left_leaf ] = best_split_info . left_count ; <nl> global_data_count_in_leaf_ [ * right_leaf ] = best_split_info . right_count ; <nl> + auto p_left = smaller_leaf_splits_global_ . get ( ) ; <nl> + auto p_right = larger_leaf_splits_global_ . get ( ) ; <nl> / / init the global sumup info <nl> if ( best_split_info . left_count < best_split_info . right_count ) { <nl> smaller_leaf_splits_global_ - > Init ( * left_leaf , this - > data_partition_ . get ( ) , <nl> void VotingParallelTreeLearner < TREELEARNER_T > : : Split ( Tree * tree , int best_Leaf , <nl> larger_leaf_splits_global_ - > Init ( * left_leaf , this - > data_partition_ . get ( ) , <nl> best_split_info . left_sum_gradient , <nl> best_split_info . left_sum_hessian ) ; <nl> + p_left = larger_leaf_splits_global_ . get ( ) ; <nl> + p_right = smaller_leaf_splits_global_ . get ( ) ; <nl> + } <nl> + const int inner_feature_index = this - > train_data_ - > InnerFeatureIndex ( best_split_info . feature ) ; <nl> + bool is_numerical_split = this - > train_data_ - > FeatureBinMapper ( inner_feature_index ) - > bin_type ( ) = = BinType : : NumericalBin ; <nl> + p_left - > SetValueConstraint ( best_split_info . min_constraint , best_split_info . max_constraint ) ; <nl> + p_right - > SetValueConstraint ( best_split_info . min_constraint , best_split_info . max_constraint ) ; <nl> + if ( is_numerical_split ) { <nl> + double mid = ( best_split_info . left_output + best_split_info . right_output ) / 2 . 0f ; <nl> + if ( best_split_info . monotone_type < 0 ) { <nl> + p_left - > SetValueConstraint ( mid , best_split_info . max_constraint ) ; <nl> + p_right - > SetValueConstraint ( best_split_info . min_constraint , mid ) ; <nl> + } else if ( best_split_info . monotone_type > 0 ) { <nl> + p_left - > SetValueConstraint ( best_split_info . min_constraint , mid ) ; <nl> + p_right - > SetValueConstraint ( mid , best_split_info . max_constraint ) ; <nl> + } <nl> } <nl> } <nl> <nl> mmm a / tests / python_package_test / test_engine . py <nl> ppp b / tests / python_package_test / test_engine . py <nl> def train_and_get_predictions ( features , labels ) : <nl> assert np . all ( sliced_csr = = features ) <nl> sliced_pred = train_and_get_predictions ( sliced_csr , sliced_labels ) <nl> np . testing . assert_almost_equal ( origin_pred , sliced_pred ) <nl> + <nl> + def test_monotone_constraint ( self ) : <nl> + def is_increasing ( y ) : <nl> + return np . count_nonzero ( np . diff ( y ) < 0 . 0 ) = = 0 <nl> + <nl> + def is_decreasing ( y ) : <nl> + return np . count_nonzero ( np . diff ( y ) > 0 . 0 ) = = 0 <nl> + <nl> + def is_correctly_constrained ( learner ) : <nl> + n = 200 <nl> + variable_x = np . linspace ( 0 , 1 , n ) . reshape ( ( n , 1 ) ) <nl> + fixed_xs_values = np . linspace ( 0 , 1 , n ) <nl> + for i in range ( n ) : <nl> + fixed_x = fixed_xs_values [ i ] * np . ones ( ( n , 1 ) ) <nl> + monotonically_increasing_x = np . column_stack ( ( variable_x , fixed_x ) ) <nl> + monotonically_increasing_y = learner . predict ( monotonically_increasing_x ) <nl> + monotonically_decreasing_x = np . column_stack ( ( fixed_x , variable_x ) ) <nl> + monotonically_decreasing_y = learner . predict ( monotonically_decreasing_x ) <nl> + if not ( is_increasing ( monotonically_increasing_y ) and is_decreasing ( monotonically_decreasing_y ) ) : <nl> + return False <nl> + return True <nl> + <nl> + number_of_dpoints = 3000 <nl> + x1_positively_correlated_with_y = np . random . random ( size = number_of_dpoints ) <nl> + x2_negatively_correlated_with_y = np . random . random ( size = number_of_dpoints ) <nl> + x = np . column_stack ( ( x1_positively_correlated_with_y , x2_negatively_correlated_with_y ) ) <nl> + zs = np . random . normal ( loc = 0 . 0 , scale = 0 . 01 , size = number_of_dpoints ) <nl> + y = ( <nl> + 5 * x1_positively_correlated_with_y + <nl> + np . sin ( 10 * np . pi * x1_positively_correlated_with_y ) - <nl> + 5 * x2_negatively_correlated_with_y - <nl> + np . cos ( 10 * np . pi * x2_negatively_correlated_with_y ) + <nl> + zs <nl> + ) <nl> + trainset = lgb . Dataset ( x , label = y ) <nl> + params = { <nl> + ' min_data ' : 20 , <nl> + ' num_leaves ' : 20 , <nl> + ' monotone_constraints ' : ' 1 , - 1 ' <nl> + } <nl> + constrained_model = lgb . train ( params , trainset ) <nl> + assert is_correctly_constrained ( constrained_model ) <nl>
Monotone Constraint ( )
microsoft/LightGBM
e005cdb049271ecdd4e631043517ac18f6c9a867
2018-04-18T03:12:36Z
mmm a / lib / ParseSIL / ParseSIL . cpp <nl> ppp b / lib / ParseSIL / ParseSIL . cpp <nl> namespace { <nl> SILSpecializeAttr : : SpecializationKind kind ; <nl> } ; <nl> <nl> + enum class ConformanceContext { <nl> + / / / A normal conformance parse . <nl> + Ordinary , <nl> + <nl> + / / / We ' re parsing this for a SIL witness table . <nl> + / / / Leave any generic parameter clauses in scope , and use an explicit <nl> + / / / self - conformance instead of an abstract one . <nl> + WitnessTable , <nl> + } ; <nl> + <nl> class SILParser { <nl> friend SILParserTUState ; <nl> public : <nl> namespace { <nl> void convertRequirements ( SILFunction * F , ArrayRef < RequirementRepr > From , <nl> SmallVectorImpl < Requirement > & To ) ; <nl> <nl> - ProtocolConformance * <nl> + Optional < ProtocolConformanceRef > <nl> parseProtocolConformanceHelper ( ProtocolDecl * & proto , <nl> GenericEnvironment * GenericEnv , <nl> - bool localScope , <nl> + ConformanceContext context , <nl> ProtocolDecl * defaultForProto ) ; <nl> public : <nl> SILParser ( Parser & P ) <nl> namespace { <nl> GenericEnvironment * GenericEnv = nullptr , <nl> ProtocolDecl * defaultForProto = nullptr ) ; <nl> <nl> - ProtocolConformance * parseProtocolConformance ( ProtocolDecl * & proto , <nl> + Optional < ProtocolConformanceRef > <nl> + parseProtocolConformance ( ProtocolDecl * & proto , <nl> GenericEnvironment * & genericEnv , <nl> - bool localScope , <nl> + ConformanceContext context , <nl> ProtocolDecl * defaultForProto ) ; <nl> - ProtocolConformance * parseProtocolConformance ( <nl> - ProtocolDecl * defaultForProto ) { <nl> + Optional < ProtocolConformanceRef > <nl> + parseProtocolConformance ( ProtocolDecl * defaultForProto , <nl> + ConformanceContext context ) { <nl> ProtocolDecl * dummy ; <nl> GenericEnvironment * env ; <nl> - return parseProtocolConformance ( dummy , env , true , defaultForProto ) ; <nl> + return parseProtocolConformance ( dummy , env , context , defaultForProto ) ; <nl> } <nl> <nl> Optional < llvm : : coverage : : Counter > <nl> static CanType parseAssociatedTypePath ( Parser & P , SILParser & SP , <nl> return CanType ( ) ; <nl> } <nl> <nl> - static NormalProtocolConformance * parseNormalProtocolConformance ( Parser & P , <nl> - SILParser & SP , Type ConformingTy , ProtocolDecl * & proto ) { <nl> + static bool isSelfConformance ( Type conformingType , ProtocolDecl * protocol ) { <nl> + if ( auto protoTy = conformingType - > getAs < ProtocolType > ( ) ) <nl> + return protoTy - > getDecl ( ) = = protocol ; <nl> + return false ; <nl> + } <nl> + <nl> + static Optional < ProtocolConformanceRef > parseRootProtocolConformance ( Parser & P , <nl> + SILParser & SP , Type ConformingTy , ProtocolDecl * & proto , <nl> + ConformanceContext context ) { <nl> Identifier ModuleKeyword , ModuleName ; <nl> SourceLoc Loc , KeywordLoc ; <nl> proto = parseProtocolDecl ( P , SP ) ; <nl> if ( ! proto ) <nl> - return nullptr ; <nl> + return None ; <nl> <nl> if ( P . parseIdentifier ( ModuleKeyword , KeywordLoc , <nl> diag : : expected_tok_in_sil_instr , " module " ) | | <nl> SP . parseSILIdentifier ( ModuleName , Loc , <nl> diag : : expected_sil_value_name ) ) <nl> - return nullptr ; <nl> + return None ; <nl> <nl> if ( ModuleKeyword . str ( ) ! = " module " ) { <nl> P . diagnose ( KeywordLoc , diag : : expected_tok_in_sil_instr , " module " ) ; <nl> - return nullptr ; <nl> + return None ; <nl> } <nl> <nl> - / / FIXME : we currently emit _CocoaArrayType : _CocoaArrayType . <nl> - if ( ConformingTy - > is < ProtocolType > ( ) & & <nl> - ConformingTy - > getAs < ProtocolType > ( ) - > getDecl ( ) = = proto ) <nl> - return nullptr ; <nl> - <nl> / / Calling lookupConformance on a BoundGenericType will return a specialized <nl> / / conformance . We use UnboundGenericType to find the normal conformance . <nl> Type lookupTy = ConformingTy ; <nl> static NormalProtocolConformance * parseNormalProtocolConformance ( Parser & P , <nl> auto lookup = P . SF . getParentModule ( ) - > lookupConformance ( lookupTy , proto ) ; <nl> if ( ! lookup ) { <nl> P . diagnose ( KeywordLoc , diag : : sil_witness_protocol_conformance_not_found ) ; <nl> - return nullptr ; <nl> + return None ; <nl> } <nl> - if ( ! lookup - > isConcrete ( ) ) { <nl> - P . diagnose ( KeywordLoc , diag : : sil_witness_protocol_conformance_not_found ) ; <nl> - return nullptr ; <nl> + <nl> + / / Use a concrete self - conformance if we ' re parsing this for a witness table . <nl> + if ( context = = ConformanceContext : : WitnessTable & & <nl> + ! lookup - > isConcrete ( ) & & <nl> + isSelfConformance ( ConformingTy , proto ) ) { <nl> + lookup = ProtocolConformanceRef ( P . Context . getSelfConformance ( proto ) ) ; <nl> } <nl> - return lookup - > getConcrete ( ) - > getRootNormalConformance ( ) ; <nl> + <nl> + return lookup ; <nl> } <nl> <nl> / / / protocol - conformance : : = normal - protocol - conformance <nl> static NormalProtocolConformance * parseNormalProtocolConformance ( Parser & P , <nl> / / / normal - protocol - conformance : : = <nl> / / / generic - parameter - list ? type : protocolName module ModuleName <nl> / / / Note that generic - parameter - list is already parsed before calling this . <nl> - ProtocolConformance * SILParser : : parseProtocolConformance ( <nl> + Optional < ProtocolConformanceRef > SILParser : : parseProtocolConformance ( <nl> ProtocolDecl * & proto , <nl> GenericEnvironment * & genericEnv , <nl> - bool localScope , <nl> + ConformanceContext context , <nl> ProtocolDecl * defaultForProto ) { <nl> / / Parse generic params for the protocol conformance . We need to make sure <nl> / / they have the right scope . <nl> Optional < Scope > GenericsScope ; <nl> - if ( localScope ) <nl> + if ( context = = ConformanceContext : : Ordinary ) <nl> GenericsScope . emplace ( & P , ScopeKind : : Generics ) ; <nl> <nl> / / Make sure we don ' t leave it uninitialized in the caller <nl> ProtocolConformance * SILParser : : parseProtocolConformance ( <nl> genericEnv = handleSILGenericParams ( P . Context , genericParams , & P . SF ) ; <nl> } <nl> <nl> - ProtocolConformance * retVal = <nl> - parseProtocolConformanceHelper ( proto , genericEnv , localScope , <nl> - defaultForProto ) ; <nl> + auto retVal = parseProtocolConformanceHelper ( proto , genericEnv , context , <nl> + defaultForProto ) ; <nl> <nl> - if ( localScope ) { <nl> + if ( GenericsScope ) { <nl> GenericsScope . reset ( ) ; <nl> } <nl> return retVal ; <nl> } <nl> <nl> - ProtocolConformance * SILParser : : parseProtocolConformanceHelper ( <nl> + Optional < ProtocolConformanceRef > SILParser : : parseProtocolConformanceHelper ( <nl> ProtocolDecl * & proto , <nl> GenericEnvironment * witnessEnv , <nl> - bool localScope , <nl> + ConformanceContext context , <nl> ProtocolDecl * defaultForProto ) { <nl> / / Parse AST type . <nl> ParserResult < TypeRepr > TyR = P . parseType ( ) ; <nl> if ( TyR . isNull ( ) ) <nl> - return nullptr ; <nl> + return None ; <nl> TypeLoc Ty = TyR . get ( ) ; <nl> if ( defaultForProto ) { <nl> bindProtocolSelfInTypeRepr ( Ty , defaultForProto ) ; <nl> ProtocolConformance * SILParser : : parseProtocolConformanceHelper ( <nl> <nl> if ( performTypeLocChecking ( Ty , / * IsSILType = * / false , witnessEnv , <nl> defaultForProto ) ) <nl> - return nullptr ; <nl> + return None ; <nl> auto ConformingTy = Ty . getType ( ) ; <nl> <nl> if ( P . parseToken ( tok : : colon , diag : : expected_sil_witness_colon ) ) <nl> - return nullptr ; <nl> + return None ; <nl> <nl> if ( P . Tok . is ( tok : : identifier ) & & P . Tok . getText ( ) = = " specialize " ) { <nl> P . consumeToken ( ) ; <nl> ProtocolConformance * SILParser : : parseProtocolConformanceHelper ( <nl> / / Parse substitutions for specialized conformance . <nl> SmallVector < ParsedSubstitution , 4 > parsedSubs ; <nl> if ( parseSubstitutions ( parsedSubs , witnessEnv , defaultForProto ) ) <nl> - return nullptr ; <nl> + return None ; <nl> <nl> if ( P . parseToken ( tok : : l_paren , diag : : expected_sil_witness_lparen ) ) <nl> - return nullptr ; <nl> + return None ; <nl> ProtocolDecl * dummy ; <nl> GenericEnvironment * specializedEnv ; <nl> auto genericConform = <nl> - parseProtocolConformance ( dummy , specializedEnv , localScope , <nl> + parseProtocolConformance ( dummy , specializedEnv , <nl> + ConformanceContext : : Ordinary , <nl> defaultForProto ) ; <nl> - if ( ! genericConform ) <nl> - return nullptr ; <nl> + if ( ! genericConform | | ! genericConform - > isConcrete ( ) ) <nl> + return None ; <nl> if ( P . parseToken ( tok : : r_paren , diag : : expected_sil_witness_rparen ) ) <nl> - return nullptr ; <nl> + return None ; <nl> <nl> SubstitutionMap subMap = <nl> getApplySubstitutionsFromParsed ( * this , specializedEnv , parsedSubs ) ; <nl> if ( ! subMap ) <nl> - return nullptr ; <nl> + return None ; <nl> <nl> auto result = P . Context . getSpecializedConformance ( <nl> - ConformingTy , genericConform , subMap ) ; <nl> - return result ; <nl> + ConformingTy , genericConform - > getConcrete ( ) , subMap ) ; <nl> + return ProtocolConformanceRef ( result ) ; <nl> } <nl> <nl> if ( P . Tok . is ( tok : : identifier ) & & P . Tok . getText ( ) = = " inherit " ) { <nl> P . consumeToken ( ) ; <nl> <nl> if ( P . parseToken ( tok : : l_paren , diag : : expected_sil_witness_lparen ) ) <nl> - return nullptr ; <nl> - auto baseConform = parseProtocolConformance ( defaultForProto ) ; <nl> - if ( ! baseConform ) <nl> - return nullptr ; <nl> + return None ; <nl> + auto baseConform = parseProtocolConformance ( defaultForProto , <nl> + ConformanceContext : : Ordinary ) ; <nl> + if ( ! baseConform | | ! baseConform - > isConcrete ( ) ) <nl> + return None ; <nl> if ( P . parseToken ( tok : : r_paren , diag : : expected_sil_witness_rparen ) ) <nl> - return nullptr ; <nl> + return None ; <nl> <nl> - return P . Context . getInheritedConformance ( ConformingTy , baseConform ) ; <nl> + auto result = P . Context . getInheritedConformance ( ConformingTy , <nl> + baseConform - > getConcrete ( ) ) ; <nl> + return ProtocolConformanceRef ( result ) ; <nl> } <nl> <nl> - auto retVal = parseNormalProtocolConformance ( P , * this , ConformingTy , proto ) ; <nl> + auto retVal = <nl> + parseRootProtocolConformance ( P , * this , ConformingTy , proto , context ) ; <nl> return retVal ; <nl> } <nl> <nl> static bool parseSILVTableEntry ( <nl> return true ; <nl> if ( P . parseToken ( tok : : colon , diag : : expected_sil_witness_colon ) ) <nl> return true ; <nl> - ProtocolConformance * conform = <nl> - witnessState . parseProtocolConformance ( defaultForProto ) ; <nl> - if ( ! conform ) / / Ignore this witness entry for now . <nl> + auto conform = <nl> + witnessState . parseProtocolConformance ( defaultForProto , <nl> + ConformanceContext : : Ordinary ) ; <nl> + if ( ! conform | | ! conform - > isConcrete ( ) ) / / Ignore this witness entry for now . <nl> return false ; <nl> <nl> witnessEntries . push_back ( SILWitnessTable : : BaseProtocolWitness { <nl> - proto , conform <nl> + proto , conform - > getConcrete ( ) <nl> } ) ; <nl> return false ; <nl> } <nl> static bool parseSILVTableEntry ( <nl> <nl> ProtocolConformanceRef conformance ( proto ) ; <nl> if ( P . Tok . getText ( ) ! = " dependent " ) { <nl> - auto concrete = witnessState . parseProtocolConformance ( defaultForProto ) ; <nl> - if ( ! concrete ) / / Ignore this witness entry for now . <nl> + auto concrete = <nl> + witnessState . parseProtocolConformance ( defaultForProto , <nl> + ConformanceContext : : Ordinary ) ; <nl> + if ( ! concrete & & ! concrete - > isConcrete ( ) ) / / Ignore this for now . <nl> return false ; <nl> - conformance = ProtocolConformanceRef ( concrete ) ; <nl> + conformance = * concrete ; <nl> } else { <nl> P . consumeToken ( ) ; <nl> } <nl> bool SILParserTUState : : parseSILWitnessTable ( Parser & P ) { <nl> GenericEnvironment * witnessEnv ; <nl> auto conf = WitnessState . parseProtocolConformance ( proto , <nl> witnessEnv , <nl> - false / * localScope * / , <nl> + ConformanceContext : : WitnessTable , <nl> nullptr ) ; <nl> WitnessState . ContextGenericEnv = witnessEnv ; <nl> <nl> - / / FIXME : support parsing a self - conformance here . <nl> - auto theConformance <nl> - = dyn_cast_or_null < RootProtocolConformance > ( conf ) ; <nl> + / / FIXME : should we really allow a specialized or inherited conformance here ? <nl> + auto theConformance = <nl> + ( conf & & conf - > isConcrete ( ) ) <nl> + ? conf - > getConcrete ( ) - > getRootConformance ( ) <nl> + : nullptr ; <nl> <nl> SILWitnessTable * wt = nullptr ; <nl> if ( theConformance ) { <nl>
Fix the parsing of self - conformance witness tables .
apple/swift
49268479ab285af5fdadf32392ad715b095e7843
2018-11-16T22:43:11Z
mmm a / Documentation / UserManual / Foxx . md <nl> ppp b / Documentation / UserManual / Foxx . md <nl> <nl> Foxx { # UserManualFoxx } <nl> = = = = = = = = = = = = = = = = = = = = = = <nl> <nl> + @ NAVIGATE_UserManualFoxx <nl> + @ EMBEDTOC { UserManualFoxxTOC } <nl> + <nl> Foxx : Build APIs and simple web applications in ArangoDB <nl> = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = <nl> <nl> new file mode 100644 <nl> index 00000000000 . . 939b7a63284 <nl> mmm / dev / null <nl> ppp b / Documentation / UserManual / FoxxTOC . md <nl> <nl> + TOC { # UserManualFoxxTOC } <nl> + = = = = = = = = = = = = = = = = = = = = = = = = <nl> + <nl> + - @ ref UserManualFoxx <nl> mmm a / Documentation / UserManual / UserManual . md <nl> ppp b / Documentation / UserManual / UserManual . md <nl> ArangoDB ' s User Manual ( @ VERSION ) { # UserManual } <nl> @ CHAPTER_REF { ExtendingAql } <nl> @ CHAPTER_REF { AqlExamples } <nl> @ CHAPTER_REF { UserManualActions } <nl> + @ CHAPTER_REF { UserManualFoxx } <nl> @ CHAPTER_REF { Transactions } <nl> @ CHAPTER_REF { CommandLine } <nl> @ CHAPTER_REF { Glossary } <nl>
issue : added Foxx documentation to User manual
arangodb/arangodb
2ca29c1c533fc14f70655161cfa20d2c356ddb33
2013-06-27T10:46:16Z
mmm a / drivers / java / build . mk <nl> ppp b / drivers / java / build . mk <nl> JAVA_PROTO_DIR = $ ( JAVA_GEN_DIR ) / proto <nl> JAVA_AST_DIR = $ ( JAVA_GEN_DIR ) / ast <nl> JAVA_MODEL_DIR = $ ( JAVA_GEN_DIR ) / model <nl> JAVA_EXC_DIR = $ ( JAVA_GEN_DIR ) / exc <nl> - JAVA_TEST_DIR = $ ( JAVA_SRC_DIR ) / src / test / java <nl> + JAVA_TEST_DIR = $ ( JAVA_SRC_DIR ) / src / test / java / com / rethinkdb <nl> JAVA_TEST_GEN_DIR = $ ( JAVA_TEST_DIR ) / gen <nl> <nl> METAJAVA = $ ( JAVA_SRC_DIR ) / metajava . py <nl> mmm a / drivers / java / convert_tests . py <nl> ppp b / drivers / java / convert_tests . py <nl> def parse_args ( ) : <nl> parser . add_argument ( <nl> " - - test - output - dir " , <nl> help = " Directory to render tests to " , <nl> - default = " . / src / test / java / gen " , <nl> + default = " . / src / test / java / com / rethinkdb / gen " , <nl> ) <nl> parser . add_argument ( <nl> " - - template - dir " , <nl> similarity index 99 % <nl> rename from drivers / java / src / test / java / RethinkDBTest . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / RethinkDBTest . java <nl> mmm a / drivers / java / src / test / java / RethinkDBTest . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / RethinkDBTest . java <nl> <nl> - import com . rethinkdb . RethinkDB ; <nl> + package com . rethinkdb ; <nl> + <nl> import com . rethinkdb . gen . exc . ReqlError ; <nl> import com . rethinkdb . gen . exc . ReqlQueryLogicError ; <nl> import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> import com . rethinkdb . net . Cursor ; <nl> - import gen . TestingFramework ; <nl> - import org . junit . Assert ; <nl> import org . junit . * ; <nl> import org . junit . rules . ExpectedException ; <nl> <nl> import java . time . OffsetDateTime ; <nl> - import java . util . * ; <nl> + import java . util . Arrays ; <nl> + import java . util . List ; <nl> + import java . util . Map ; <nl> <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertTrue ; <nl> similarity index 96 % <nl> rename from drivers / java / src / test / java / TestPojo . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / TestPojo . java <nl> mmm a / drivers / java / src / test / java / TestPojo . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / TestPojo . java <nl> <nl> + package com . rethinkdb ; <nl> + <nl> / * * <nl> * Has both public parameterless constructor and public parametrized constructor <nl> * / <nl> similarity index 96 % <nl> rename from drivers / java / src / test / java / TestPojoInner . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / TestPojoInner . java <nl> mmm a / drivers / java / src / test / java / TestPojoInner . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / TestPojoInner . java <nl> <nl> + package com . rethinkdb ; <nl> + <nl> / * * <nl> * Has only public parametrized constructor and no public parameterless constructor <nl> * / <nl> similarity index 99 % <nl> rename from drivers / java / src / test / java / TestingCommon . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / TestingCommon . java <nl> mmm a / drivers / java / src / test / java / TestingCommon . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / TestingCommon . java <nl> <nl> - package gen ; <nl> + package com . rethinkdb ; <nl> <nl> import com . rethinkdb . ast . ReqlAst ; <nl> import com . rethinkdb . model . OptArgs ; <nl> similarity index 56 % <nl> rename from drivers / java / src / test / java / TestingFramework . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / TestingFramework . java <nl> mmm a / drivers / java / src / test / java / TestingFramework . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / TestingFramework . java <nl> <nl> - package gen ; <nl> + package com . rethinkdb ; <nl> <nl> - import com . rethinkdb . RethinkDB ; <nl> import com . rethinkdb . net . Connection ; <nl> <nl> import java . io . File ; <nl> <nl> private static final String HOST_NAME = " hostName " ; <nl> private static final String PORT = " port " ; <nl> <nl> + private static Configuration configuration ; <nl> + <nl> / * * <nl> * Read the test configuration . Put a propertiy file called " test - config - override . properties " in the working <nl> * directory of the tests to override default values . <nl> <nl> * < / P > <nl> * / <nl> public static Configuration getConfig ( ) { <nl> - Properties config = new Properties ( ) ; <nl> + if ( configuration = = null ) { <nl> + Properties config = new Properties ( ) ; <nl> <nl> - try ( InputStream is = TestingFramework . class . getResourceAsStream ( DEFAULT_CONFIG_RESOURCE ) ) { <nl> - config . load ( is ) ; <nl> - } catch ( IOException e ) { <nl> - throw new IllegalStateException ( e ) ; <nl> - } <nl> + try ( InputStream is = TestingFramework . class . getClassLoader ( ) . getResourceAsStream ( DEFAULT_CONFIG_RESOURCE ) ) { <nl> + config . load ( is ) ; <nl> + } catch ( NullPointerException | IOException e ) { <nl> + throw new IllegalStateException ( e ) ; <nl> + } <nl> <nl> - / / Check the local override file . <nl> - String workdir = System . getProperty ( " user . dir " ) ; <nl> - File defaultFile = new File ( workdir , OVERRIDE_FILE_NAME ) ; <nl> - if ( defaultFile . exists ( ) ) { <nl> - try ( InputStream is = new FileInputStream ( defaultFile ) ) { <nl> - config . load ( is ) ; <nl> - } catch ( IOException e ) { <nl> - throw new IllegalStateException ( e ) ; <nl> + / / Check the local override file . <nl> + String workdir = System . getProperty ( " user . dir " ) ; <nl> + File defaultFile = new File ( workdir , OVERRIDE_FILE_NAME ) ; <nl> + if ( defaultFile . exists ( ) ) { <nl> + try ( InputStream is = new FileInputStream ( defaultFile ) ) { <nl> + config . load ( is ) ; <nl> + } catch ( IOException e ) { <nl> + throw new IllegalStateException ( e ) ; <nl> + } <nl> } <nl> - } <nl> <nl> - Configuration result = new Configuration ( ) ; <nl> - result . setHostName ( config . getProperty ( " hostName " ) . trim ( ) ) ; <nl> - result . setPort ( Integer . parseInt ( config . getProperty ( " port " ) . trim ( ) ) ) ; <nl> - return result ; <nl> + configuration = new Configuration ( ) ; <nl> + configuration . setHostName ( config . getProperty ( " hostName " ) . trim ( ) ) ; <nl> + configuration . setPort ( Integer . parseInt ( config . getProperty ( " port " ) . trim ( ) ) ) ; <nl> + } <nl> + return configuration ; <nl> } <nl> <nl> / * * <nl> * @ return A new connection from the configuration . <nl> * / <nl> public static Connection createConnection ( ) throws Exception { <nl> - Configuration config = getConfig ( ) ; <nl> - <nl> return RethinkDB . r . connection ( ) <nl> - . hostname ( config . getHostName ( ) ) <nl> - . port ( config . getPort ( ) ) <nl> - . connect ( ) ; <nl> + . hostname ( getConfig ( ) . getHostName ( ) ) <nl> + . port ( getConfig ( ) . getPort ( ) ) <nl> + . connect ( ) ; <nl> } <nl> <nl> / * * <nl> similarity index 95 % <nl> rename from drivers / java / src / test / java / gen / ChangefeedsIncludeStates . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / ChangefeedsIncludeStates . java <nl> mmm a / drivers / java / src / test / java / gen / ChangefeedsIncludeStates . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / ChangefeedsIncludeStates . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class ChangefeedsIncludeStates { <nl> / / Test ` include_states ` <nl> similarity index 96 % <nl> rename from drivers / java / src / test / java / gen / ChangefeedsTable . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / ChangefeedsTable . java <nl> mmm a / drivers / java / src / test / java / gen / ChangefeedsTable . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / ChangefeedsTable . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class ChangefeedsTable { <nl> / / Test changefeeds on a table <nl> similarity index 98 % <nl> rename from drivers / java / src / test / java / gen / DatumArray . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / DatumArray . java <nl> mmm a / drivers / java / src / test / java / gen / DatumArray . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / DatumArray . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class DatumArray { <nl> / / Tests conversion to and from the RQL array type <nl> similarity index 99 % <nl> rename from drivers / java / src / test / java / gen / DatumBinary . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / DatumBinary . java <nl> mmm a / drivers / java / src / test / java / gen / DatumBinary . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / DatumBinary . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class DatumBinary { <nl> / / Tests of converstion to and from the RQL binary type <nl> similarity index 93 % <nl> rename from drivers / java / src / test / java / gen / DatumBool . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / DatumBool . java <nl> mmm a / drivers / java / src / test / java / gen / DatumBool . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / DatumBool . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class DatumBool { <nl> / / Tests of conversion to and from the RQL bool type <nl> similarity index 86 % <nl> rename from drivers / java / src / test / java / gen / DatumNull . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / DatumNull . java <nl> mmm a / drivers / java / src / test / java / gen / DatumNull . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / DatumNull . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class DatumNull { <nl> / / Tests of conversion to and from the RQL null type <nl> similarity index 95 % <nl> rename from drivers / java / src / test / java / gen / DatumNumber . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / DatumNumber . java <nl> mmm a / drivers / java / src / test / java / gen / DatumNumber . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / DatumNumber . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class DatumNumber { <nl> / / Tests of conversion to and from the RQL number type <nl> similarity index 95 % <nl> rename from drivers / java / src / test / java / gen / DatumObject . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / DatumObject . java <nl> mmm a / drivers / java / src / test / java / gen / DatumObject . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / DatumObject . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class DatumObject { <nl> / / Tests conversion to and from the RQL object type <nl> similarity index 99 % <nl> rename from drivers / java / src / test / java / gen / DatumString . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / DatumString . java <nl> mmm a / drivers / java / src / test / java / gen / DatumString . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / DatumString . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class DatumString { <nl> / / Tests of converstion to and from the RQL string type <nl> similarity index 81 % <nl> rename from drivers / java / src / test / java / gen / DatumTypeof . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / DatumTypeof . java <nl> mmm a / drivers / java / src / test / java / gen / DatumTypeof . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / DatumTypeof . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class DatumTypeof { <nl> / / These tests test the type of command <nl> similarity index 91 % <nl> rename from drivers / java / src / test / java / gen / DatumUuid . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / DatumUuid . java <nl> mmm a / drivers / java / src / test / java / gen / DatumUuid . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / DatumUuid . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class DatumUuid { <nl> / / Test that UUIDs work <nl> similarity index 98 % <nl> rename from drivers / java / src / test / java / gen / Default . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / Default . java <nl> mmm a / drivers / java / src / test / java / gen / Default . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / Default . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class Default { <nl> / / Tests r . default <nl> similarity index 97 % <nl> rename from drivers / java / src / test / java / gen / GeoConstructors . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / GeoConstructors . java <nl> mmm a / drivers / java / src / test / java / gen / GeoConstructors . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / GeoConstructors . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class GeoConstructors { <nl> / / Test geo constructors <nl> similarity index 94 % <nl> rename from drivers / java / src / test / java / gen / GeoGeojson . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / GeoGeojson . java <nl> mmm a / drivers / java / src / test / java / gen / GeoGeojson . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / GeoGeojson . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class GeoGeojson { <nl> / / Test geoJSON conversion <nl> similarity index 98 % <nl> rename from drivers / java / src / test / java / gen / GeoIntersectionInclusion . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / GeoIntersectionInclusion . java <nl> mmm a / drivers / java / src / test / java / gen / GeoIntersectionInclusion . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / GeoIntersectionInclusion . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class GeoIntersectionInclusion { <nl> / / Test intersects and includes semantics <nl> similarity index 98 % <nl> rename from drivers / java / src / test / java / gen / GeoOperations . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / GeoOperations . java <nl> mmm a / drivers / java / src / test / java / gen / GeoOperations . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / GeoOperations . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class GeoOperations { <nl> / / Test basic geometry operators <nl> similarity index 95 % <nl> rename from drivers / java / src / test / java / gen / GeoPrimitives . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / GeoPrimitives . java <nl> mmm a / drivers / java / src / test / java / gen / GeoPrimitives . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / GeoPrimitives . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class GeoPrimitives { <nl> / / Test geometric primitive constructors <nl> similarity index 97 % <nl> rename from drivers / java / src / test / java / gen / Json . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / Json . java <nl> mmm a / drivers / java / src / test / java / gen / Json . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / Json . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class Json { <nl> / / Tests RQL json parsing <nl> similarity index 94 % <nl> rename from drivers / java / src / test / java / gen / Match . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / Match . java <nl> mmm a / drivers / java / src / test / java / gen / Match . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / Match . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class Match { <nl> / / Tests for match <nl> similarity index 94 % <nl> rename from drivers / java / src / test / java / gen / MathLogicAdd . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MathLogicAdd . java <nl> mmm a / drivers / java / src / test / java / gen / MathLogicAdd . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MathLogicAdd . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MathLogicAdd { <nl> / / Tests for basic usage of the add operation <nl> similarity index 96 % <nl> rename from drivers / java / src / test / java / gen / MathLogicAliases . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MathLogicAliases . java <nl> mmm a / drivers / java / src / test / java / gen / MathLogicAliases . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MathLogicAliases . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MathLogicAliases { <nl> / / Test named aliases for math and logic operators <nl> similarity index 94 % <nl> rename from drivers / java / src / test / java / gen / MathLogicDiv . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MathLogicDiv . java <nl> mmm a / drivers / java / src / test / java / gen / MathLogicDiv . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MathLogicDiv . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MathLogicDiv { <nl> / / Tests for the basic usage of the division operation <nl> similarity index 98 % <nl> rename from drivers / java / src / test / java / gen / MathLogicFloorCeilRound . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MathLogicFloorCeilRound . java <nl> mmm a / drivers / java / src / test / java / gen / MathLogicFloorCeilRound . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MathLogicFloorCeilRound . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MathLogicFloorCeilRound { <nl> / / tests for ` floor ` , ` ceil ` , and ` round ` , tests inspired by the Python test suite <nl> similarity index 98 % <nl> rename from drivers / java / src / test / java / gen / MathLogicLogic . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MathLogicLogic . java <nl> mmm a / drivers / java / src / test / java / gen / MathLogicLogic . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MathLogicLogic . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MathLogicLogic { <nl> / / These tests are aimed at & & , | | , and ! <nl> similarity index 75 % <nl> rename from drivers / java / src / test / java / gen / MathLogicMath . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MathLogicMath . java <nl> mmm a / drivers / java / src / test / java / gen / MathLogicMath . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MathLogicMath . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MathLogicMath { <nl> / / Tests of nested arithmetic expressions <nl> similarity index 90 % <nl> rename from drivers / java / src / test / java / gen / MathLogicMod . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MathLogicMod . java <nl> mmm a / drivers / java / src / test / java / gen / MathLogicMod . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MathLogicMod . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MathLogicMod { <nl> / / Tests for the basic usage of the mod operation <nl> similarity index 93 % <nl> rename from drivers / java / src / test / java / gen / MathLogicMul . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MathLogicMul . java <nl> mmm a / drivers / java / src / test / java / gen / MathLogicMul . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MathLogicMul . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MathLogicMul { <nl> / / Tests for the basic usage of the multiplication operation <nl> similarity index 92 % <nl> rename from drivers / java / src / test / java / gen / MathLogicSub . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MathLogicSub . java <nl> mmm a / drivers / java / src / test / java / gen / MathLogicSub . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MathLogicSub . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MathLogicSub { <nl> / / Tests for basic usage of the subtraction operation <nl> similarity index 94 % <nl> rename from drivers / java / src / test / java / gen / MetaDbs . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MetaDbs . java <nl> mmm a / drivers / java / src / test / java / gen / MetaDbs . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MetaDbs . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MetaDbs { <nl> / / Tests meta queries for databases <nl> similarity index 99 % <nl> rename from drivers / java / src / test / java / gen / MetaTable . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MetaTable . java <nl> mmm a / drivers / java / src / test / java / gen / MetaTable . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MetaTable . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MetaTable { <nl> / / Tests meta queries for creating and deleting tables <nl> similarity index 96 % <nl> rename from drivers / java / src / test / java / gen / MutationAtomicGetSet . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MutationAtomicGetSet . java <nl> mmm a / drivers / java / src / test / java / gen / MutationAtomicGetSet . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MutationAtomicGetSet . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MutationAtomicGetSet { <nl> / / Tests replacement of selections <nl> similarity index 93 % <nl> rename from drivers / java / src / test / java / gen / MutationDelete . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MutationDelete . java <nl> mmm a / drivers / java / src / test / java / gen / MutationDelete . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MutationDelete . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> import java . util . stream . LongStream ; <nl> import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MutationDelete { <nl> / / Tests deletes of selections <nl> similarity index 98 % <nl> rename from drivers / java / src / test / java / gen / MutationInsert . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MutationInsert . java <nl> mmm a / drivers / java / src / test / java / gen / MutationInsert . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MutationInsert . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MutationInsert { <nl> / / Tests insertion into tables <nl> similarity index 94 % <nl> rename from drivers / java / src / test / java / gen / MutationSync . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / MutationSync . java <nl> mmm a / drivers / java / src / test / java / gen / MutationSync . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / MutationSync . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class MutationSync { <nl> / / Tests syncing tables <nl> similarity index 92 % <nl> rename from drivers / java / src / test / java / gen / Polymorphism . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / Polymorphism . java <nl> mmm a / drivers / java / src / test / java / gen / Polymorphism . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / Polymorphism . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> import java . util . stream . LongStream ; <nl> import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class Polymorphism { <nl> / / Tests that manipulation data in tables <nl> similarity index 98 % <nl> rename from drivers / java / src / test / java / gen / Random . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / Random . java <nl> mmm a / drivers / java / src / test / java / gen / Random . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / Random . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class Random { <nl> / / Tests randomization functions <nl> similarity index 95 % <nl> rename from drivers / java / src / test / java / gen / Range . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / Range . java <nl> mmm a / drivers / java / src / test / java / gen / Range . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / Range . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class Range { <nl> / / Tests RQL range generation <nl> similarity index 90 % <nl> rename from drivers / java / src / test / java / gen / SindexNullsinstrings . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / SindexNullsinstrings . java <nl> mmm a / drivers / java / src / test / java / gen / SindexNullsinstrings . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / SindexNullsinstrings . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class SindexNullsinstrings { <nl> / / sindex nulls in strings <nl> similarity index 93 % <nl> rename from drivers / java / src / test / java / gen / Timeout . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / Timeout . java <nl> mmm a / drivers / java / src / test / java / gen / Timeout . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / Timeout . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class Timeout { <nl> / / Tests timeouts . <nl> similarity index 98 % <nl> rename from drivers / java / src / test / java / gen / TimesApi . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / TimesApi . java <nl> mmm a / drivers / java / src / test / java / gen / TimesApi . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / TimesApi . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class TimesApi { <nl> / / date / time api ( # 977 ) <nl> similarity index 96 % <nl> rename from drivers / java / src / test / java / gen / TimesConstructors . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / TimesConstructors . java <nl> mmm a / drivers / java / src / test / java / gen / TimesConstructors . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / TimesConstructors . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class TimesConstructors { <nl> / / Test basic time arithmetic <nl> similarity index 97 % <nl> rename from drivers / java / src / test / java / gen / TimesIndex . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / TimesIndex . java <nl> mmm a / drivers / java / src / test / java / gen / TimesIndex . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / TimesIndex . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> import java . util . Map ; <nl> - import java . util . Set ; <nl> import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class TimesIndex { <nl> / / secondary indexes on times <nl> similarity index 88 % <nl> rename from drivers / java / src / test / java / gen / TimesShim . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / TimesShim . java <nl> mmm a / drivers / java / src / test / java / gen / TimesShim . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / TimesShim . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> - import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> - <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> - import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class TimesShim { <nl> / / Test the native shims . <nl> similarity index 97 % <nl> rename from drivers / java / src / test / java / gen / TimesTimeArith . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / TimesTimeArith . java <nl> mmm a / drivers / java / src / test / java / gen / TimesTimeArith . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / TimesTimeArith . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class TimesTimeArith { <nl> / / Test basic time arithmetic <nl> similarity index 96 % <nl> rename from drivers / java / src / test / java / gen / TimesTimezones . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / TimesTimezones . java <nl> mmm a / drivers / java / src / test / java / gen / TimesTimezones . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / TimesTimezones . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class TimesTimezones { <nl> / / Test basic timezone manipulation <nl> similarity index 98 % <nl> rename from drivers / java / src / test / java / gen / TransformArray . java <nl> rename to drivers / java / src / test / java / com / rethinkdb / gen / TransformArray . java <nl> mmm a / drivers / java / src / test / java / gen / TransformArray . java <nl> ppp b / drivers / java / src / test / java / com / rethinkdb / gen / TransformArray . java <nl> <nl> / / Do not edit this file directly . <nl> / / The template for this file is located at : <nl> / / . . / . . / . . / . . / . . / templates / Test . java <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> - import com . rethinkdb . gen . exc . * ; <nl> import com . rethinkdb . gen . ast . * ; <nl> - import com . rethinkdb . ast . ReqlAst ; <nl> - import com . rethinkdb . model . MapObject ; <nl> import com . rethinkdb . model . OptArgs ; <nl> import com . rethinkdb . net . Connection ; <nl> - import com . rethinkdb . net . Cursor ; <nl> - import junit . framework . TestCase ; <nl> + <nl> import static org . junit . Assert . assertEquals ; <nl> import static org . junit . Assert . assertArrayEquals ; <nl> import org . slf4j . Logger ; <nl> import org . slf4j . LoggerFactory ; <nl> <nl> import org . junit . * ; <nl> - import org . junit . rules . ExpectedException ; <nl> <nl> - import java . util . Arrays ; <nl> - import java . util . ArrayList ; <nl> import java . util . List ; <nl> - import java . util . Map ; <nl> - import java . util . Set ; <nl> - import java . time . OffsetDateTime ; <nl> - import java . time . ZoneOffset ; <nl> - import java . time . Instant ; <nl> - import java . util . stream . LongStream ; <nl> - import java . util . stream . Collectors ; <nl> - import java . util . stream . Stream ; <nl> - import java . util . concurrent . TimeoutException ; <nl> - import java . util . regex . Pattern ; <nl> - import java . util . Collections ; <nl> - import java . nio . charset . StandardCharsets ; <nl> - <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + <nl> + import static com . rethinkdb . TestingCommon . * ; <nl> + import com . rethinkdb . TestingFramework ; <nl> <nl> public class TransformArray { <nl> / / Tests manipulation operations on arrays <nl> similarity index 63 % <nl> rename from drivers / java / src / test / resources / gen / default - config . properties <nl> rename to drivers / java / src / test / resources / default - config . properties <nl> mmm a / drivers / java / src / test / resources / gen / default - config . properties <nl> ppp b / drivers / java / src / test / resources / default - config . properties <nl> <nl> hostName = localhost <nl> - port = 28015 <nl> \ No newline at end of file <nl> + port = 28015 <nl> mmm a / drivers / java / templates / Test . java <nl> ppp b / drivers / java / templates / Test . java <nl> <nl> - package gen ; <nl> + package com . rethinkdb . gen ; <nl> <nl> import com . rethinkdb . RethinkDB ; <nl> import com . rethinkdb . gen . exc . * ; <nl> <nl> import java . util . Collections ; <nl> import java . nio . charset . StandardCharsets ; <nl> <nl> - import static gen . TestingCommon . * ; <nl> - import gen . TestingFramework ; <nl> + import static com . rethinkdb . gen . TestingCommon . * ; <nl> + import com . rethinkdb . gen . TestingFramework ; <nl> <nl> public class $ { module_name } { <nl> / / $ { description } <nl>
Respect root package com . rethinkdb .
rethinkdb/rethinkdb
eadd3fa972b6d6a31514730b95713fb8de139970
2016-01-11T21:25:32Z
mmm a / hphp / hack / hhi / coroutine / classes . hhi <nl> ppp b / hphp / hack / hhi / coroutine / classes . hhi <nl> final class CoroutineUnit { <nl> return self : : $ unit ; <nl> } <nl> } <nl> + <nl> + / * * <nl> + * A coroutine closure that has been autogenerated by the compiler . <nl> + * <nl> + * Maintains the state of the coroutine function across suspensions . This class <nl> + * implements CoroutineContinuation < mixed > , as it may receive disparate types <nl> + * to calls of its resume method during the suspension and resumption of the <nl> + * coroutine ' s execution . Every time the coroutine is resumed normally , the <nl> + * value will be passed in to the continuation , and then along to the state <nl> + * machine . <nl> + * <nl> + * The doResume method has the same contract as the coroutine : it either hangs , <nl> + * returns a coroutine result , throws , or returns a ' suspended ' indicator . <nl> + * <nl> + * @ param T The return type of the coroutine . <nl> + * / <nl> + abstract class ClosureBase < T > implements CoroutineContinuation < mixed > { <nl> + <nl> + public int $ nextLabel = 0 ; <nl> + <nl> + protected function __construct ( <nl> + private CoroutineContinuation < T > $ coroutineContinuation_generated <nl> + ) { } <nl> + <nl> + public function resume ( mixed $ value ) : void { <nl> + self : : processContinuation ( <nl> + $ this - > coroutineContinuation_generated , <nl> + ( ) = = > $ this - > doResume ( $ value , null ) <nl> + ) ; <nl> + } <nl> + <nl> + public function resumeWithException ( Exception $ ex ) : void { <nl> + self : : processContinuation ( <nl> + $ this - > coroutineContinuation_generated , <nl> + ( ) = = > $ this - > doResume ( null , $ ex ) <nl> + ) ; <nl> + } <nl> + <nl> + protected abstract function doResume ( <nl> + mixed $ data , <nl> + ? Exception $ ex , <nl> + ) : CoroutineResult < mixed > ; <nl> + <nl> + / * * <nl> + * The continuation passed in is the continuation of the entire coroutine . <nl> + * <nl> + * The block is a function which executes some part of the workflow , and <nl> + * either throws , returns , or suspends . If it throws or returns , then <nl> + * the coroutine is done and we can call its continuation . If the block <nl> + * suspends then we do nothing , since we ' ve suspended . <nl> + * / <nl> + private static function processContinuation < Tr > ( <nl> + CoroutineContinuation < Tr > $ coroutineContinuation , <nl> + ( function ( ) : CoroutineResult < Tr > ) $ block <nl> + ) : void { <nl> + try { <nl> + $ result = $ block ( ) ; <nl> + if ( ! $ result - > isSuspended ( ) ) { <nl> + $ coroutineContinuation - > resume ( $ result - > getResult ( ) ) ; <nl> + } <nl> + } catch ( Exception $ ex ) { <nl> + $ coroutineContinuation - > resumeWithException ( $ ex ) ; <nl> + } <nl> + } <nl> + } <nl> mmm a / hphp / hack / src / parser / coroutine / coroutine_closure_generator . ml <nl> ppp b / hphp / hack / src / parser / coroutine / coroutine_closure_generator . ml <nl> let make_parameters_public_and_untyped <nl> } ) <nl> end <nl> <nl> - let make_invoke_do_resume_syntax <nl> - coroutine_data_argument_syntax <nl> - exception_argument_syntax = <nl> - let select_do_resume_member_syntax = <nl> - make_member_selection_expression_syntax <nl> - this_syntax <nl> - do_resume_member_name_syntax in <nl> - let invoke_do_resume_expression_syntax = <nl> - make_function_call_expression_syntax <nl> - select_do_resume_member_syntax <nl> - [ coroutine_data_argument_syntax ; exception_argument_syntax ; ] in <nl> - make_expression_statement_syntax invoke_do_resume_expression_syntax <nl> - <nl> - <nl> let generate_constructor_method <nl> classish_name <nl> function_name <nl> let generate_constructor_method <nl> cont_param : : sm_param : : function_parameter_list in <nl> let ctor = make_constructor_decl_header_syntax <nl> constructor_member_name function_parameter_list in <nl> - let select_next_label_syntax = <nl> - make_member_selection_expression_syntax this_syntax label_name_syntax in <nl> - let initialize_next_label_syntax = <nl> - make_assignment_syntax_variable <nl> - select_next_label_syntax <nl> - ( make_int_literal_syntax 0 ) in <nl> - make_methodish_declaration_syntax ctor [ initialize_next_label_syntax ; ] <nl> - <nl> - let resume_body = <nl> - make_invoke_do_resume_syntax coroutine_data_variable_syntax null_syntax <nl> - <nl> - let resume_method = <nl> - make_methodish_declaration_syntax <nl> - ( make_function_decl_header_syntax <nl> - resume_member_name <nl> - [ coroutine_data_parameter_syntax ] <nl> - void_syntax ) <nl> - [ resume_body ; ] <nl> - <nl> - let resume_with_exception_body = <nl> - make_invoke_do_resume_syntax null_syntax exception_variable_syntax <nl> - <nl> - let resume_with_exception_method = <nl> - make_methodish_declaration_syntax <nl> - ( make_function_decl_header_syntax <nl> - resume_with_exception_member_name <nl> - [ exception_parameter_syntax ; ] <nl> - void_syntax ) <nl> - [ resume_with_exception_body ; ] <nl> + let call_parent_syntax = <nl> + make_construct_parent_syntax [ continuation_variable_syntax ] in <nl> + make_methodish_declaration_syntax ctor [ call_parent_syntax ; ] <nl> <nl> let do_resume_body = <nl> let select_state_machine_syntax = <nl> let do_resume_method = <nl> ( make_coroutine_result_type_syntax mixed_syntax ) ) <nl> do_resume_body <nl> <nl> - ( * int $ nextLabel ; * ) <nl> - let generate_fields = <nl> - make_property_declaration_syntax int_type label_variable_syntax <nl> - <nl> let generate_closure_body <nl> classish_name <nl> function_name <nl> let generate_closure_body <nl> state_machine_data = <nl> generate_hoisted_locals state_machine_data <nl> @ [ <nl> - generate_fields ; <nl> generate_constructor_method <nl> classish_name <nl> function_name <nl> header_node <nl> state_machine_data ; <nl> - resume_method ; <nl> - resume_with_exception_method ; <nl> do_resume_method ; <nl> ] <nl> <nl> let generate_coroutine_closure <nl> classish_name <nl> function_name <nl> ( { methodish_function_decl_header ; _ ; } as method_node ) <nl> - header_node <nl> + ( { function_type ; _ ; } as header_node ) <nl> state_machine_data = <nl> make_classish_declaration_syntax <nl> ( make_closure_classname classish_name function_name ) <nl> - ( * TODO " mixed " is wrong ; it should be the same return type as the lambda . * ) <nl> - [ make_continuation_type_syntax mixed_syntax ] <nl> + [ make_closure_base_type_syntax function_type ] <nl> ( generate_closure_body <nl> classish_name <nl> function_name <nl> mmm a / hphp / hack / src / parser / coroutine / coroutine_method_lowerer . ml <nl> ppp b / hphp / hack / src / parser / coroutine / coroutine_method_lowerer . ml <nl> let make_state_machine_method_reference_syntax <nl> ( * SuspendedCoroutineResult : : create ( ) * ) <nl> let suspended_marker_expression = <nl> make_static_function_call_expression_syntax <nl> - suspended_coroutine_result_classname <nl> + suspended_coroutine_result_classname_syntax <nl> suspended_member_name <nl> [ ] in <nl> ( * return SuspendedCoroutineResult : : create ( ) ; * ) <nl> mmm a / hphp / hack / src / parser / coroutine / coroutine_state_machine_generator . ml <nl> ppp b / hphp / hack / src / parser / coroutine / coroutine_state_machine_generator . ml <nl> let extract_suspend_statements node next_label = <nl> let declare_next_label_syntax = <nl> make_label_declaration_syntax ( StateLabel next_label ) in <nl> <nl> - let coroutine_result_data_variable = <nl> - make_coroutine_result_data_variable next_label in <nl> + let coroutine_result_data_variable_syntax = <nl> + make_member_selection_expression_syntax <nl> + closure_variable_syntax <nl> + ( make_coroutine_result_data_member_name_syntax next_label ) in <nl> let assign_coroutine_result_data_syntax = <nl> - make_assignment_syntax <nl> - coroutine_result_data_variable <nl> + make_assignment_syntax_variable <nl> + coroutine_result_data_variable_syntax <nl> coroutine_data_variable_syntax in <nl> <nl> let exception_not_null_syntax = <nl> let extract_suspend_statements node next_label = <nl> throw_if_exception_not_null_syntax ; <nl> ] in <nl> <nl> - let coroutine_result_data_variable_syntax = <nl> - make_token_syntax TokenKind . Variable coroutine_result_data_variable in <nl> - <nl> ( next_label + 1 , prefix_statements_acc @ statements ) , <nl> Rewriter . Result . Replace coroutine_result_data_variable_syntax <nl> | _ - > <nl> let lower_body { methodish_function_body ; _ } = <nl> let body = add_switch ( next_loop_label , body ) in <nl> let body = add_try_finally locals_and_params body in <nl> let body = unnest_compound_statements body in <nl> + <nl> + let coroutine_result_data_variables = <nl> + next_loop_label <nl> + | > Core_list . range 1 <nl> + | > Core_list . map ~ f : make_coroutine_result_data_variable <nl> + | > Core_list . fold <nl> + ~ f : ( fun acc name - > <nl> + SMap . add name ( make_token_syntax TokenKind . Name name ) acc ) <nl> + ~ init : SMap . empty in <nl> + let locals_and_params = <nl> + SMap . union locals_and_params coroutine_result_data_variables in <nl> + <nl> ( body , locals_and_params ) <nl> <nl> let make_function_decl_header <nl> mmm a / hphp / hack / src / parser / coroutine / coroutine_syntax . ml <nl> ppp b / hphp / hack / src / parser / coroutine / coroutine_syntax . ml <nl> let unit_type_syntax = <nl> let int_syntax = <nl> make_token_syntax ~ space_after : true TokenKind . Int " int " <nl> <nl> - let int_type = <nl> - make_simple_type_specifier int_syntax <nl> - <nl> let void_syntax = <nl> make_token_syntax ~ space_after : true TokenKind . Void " void " <nl> <nl> let function_keyword_syntax = <nl> let goto_keyword_syntax = <nl> make_token_syntax ~ space_after : true TokenKind . Goto " goto " <nl> <nl> - let implements_syntax = <nl> - make_token_syntax ~ space_after : true TokenKind . Implements " implements " <nl> + let extends_syntax = <nl> + make_token_syntax ~ space_after : true TokenKind . Extends " extends " <nl> + <nl> + let parent_syntax = <nl> + make_token_syntax TokenKind . Parent " parent " <nl> <nl> let return_keyword_syntax = <nl> make_token_syntax ~ space_after : true TokenKind . Return " return " <nl> let this_syntax = <nl> let exception_type_syntax = <nl> make_token_syntax ~ space_after : true TokenKind . Classname " Exception " <nl> <nl> + let constructor_member_name = <nl> + " __construct " <nl> + <nl> <nl> ( * Syntax helper functions * ) <nl> <nl> let make_function_call_expression_syntax receiver_syntax argument_list = <nl> right_paren_syntax <nl> <nl> let make_static_function_call_expression_syntax <nl> - receiver_name <nl> + receiver_syntax <nl> member_name <nl> argument_list = <nl> - let qualified_receiver_syntax = make_qualified_name_syntax receiver_name in <nl> let member_syntax = make_token_syntax TokenKind . Name member_name in <nl> let receiver_syntax = <nl> make_scope_resolution_expression <nl> - qualified_receiver_syntax <nl> + receiver_syntax <nl> colon_colon_syntax <nl> member_syntax in <nl> make_function_call_expression_syntax receiver_syntax argument_list <nl> <nl> + ( * * <nl> + * parent : : __construct ( argument_list ) ; <nl> + * ) <nl> + let make_construct_parent_syntax argument_list = <nl> + let expression_syntax = <nl> + make_static_function_call_expression_syntax <nl> + parent_syntax <nl> + constructor_member_name <nl> + argument_list in <nl> + make_expression_statement_syntax expression_syntax <nl> + <nl> let make_member_selection_expression_syntax receiver_syntax member_syntax = <nl> make_member_selection_expression <nl> receiver_syntax <nl> let make_functional_type_syntax argument_types return_type_syntax = <nl> right_paren_syntax <nl> <nl> ( * TODO ( tingley ) : Determine if it ' s worth tightening visibility here . * ) <nl> - let make_classish_declaration_syntax classname implements_list classish_body = <nl> + let make_classish_declaration_syntax classname extends_list classish_body = <nl> let classname_syntax = <nl> make_token_syntax ~ space_after : true TokenKind . Classname classname in <nl> - let implements_list_syntax = <nl> - make_delimited_list comma_syntax implements_list in <nl> + let extends_list_syntax = <nl> + make_delimited_list comma_syntax extends_list in <nl> make_classish_declaration <nl> ( * classish_attribute * ) ( make_missing ( ) ) <nl> ( * classish_modifiers * ) ( make_missing ( ) ) <nl> class_keyword_syntax <nl> classname_syntax <nl> ( * classish_type_parameters * ) ( make_missing ( ) ) <nl> - ( * classish_extends_keyword * ) ( make_missing ( ) ) <nl> - ( * classish_extends_list * ) ( make_missing ( ) ) <nl> - ( if is_missing implements_list_syntax then <nl> + ( if is_missing extends_list_syntax then <nl> make_missing ( ) <nl> else <nl> - implements_syntax ) <nl> - implements_list_syntax <nl> + extends_syntax ) <nl> + extends_list_syntax <nl> + ( * classish_implements_keyword * ) ( make_missing ( ) ) <nl> + ( * classish_implements_list * ) ( make_missing ( ) ) <nl> ( make_compound_statement_syntax classish_body ) <nl> <nl> ( * TODO ( tingley ) : Determine if it ' s worth tightening visibility here . * ) <nl> let make_methodish_declaration_with_body_syntax <nl> <nl> let make_lambda_signature_syntax lambda_parameters lambda_type = <nl> let lambda_parameters = make_delimited_list comma_syntax lambda_parameters in <nl> - make_lambda_signature left_paren_syntax lambda_parameters <nl> - right_paren_syntax colon_syntax lambda_type <nl> + make_lambda_signature <nl> + left_paren_syntax <nl> + lambda_parameters <nl> + right_paren_syntax <nl> + ( if is_missing lambda_type then make_missing ( ) else colon_syntax ) <nl> + lambda_type <nl> <nl> let make_lambda_syntax lambda_signature lambda_body = <nl> make_lambda_expression <nl> let continuation_variable = <nl> let continuation_variable_syntax = <nl> make_token_syntax TokenKind . Variable continuation_variable <nl> <nl> + let make_closure_base_type_syntax return_type_syntax = <nl> + make_generic_type_specifier_syntax <nl> + " ClosureBase " <nl> + [ return_type_syntax ; ] <nl> + <nl> let make_continuation_type_syntax return_type_syntax = <nl> make_generic_type_specifier_syntax <nl> " CoroutineContinuation " <nl> let make_coroutine_result_type_syntax return_type_syntax = <nl> " CoroutineResult " <nl> [ return_type_syntax ] <nl> <nl> - let suspended_coroutine_result_classname = <nl> - " SuspendedCoroutineResult " <nl> + let suspended_coroutine_result_classname_syntax = <nl> + make_qualified_name_syntax " SuspendedCoroutineResult " <nl> <nl> let suspended_member_name = <nl> " create " <nl> let make_closure_parameter_syntax enclosing_classname function_name = <nl> ( make_closure_type_syntax enclosing_classname function_name ) <nl> closure_variable <nl> <nl> - let constructor_member_name = <nl> - " __construct " <nl> - <nl> let resume_member_name = <nl> " resume " <nl> <nl> let coroutine_result_variable = <nl> let coroutine_result_variable_syntax = <nl> make_token_syntax TokenKind . Variable coroutine_result_variable <nl> <nl> + let make_coroutine_result_data_member_name index = <nl> + Printf . sprintf " coroutineResultData % d " index <nl> + <nl> let make_coroutine_result_data_variable index = <nl> - Printf . sprintf " $ coroutineResultData % d " index <nl> + " $ " ^ ( make_coroutine_result_data_member_name index ) <nl> + <nl> + let make_coroutine_result_data_member_name_syntax index = <nl> + make_token_syntax <nl> + TokenKind . Name <nl> + ( make_coroutine_result_data_member_name index ) <nl> <nl> let coroutine_data_type_syntax = <nl> mixed_syntax <nl> let label_syntax = <nl> let label_name_syntax = <nl> make_token_syntax TokenKind . Name next_label <nl> <nl> - ( * $ nextLabel * ) <nl> - let label_variable_syntax = <nl> - make_token_syntax TokenKind . Variable ( " $ " ^ next_label ) <nl> - <nl> ( * $ closure - > nextLabel = x ; * ) <nl> let set_next_label_syntax number = <nl> let number = make_int_literal_syntax number in <nl>
Implement ClosureBase < T >
facebook/hhvm
742904d1745784367f35c6d3b88abf95a34c165b
2017-06-08T20:14:27Z
mmm a / scripts / format . sh <nl> ppp b / scripts / format . sh <nl> <nl> cd " $ ( dirname " $ 0 " ) " / . . <nl> pwd <nl> echo - n " Running dos2unix " <nl> - find . - name " * \ . h " - o - name " * \ . cpp " | grep - v bundled | xargs - I { } sh - c " dos2unix ' { } ' 2 > / dev / null ; echo - n ' . ' " <nl> + # find . - name " * \ . h " - o - name " * \ . cpp " | grep - v bundled | xargs - I { } sh - c " dos2unix ' { } ' 2 > / dev / null ; echo - n ' . ' " <nl> echo <nl> echo - n " Running clang - format " <nl> - find . - name " * \ . h " - o - name " * \ . cpp " | grep - v bundled | xargs - I { } sh - c " clang - format - i { } ; echo - n ' . ' " <nl> + # find . - name " * \ . h " - o - name " * \ . cpp " | grep - v bundled | xargs - I { } sh - c " clang - format - i { } ; echo - n ' . ' " <nl> echo <nl> + echo - n " Running cmake - format " <nl> + find . - name " CMakeLists . txt " - o - name " * \ . cmake " | grep - v bundled | xargs - I { } sh - c " cmake - format - - line - width 120 - - max - subgroups - hwrap 4 - i { } ; echo - n ' . ' " <nl> + echo <nl> + <nl> <nl> <nl>
Added call to cmake - format
gabime/spdlog
0814de6371c4371b02ce46bbc1255d4343be97a5
2020-05-02T08:34:04Z
mmm a / hphp / hack / doc / type_system / hack_typing . ott <nl> ppp b / hphp / hack / doc / type_system / hack_typing . ott <nl> For void functions , we support implicit return by including a skip continuation . <nl> mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm : : function <nl> | - function id ( t1 $ x1 , . . , tn $ xn ) : t block <nl> <nl> - ( t1 $ x1 , . . , tn $ xn , t0 vardots $ x0 ) : t ; { x1 : t1 , . . , xn : tn , x0 : vec < t0 > } ; { return : G } | - block <nl> mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm : : function_variadic <nl> - | - function id ( t1 $ x1 , . . , tn $ xn , t0 vardots $ x0 ) : t block <nl> - <nl> ( t1 $ x1 , . . , tn $ xn ) : void ; { x1 : t1 , . . , xn : tn } ; { return : G , skip : G } | - block <nl> mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm : : function_void <nl> | - function id ( t1 $ x1 , . . , tn $ xn ) : void block <nl> <nl> - ( t1 $ x1 , . . , tn $ xn , t0 vardots $ x0 ) : void ; { x1 : t1 , . . , xn : tn , x0 : vec < t0 > } ; { return : G , skip : G } | - block <nl> mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - : : function_void_variadic <nl> - | - function id ( t1 $ x1 , . . , tn $ xn , t0 vardots $ x0 ) : void block <nl> + | - function id ( t1 $ x1 , . . , tn $ xn , vec < t0 > $ x0 ) : t block <nl> + mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - : : function_variadic <nl> + | - function id ( t1 $ x1 , . . , tn $ xn , t0 vardots $ x0 ) : t block <nl>
Minor simplification for top level function declarations
facebook/hhvm
da4e2ba10ae26ec1fb1beec479a026fdf56f5baf
2020-11-03T01:20:27Z
similarity index 100 % <nl> rename from hphp / test / zend / good / ext / standard / tests / file / copy_variation16 . php <nl> rename to hphp / test / zend / bad / ext / standard / tests / file / copy_variation16 . php <nl> similarity index 100 % <nl> rename from hphp / test / zend / good / ext / standard / tests / file / copy_variation16 . php . expectf <nl> rename to hphp / test / zend / bad / ext / standard / tests / file / copy_variation16 . php . expectf <nl> mmm a / hphp / tools / import_zend_test . py <nl> ppp b / hphp / tools / import_zend_test . py <nl> <nl> <nl> # flaky : t3212114 <nl> ' / ext / standard / tests / file / file_get_contents_variation1 . php ' , <nl> + <nl> + # flaky : t3241496 <nl> + ' / ext / standard / tests / file / copy_variation16 . php ' , <nl> ) <nl> <nl> # Tests that work but not in repo mode <nl>
Disable flaky test / zend / good / ext / standard / tests / file / copy_variation16 . php
facebook/hhvm
7f74da5701fb48ac3ac430bb22836ecb3dec09a5
2013-11-22T17:47:35Z
mmm a / include / swift / AST / Decl . h <nl> ppp b / include / swift / AST / Decl . h <nl> class alignas ( 1 < < DeclAlignInBits ) Decl { <nl> / / / \ brief Whether this is a property used in expressions in the debugger . <nl> / / / It is up to the debugger to instruct SIL how to access this variable . <nl> unsigned IsDebuggerVar : 1 ; <nl> + <nl> + / / / Whether the decl can be accessed by swift users ; for instance , <nl> + / / / a . storage for lazy var a is a decl that cannot be accessed . <nl> + unsigned IsUserAccessible : 1 ; <nl> } ; <nl> - enum { NumVarDeclBits = NumAbstractStorageDeclBits + 4 } ; <nl> + enum { NumVarDeclBits = NumAbstractStorageDeclBits + 5 } ; <nl> static_assert ( NumVarDeclBits < = 32 , " fits in an unsigned " ) ; <nl> <nl> class EnumElementDeclBitfields { <nl> class alignas ( 1 < < DeclAlignInBits ) Decl { <nl> / / / is suitable for use in diagnostics . <nl> static StringRef getDescriptiveKindName ( DescriptiveDeclKind K ) ; <nl> <nl> + / / / Whether swift users should be able to access this decl . For instance , <nl> + / / / var a . storage for lazy var a is an inaccessible decl . An inaccessible decl <nl> + / / / has to be implicit ; but an implicit decl does not have to be inaccessible , <nl> + / / / for instance , self . <nl> + bool isUserAccessible ( ) const ; <nl> + <nl> DeclContext * getDeclContext ( ) const { return Context ; } <nl> void setDeclContext ( DeclContext * DC ) ; <nl> <nl> class VarDecl : public AbstractStorageDecl { <nl> Identifier Name , Type Ty , DeclContext * DC ) <nl> : AbstractStorageDecl ( Kind , DC , Name , NameLoc ) <nl> { <nl> + VarDeclBits . IsUserAccessible = true ; <nl> VarDeclBits . IsStatic = IsStatic ; <nl> VarDeclBits . IsLet = IsLet ; <nl> VarDeclBits . IsDebuggerVar = false ; <nl> class VarDecl : public AbstractStorageDecl { <nl> SourceLoc getStartLoc ( ) const { return getNameLoc ( ) ; } <nl> SourceRange getSourceRange ( ) const ; <nl> <nl> + void setUserAccessible ( bool Accessible ) { <nl> + VarDeclBits . IsUserAccessible = Accessible ; <nl> + } <nl> + <nl> + bool isUserAccessible ( ) const { <nl> + return VarDeclBits . IsUserAccessible ; <nl> + } <nl> + <nl> / / / \ brief Retrieve the source range of the variable type . <nl> / / / <nl> / / / Only for use in diagnostics . It is not always possible to always <nl> mmm a / lib / AST / Decl . cpp <nl> ppp b / lib / AST / Decl . cpp <nl> void Decl : : setDeclContext ( DeclContext * DC ) { <nl> Context = DC ; <nl> } <nl> <nl> + bool Decl : : isUserAccessible ( ) const { <nl> + if ( auto VD = dyn_cast < VarDecl > ( this ) ) { <nl> + return VD - > isUserAccessible ( ) ; <nl> + } <nl> + return true ; <nl> + } <nl> + <nl> Module * Decl : : getModuleContext ( ) const { <nl> return getDeclContext ( ) - > getParentModule ( ) ; <nl> } <nl> mmm a / lib / IDE / CodeCompletion . cpp <nl> ppp b / lib / IDE / CodeCompletion . cpp <nl> class CompletionLookup final : public swift : : VisibleDeclConsumer { <nl> void addVarDeclRef ( const VarDecl * VD , DeclVisibilityKind Reason ) { <nl> if ( ! VD - > hasName ( ) ) <nl> return ; <nl> + if ( ! VD - > isUserAccessible ( ) ) <nl> + return ; <nl> <nl> StringRef Name = VD - > getName ( ) . get ( ) ; <nl> assert ( ! Name . empty ( ) & & " name should not be empty " ) ; <nl> mmm a / lib / Sema / CodeSynthesis . cpp <nl> ppp b / lib / Sema / CodeSynthesis . cpp <nl> void TypeChecker : : completeLazyVarImplementation ( VarDecl * VD ) { <nl> auto * Storage = new ( Context ) VarDecl ( / * isStatic * / false , / * isLet * / false , <nl> VD - > getLoc ( ) , StorageName , StorageTy , <nl> VD - > getDeclContext ( ) ) ; <nl> - <nl> + Storage - > setUserAccessible ( false ) ; <nl> addMemberToContextIfNeeded ( Storage , VD - > getDeclContext ( ) , VD ) ; <nl> <nl> / / Create the pattern binding decl for the storage decl . This will get <nl> new file mode 100644 <nl> index 000000000000 . . f06316f50c0e <nl> mmm / dev / null <nl> ppp b / test / IDE / complete_lazy_initialized_var . swift <nl> <nl> + / / RUN : % target - swift - ide - test - code - completion - source - filename % s - code - completion - token = LAZY_IN_CLASS_1 | FileCheck % s - check - prefix = LAZYVAR1 <nl> + class FooClass1 { <nl> + lazy var lazyVar1 = 0 <nl> + } <nl> + <nl> + func lazyInClass1 ( a : FooClass1 ) { <nl> + a . # ^ LAZY_IN_CLASS_1 ^ # <nl> + } <nl> + <nl> + / / This test checks that we don ’ t include extra hidden declarations into code completion results . If you add more declarations to the type , update this test properly . <nl> + / / LAZYVAR1 : Begin completions , 1 items <nl> + / / LAZYVAR1 - NEXT : Decl [ InstanceVar ] / CurrNominal : lazyVar1 [ # Int # ] { { ; name = . + $ } } <nl> + / / LAZYVAR1 - NEXT : End completions <nl> mmm a / test / IDE / complete_value_expr . swift <nl> ppp b / test / IDE / complete_value_expr . swift <nl> <nl> / / Test code completion of expressions that produce a value . <nl> <nl> struct FooStruct { <nl> + lazy var lazyInstanceVar = 0 <nl> var instanceVar = 0 <nl> <nl> mutating <nl> extension FooStruct { <nl> var fooObject : FooStruct <nl> <nl> / / FOO_OBJECT_DOT : Begin completions <nl> + / / FOO_OBJECT_DOT - NEXT : Decl [ InstanceVar ] / CurrNominal : lazyInstanceVar [ # Int # ] { { ; name = . + $ } } <nl> / / FOO_OBJECT_DOT - NEXT : Decl [ InstanceVar ] / CurrNominal : instanceVar [ # Int # ] { { ; name = . + $ } } <nl> / / FOO_OBJECT_DOT - NEXT : Decl [ InstanceMethod ] / CurrNominal : instanceFunc0 ( ) [ # Void # ] { { ; name = . + $ } } <nl> / / FOO_OBJECT_DOT - NEXT : Decl [ InstanceMethod ] / CurrNominal : instanceFunc1 ( { # ( a ) : Int # } ) [ # Void # ] { { ; name = . + $ } } <nl> var fooObject : FooStruct <nl> / / FOO_OBJECT_DOT - NEXT : End completions <nl> <nl> / / FOO_OBJECT_NO_DOT : Begin completions <nl> + / / FOO_OBJECT_NO_DOT - NEXT : Decl [ InstanceVar ] / CurrNominal : . lazyInstanceVar [ # Int # ] { { ; name = . + $ } } <nl> / / FOO_OBJECT_NO_DOT - NEXT : Decl [ InstanceVar ] / CurrNominal : . instanceVar [ # Int # ] { { ; name = . + $ } } <nl> / / FOO_OBJECT_NO_DOT - NEXT : Decl [ InstanceMethod ] / CurrNominal : . instanceFunc0 ( ) [ # Void # ] { { ; name = . + $ } } <nl> / / FOO_OBJECT_NO_DOT - NEXT : Decl [ InstanceMethod ] / CurrNominal : . instanceFunc1 ( { # ( a ) : Int # } ) [ # Void # ] { { ; name = . + $ } } <nl> var fooObject : FooStruct <nl> / / FOO_STRUCT_NO_DOT - NEXT : Decl [ StaticMethod ] / CurrNominal : . overloadedStaticFunc1 ( ) [ # Double # ] { { ; name = . + $ } } <nl> / / FOO_STRUCT_NO_DOT - NEXT : Decl [ StaticMethod ] / CurrNominal : . overloadedStaticFunc2 ( { # ( x ) : Int # } ) [ # Int # ] { { ; name = . + $ } } <nl> / / FOO_STRUCT_NO_DOT - NEXT : Decl [ StaticMethod ] / CurrNominal : . overloadedStaticFunc2 ( { # ( x ) : Double # } ) [ # Int # ] { { ; name = . + $ } } <nl> - / / FOO_STRUCT_NO_DOT - NEXT : Decl [ Constructor ] / CurrNominal : ( { # instanceVar : Int # } ) [ # FooStruct # ] { { ; name = . + $ } } <nl> + / / FOO_STRUCT_NO_DOT - NEXT : Decl [ Constructor ] / CurrNominal : ( { # lazyInstanceVar : Int ? # } , { # instanceVar : Int # } ) [ # FooStruct # ] { { ; name = . + $ } } <nl> / / FOO_STRUCT_NO_DOT - NEXT : Decl [ Constructor ] / CurrNominal : ( ) [ # FooStruct # ] { { ; name = . + $ } } <nl> / / FOO_STRUCT_NO_DOT - NEXT : Decl [ InstanceMethod ] / CurrNominal : . extFunc0 ( { # self : & FooStruct # } ) [ # ( ) - > Void # ] { { ; name = . + $ } } <nl> / / FOO_STRUCT_NO_DOT - NEXT : Decl [ StaticVar ] / CurrNominal : . extStaticProp [ # Int # ] { { ; name = . + $ } } <nl>
Add isUserAccessible ( ) in Decl to show whether swift users should know such decl exists . For instance , a . storage for lazy var a is a inaccessible decl . An implicit decl is not necessarily inaccessible , for instance , self .
apple/swift
7f668e7b49e5b27a2e43cf2f9bac59974dfb6736
2015-02-26T19:16:54Z
mmm a / tensorflow / core / public / version . h <nl> ppp b / tensorflow / core / public / version . h <nl> limitations under the License . <nl> <nl> # define TF_GRAPH_DEF_VERSION_MIN_PRODUCER 0 <nl> # define TF_GRAPH_DEF_VERSION_MIN_CONSUMER 0 <nl> - # define TF_GRAPH_DEF_VERSION 606 / / Updated : 2020 / 12 / 5 <nl> + # define TF_GRAPH_DEF_VERSION 607 / / Updated : 2020 / 12 / 6 <nl> <nl> / / Checkpoint compatibility versions ( the versions field in SavedSliceMeta ) . <nl> / / <nl>
Update GraphDef version to 607 .
tensorflow/tensorflow
dd3416ced0b683bc1804cc75d2a611ad3de49a91
2020-12-06T09:12:42Z
mmm a / fdbserver / RestoreApplier . actor . cpp <nl> ppp b / fdbserver / RestoreApplier . actor . cpp <nl> struct DBApplyProgress { <nl> } ; <nl> <nl> ACTOR Future < Void > applyToDB ( Reference < RestoreApplierData > self , Database cx ) { <nl> - state std : : string typeStr = " " ; <nl> / / state variables must be defined at the start of actor , otherwise it will not be initialized when the actor is created <nl> + state std : : string typeStr = " " ; <nl> state Reference < ReadYourWritesTransaction > tr ( new ReadYourWritesTransaction ( cx ) ) ; <nl> state DBApplyProgress progress ( self ) ; <nl> <nl> mmm a / fdbserver / workloads / BackupAndParallelRestoreCorrectness . actor . cpp <nl> ppp b / fdbserver / workloads / BackupAndParallelRestoreCorrectness . actor . cpp <nl> struct BackupAndParallelRestoreCorrectnessWorkload : TestWorkload { <nl> ACTOR static Future < Void > checkDB ( Database cx , std : : string when , <nl> BackupAndParallelRestoreCorrectnessWorkload * self ) { <nl> <nl> + wait ( delay ( 1 . 0 ) ) ; / / Simply avoid compiler warning <nl> return Void ( ) ; <nl> <nl> / / state Key keyPrefix = LiteralStringRef ( " " ) ; <nl> struct BackupAndParallelRestoreCorrectnessWorkload : TestWorkload { <nl> state FileBackupAgent backupAgent ; <nl> state Future < Void > extraBackup ; <nl> state bool extraTasks = false ; <nl> + state Transaction tr1 ( cx ) ; <nl> + state ReadYourWritesTransaction tr2 ( cx ) ; <nl> + state UID randomID = nondeterministicRandom ( ) - > randomUniqueID ( ) ; <nl> + state int restoreIndex = 0 ; <nl> + state bool restoreDone = false ; <nl> + <nl> TraceEvent ( " BARW_Arguments " ) <nl> . detail ( " BackupTag " , printable ( self - > backupTag ) ) <nl> . detail ( " PerformRestore " , self - > performRestore ) <nl> struct BackupAndParallelRestoreCorrectnessWorkload : TestWorkload { <nl> . detail ( " AbortAndRestartAfter " , self - > abortAndRestartAfter ) <nl> . detail ( " DifferentialAfter " , self - > stopDifferentialAfter ) ; <nl> <nl> - state UID randomID = nondeterministicRandom ( ) - > randomUniqueID ( ) ; <nl> if ( self - > allowPauses & & BUGGIFY ) { <nl> state Future < Void > cp = changePaused ( cx , & backupAgent ) ; <nl> } <nl> struct BackupAndParallelRestoreCorrectnessWorkload : TestWorkload { <nl> <nl> state std : : vector < Future < Version > > restores ; <nl> state std : : vector < Standalone < StringRef > > restoreTags ; <nl> - state int restoreIndex ; <nl> + / / state int restoreIndex = 0 ; <nl> <nl> / / Restore each range by calling backupAgent . restore ( ) <nl> printf ( " Prepare for restore requests . Number of backupRanges : % d \ n " , self - > backupRanges . size ( ) ) ; <nl> - state Transaction tr1 ( cx ) ; <nl> + / / state Transaction tr1 ( cx ) ; <nl> loop { <nl> tr1 . setOption ( FDBTransactionOptions : : ACCESS_SYSTEM_KEYS ) ; <nl> tr1 . setOption ( FDBTransactionOptions : : LOCK_AWARE ) ; <nl> struct BackupAndParallelRestoreCorrectnessWorkload : TestWorkload { <nl> <nl> / / We should wait on all restore before proceeds <nl> TraceEvent ( " FastRestore " ) . detail ( " BackupAndParallelRestore " , " WaitForRestoreToFinish " ) ; <nl> - state bool restoreDone = false ; <nl> - state ReadYourWritesTransaction tr2 ( cx ) ; <nl> + restoreDone = false ; <nl> + / / state ReadYourWritesTransaction tr2 ( cx ) ; <nl> state Future < Void > watchForRestoreRequestDone ; <nl> loop { <nl> try { <nl>
Move state variable to the start of function
apple/foundationdb
530b689299be98b9c2fccd00f2e63f72e7972c7c
2019-11-26T19:17:59Z
mmm a / tensorflow / contrib / distributions / python / kernel_tests / bijector_test . py <nl> ppp b / tensorflow / contrib / distributions / python / kernel_tests / bijector_test . py <nl> def dynamic_run ( fun , x_value ) : <nl> for run in ( static_run , dynamic_run ) : <nl> mu = - 1 . <nl> # Corresponds to scale = 2 <nl> - bijector = bijectors . Affine ( <nl> - shift = mu , scale_identity_multiplier = None , scale_diag = [ 2 . ] ) <nl> + bijector = bijectors . Affine ( shift = mu , scale_diag = [ 2 . ] ) <nl> self . assertEqual ( 0 , bijector . shaper . event_ndims . eval ( ) ) # " is scalar " <nl> x = [ 1 . , 2 , 3 ] # Three scalar samples ( no batches ) . <nl> self . assertAllClose ( [ 1 . , 3 , 5 ] , run ( bijector . forward , x ) ) <nl> def dynamic_run ( fun , x_value ) : <nl> mu = [ 1 . ] <nl> # One batch , scalar . <nl> # Corresponds to scale = 1 . <nl> - bijector = bijectors . Affine ( <nl> - shift = mu , scale_identity_multiplier = None , scale_diag = [ 1 . ] ) <nl> + bijector = bijectors . Affine ( shift = mu , scale_diag = [ 1 . ] ) <nl> self . assertEqual ( <nl> 0 , bijector . shaper . event_ndims . eval ( ) ) # " is scalar " <nl> x = [ 1 . ] # One sample from one batches . <nl> def dynamic_run ( fun , x_value ) : <nl> mu = [ 1 . , - 1 ] <nl> # Univariate , two batches . <nl> # Corresponds to scale = 1 . <nl> - bijector = bijectors . Affine ( <nl> - shift = mu , scale_identity_multiplier = None , scale_diag = [ 1 . ] ) <nl> + bijector = bijectors . Affine ( shift = mu , scale_diag = [ 1 . ] ) <nl> self . assertEqual ( <nl> 0 , bijector . shaper . event_ndims . eval ( ) ) # " is scalar " <nl> x = [ 1 . , 1 ] # One sample from each of two batches . <nl> def dynamic_run ( fun , x_value ) : <nl> mu = [ 1 . , - 1 ] <nl> # Multivariate <nl> # Corresponds to scale = [ [ 2 . , 0 ] , [ 0 , 1 . ] ] <nl> - bijector = bijectors . Affine ( <nl> - shift = mu , scale_identity_multiplier = None , <nl> - scale_diag = [ 2 . , 1 ] , event_ndims = 1 ) <nl> + bijector = bijectors . Affine ( shift = mu , scale_diag = [ 2 . , 1 ] , event_ndims = 1 ) <nl> self . assertEqual ( 1 , bijector . shaper . event_ndims . eval ( ) ) # " is vector " <nl> x = [ 1 . , 1 ] <nl> # matmul ( sigma , x ) + shift <nl> def testNoBatchMultivariateFullDynamic ( self ) : <nl> event_ndims : event_ndims_value } <nl> <nl> bijector = bijectors . Affine ( <nl> - shift = mu , scale_identity_multiplier = None , <nl> + shift = mu , <nl> scale_diag = scale_diag , event_ndims = event_ndims ) <nl> self . assertEqual ( 1 , sess . run ( bijector . shaper . event_ndims , feed_dict ) ) <nl> self . assertAllClose ( [ [ 3 . , 1 ] ] , sess . run ( bijector . forward ( x ) , feed_dict ) ) <nl> def dynamic_run ( fun , x_value ) : <nl> # Corresponds to 1 2x2 matrix , with twos on the diagonal . <nl> scale_diag = [ [ 2 . , 2 ] ] <nl> bijector = bijectors . Affine ( <nl> - shift = mu , scale_identity_multiplier = None , <nl> + shift = mu , <nl> scale_diag = scale_diag , event_ndims = 1 ) <nl> self . assertEqual ( <nl> 1 , bijector . shaper . event_ndims . eval ( ) ) # " is vector " <nl> def testBatchMultivariateFullDynamic ( self ) : <nl> scale_diag_value , event_ndims : event_ndims_value } <nl> <nl> bijector = bijectors . Affine ( <nl> - shift = mu , scale_identity_multiplier = None , <nl> + shift = mu , <nl> scale_diag = scale_diag , event_ndims = event_ndims ) <nl> self . assertEqual ( 1 , sess . run ( bijector . shaper . event_ndims , feed_dict ) ) <nl> self . assertAllClose ( [ [ [ 3 . , 1 ] ] ] , sess . run ( bijector . forward ( x ) , feed_dict ) ) <nl> def dynamic_run ( fun , x_value ) : <nl> # scale = [ [ 2 . , 0 ] , [ 2 , 3 ] ] <nl> bijector = bijectors . Affine ( <nl> shift = mu , <nl> - scale_identity_multiplier = None , <nl> scale_diag = [ 1 . , 2 . ] , <nl> scale_tril = [ [ 1 . , 0 ] , [ 2 . , 1 ] ] , <nl> event_ndims = 1 ) <nl> def dynamic_run ( fun , x_value ) : <nl> event_ndims = 1 ) <nl> bijector_ref = bijectors . Affine ( <nl> shift = mu , <nl> - scale_identity_multiplier = None , <nl> scale_diag = [ 10 . , 2 , 3 ] , <nl> event_ndims = 1 ) <nl> <nl> def dynamic_run ( fun , x_value ) : <nl> # Corresponds to scale = [ [ 10 , 0 , 0 ] , [ 0 , 3 , 0 ] , [ 0 , 0 , 5 ] ] <nl> bijector = bijectors . Affine ( <nl> shift = mu , <nl> - scale_identity_multiplier = None , <nl> scale_diag = [ 2 . , 3 , 4 ] , <nl> scale_perturb_diag = [ 2 . , 1 ] , <nl> scale_perturb_factor = [ [ 2 . , 0 ] , [ 0 . , 0 ] , [ 0 , 1 ] ] , <nl> event_ndims = 1 ) <nl> bijector_ref = bijectors . Affine ( <nl> shift = mu , <nl> - scale_identity_multiplier = None , <nl> scale_diag = [ 10 . , 3 , 5 ] , <nl> event_ndims = 1 ) <nl> <nl> def dynamic_run ( fun , x_value ) : <nl> # Corresponds to scale = [ [ 10 , 0 , 0 ] , [ 1 , 3 , 0 ] , [ 2 , 3 , 5 ] ] <nl> bijector = bijectors . Affine ( <nl> shift = mu , <nl> - scale_identity_multiplier = None , <nl> scale_tril = [ [ 2 . , 0 , 0 ] , [ 1 , 3 , 0 ] , [ 2 , 3 , 4 ] ] , <nl> scale_perturb_diag = [ 2 . , 1 ] , <nl> scale_perturb_factor = [ [ 2 . , 0 ] , [ 0 . , 0 ] , [ 0 , 1 ] ] , <nl> event_ndims = 1 ) <nl> bijector_ref = bijectors . Affine ( <nl> shift = mu , <nl> - scale_identity_multiplier = None , <nl> scale_tril = [ [ 10 . , 0 , 0 ] , [ 1 , 3 , 0 ] , [ 2 , 3 , 5 ] ] , <nl> event_ndims = 1 ) <nl> <nl> def dynamic_run ( fun , x_value ) : <nl> # Corresponds to scale = [ [ 6 , 0 , 0 ] , [ 1 , 3 , 0 ] , [ 2 , 3 , 5 ] ] <nl> bijector = bijectors . Affine ( <nl> shift = mu , <nl> - scale_identity_multiplier = None , <nl> scale_tril = [ [ 2 . , 0 , 0 ] , [ 1 , 3 , 0 ] , [ 2 , 3 , 4 ] ] , <nl> scale_perturb_diag = None , <nl> scale_perturb_factor = [ [ 2 . , 0 ] , [ 0 . , 0 ] , [ 0 , 1 ] ] , <nl> event_ndims = 1 ) <nl> bijector_ref = bijectors . Affine ( <nl> shift = mu , <nl> - scale_identity_multiplier = None , <nl> scale_tril = [ [ 6 . , 0 , 0 ] , [ 1 , 3 , 0 ] , [ 2 , 3 , 5 ] ] , <nl> event_ndims = 1 ) <nl> <nl> def testNoBatchMultivariateRaisesWhenSingular ( self ) : <nl> mu = [ 1 . , - 1 ] <nl> bijector = bijectors . Affine ( <nl> shift = mu , <nl> - scale_identity_multiplier = None , <nl> # Has zero on the diagonal . <nl> scale_diag = [ 0 . , 1 ] , <nl> event_ndims = 1 , <nl> def testScaleZeroScalarRaises ( self ) : <nl> # Check Diag matrix with zero scaling . <nl> bijector = bijectors . Affine ( <nl> shift = mu , <nl> - scale_identity_multiplier = None , <nl> scale_diag = [ 0 . 0 ] , <nl> validate_args = True ) <nl> with self . assertRaisesOpError ( " Condition x > 0 " ) : <nl> def _makeScale ( <nl> v = scale_perturb_factor <nl> d2 = scale_perturb_diag <nl> <nl> - # No scale . <nl> - if c is None and d1 is None and tril is None : <nl> + # Ambiguous low rank update . <nl> + if v is None and d2 is not None : <nl> return None <nl> <nl> + if c is None and d1 is None and tril is None : <nl> + # Special case when no scale args are passed in . This means use an <nl> + # identity matrix . <nl> + if v is None and d2 is None : <nl> + c = 1 . <nl> + # No scale . <nl> + else : <nl> + return None <nl> + <nl> matrix = np . float32 ( 0 . ) <nl> if c is not None : <nl> # Infer the dimension from x . <nl> def _powerset ( x ) : <nl> <nl> bijector_args = dict ( { " event_ndims " : 1 } , * * args ) <nl> <nl> - # Special case this , since the default value for this in the bijector <nl> - # is 1 . 0 . <nl> - if " scale_identity_multiplier " not in bijector_args : <nl> - bijector_args [ " scale_identity_multiplier " ] = None <nl> - <nl> # We haven ' t specified enough information for the scale . <nl> if scale is None : <nl> with self . assertRaisesRegexp ( ValueError , ( " must be specified . " ) ) : <nl> def testBijector ( self ) : <nl> bijectors . Identity ( ) , <nl> bijectors . Exp ( event_ndims = 1 ) , <nl> bijectors . Affine ( <nl> - shift = [ 0 . , 1 . ] , scale_identity_multiplier = None , <nl> + shift = [ 0 . , 1 . ] , <nl> scale_diag = [ 2 . , 3 . ] , event_ndims = 1 ) , <nl> bijectors . Softplus ( event_ndims = 1 ) , <nl> bijectors . SoftmaxCentered ( event_ndims = 1 ) , <nl> mmm a / tensorflow / contrib / distributions / python / ops / bijector . py <nl> ppp b / tensorflow / contrib / distributions / python / ops / bijector . py <nl> <nl> import numpy as np <nl> import six <nl> <nl> + from tensorflow . contrib import framework as contrib_framework <nl> from tensorflow . contrib . distributions . python . ops import operator_pd_cholesky <nl> from tensorflow . contrib . distributions . python . ops import operator_pd_diag <nl> from tensorflow . contrib . distributions . python . ops import operator_pd_identity <nl> class Affine ( Bijector ) : <nl> <nl> def __init__ ( self , <nl> shift , <nl> - scale_identity_multiplier = 1 . 0 , <nl> + scale_identity_multiplier = None , <nl> scale_diag = None , <nl> scale_tril = None , <nl> scale_perturb_diag = None , <nl> def __init__ ( self , <nl> super ( Affine , self ) . __init__ ( <nl> batch_ndims = self . _infer_batch_ndims ( ) , <nl> event_ndims = event_ndims , <nl> - graph_parents = [ self . _shift , self . _scale ] , <nl> + graph_parents = [ self . _shift ] + ( <nl> + [ self . _scale ] if contrib_framework . is_tensor ( self . _scale ) <nl> + else self . _scale . inputs ) , <nl> is_constant_jacobian = True , <nl> validate_args = validate_args , <nl> name = name ) <nl> def _create_scale_operator ( <nl> " " " <nl> # Special case , only handling a scaled identity matrix . We don ' t know its <nl> # dimensions , so this is special cased . <nl> - self . _is_only_identity_multiplier = ( identity_multiplier is not None and <nl> - diag is None and <nl> + # We don ' t check identity_multiplier , since below we set it to 1 . if all <nl> + # other scale args are None . <nl> + self . _is_only_identity_multiplier = ( diag is None and <nl> tril is None and <nl> perturb_factor is None ) <nl> + # When no args are specified , treat this as if it were an identity matrix . <nl> + if self . _is_only_identity_multiplier and identity_multiplier is None : <nl> + identity_multiplier = 1 . <nl> + <nl> + # Ambiguous definition of low rank update . <nl> + if perturb_diag is not None and perturb_factor is None : <nl> + raise ValueError ( " When perturb_diag is specified , perturb_factor must be " <nl> + " specified . " ) <nl> <nl> # TODO ( srvasude ) : Create a Linear Operator corresponding to a lower <nl> # triangular matrix , and make VDVTUpdate use that , removing this special <nl>
Affine bijector will default to identity matrix in the presence of no scale args .
tensorflow/tensorflow
060192ea8ee9e618059f1a179d686b921cdd4450
2016-12-09T17:51:49Z
Binary files a / doc / ota_updates / update_memory_copy . png and b / doc / ota_updates / update_memory_copy . png differ <nl>
doc better quality of update_memory_copy . png
esp8266/Arduino
6aa4f9e48100bf4b185044aacf9d369af4616862
2015-12-10T17:06:56Z
mmm a / flow / Trace . cpp <nl> ppp b / flow / Trace . cpp <nl> void openTraceFile ( const NetworkAddress & na , uint64_t rollsize , uint64_t maxLogs <nl> if ( baseOfBase . empty ( ) ) <nl> baseOfBase = " trace " ; <nl> <nl> - std : : string baseName = format ( " % s . % s . % d " , baseOfBase . c_str ( ) , na . ip . toString ( ) . c_str ( ) , na . port ) ; <nl> + std : : string ip = na . ip . toString ( ) ; <nl> + std : : replace ( ip . begin ( ) , ip . end ( ) , ' : ' , ' _ ' ) ; / / For IPv6 , Windows doesn ' t accept ' : ' in filenames . <nl> + std : : string baseName = format ( " % s . % s . % d " , baseOfBase . c_str ( ) , ip . c_str ( ) , na . port ) ; <nl> g_traceLog . open ( directory , baseName , logGroup , format ( " % lld " , time ( NULL ) ) , rollsize , maxLogsSize , ! g_network - > isSimulated ( ) ? na : Optional < NetworkAddress > ( ) ) ; <nl> <nl> uncancellable ( recurring ( & flushTraceFile , FLOW_KNOBS - > TRACE_FLUSH_INTERVAL , TaskFlushTrace ) ) ; <nl>
fix : Use ' _ ' instead of ' : ' in IPv6 tracefile names
apple/foundationdb
c37291a36614f4c199e6da07a32a8648ec643e3f
2019-03-20T21:00:33Z
mmm a / test / cpp / microbenchmarks / BUILD <nl> ppp b / test / cpp / microbenchmarks / BUILD <nl> grpc_cc_library ( <nl> <nl> grpc_cc_test ( <nl> name = " bm_fullstack_unary_ping_pong " , <nl> + size = " large " , <nl> srcs = [ <nl> " bm_fullstack_unary_ping_pong . cc " , <nl> ] , <nl>
Merge pull request from grpc / vjpai - patch - 1
grpc/grpc
86eb64011d952645bcad5af263d5164643021624
2020-07-07T05:47:13Z
mmm a / Marlin / Marlin . h <nl> ppp b / Marlin / Marlin . h <nl> FORCE_INLINE void serialprintPGM ( const char * str ) <nl> void get_command ( ) ; <nl> void process_commands ( ) ; <nl> <nl> - void manage_inactivity ( bool ignore_stepper_queue = false ) <nl> + void manage_inactivity ( bool ignore_stepper_queue = false ) ; <nl> <nl> # if defined ( DUAL_X_CARRIAGE ) & & defined ( X_ENABLE_PIN ) & & X_ENABLE_PIN > - 1 \ <nl> & & defined ( X2_ENABLE_PIN ) & & X2_ENABLE_PIN > - 1 <nl>
Update Marlin . h
MarlinFirmware/Marlin
3d1da45f3eef6331250b7f51d29360d8bd16c27e
2014-12-30T07:30:37Z
mmm a / xbmc / cores / dvdplayer / DVDPlayer . cpp <nl> ppp b / xbmc / cores / dvdplayer / DVDPlayer . cpp <nl> std : : vector < SelectionStream > CSelectionStreams : : Get ( StreamType type ) <nl> return ( lh ) > ( rh ) ; \ <nl> } while ( 0 ) <nl> <nl> + class PredicateSubtitleFilter <nl> + { <nl> + private : <nl> + std : : string audiolang ; <nl> + bool original ; <nl> + public : <nl> + PredicateSubtitleFilter ( std : : string & lang ) <nl> + : audiolang ( lang ) , <nl> + original ( StringUtils : : EqualsNoCase ( CSettings : : Get ( ) . GetString ( " locale . subtitlelanguage " ) , " original " ) ) <nl> + { <nl> + } ; <nl> + <nl> + bool operator ( ) ( const SelectionStream & ss ) const <nl> + { <nl> + if ( ss . type_index = = CMediaSettings : : Get ( ) . GetCurrentVideoSettings ( ) . m_SubtitleStream ) <nl> + return false ; <nl> + <nl> + if ( ( ss . flags & CDemuxStream : : FLAG_FORCED ) & & g_LangCodeExpander . CompareLangCodes ( ss . language , audiolang ) ) <nl> + return false ; <nl> + <nl> + if ( ( ss . flags & CDemuxStream : : FLAG_DEFAULT ) ) <nl> + return false ; <nl> + <nl> + if ( ! original ) <nl> + { <nl> + std : : string subtitle_language = g_langInfo . GetSubtitleLanguage ( ) ; <nl> + if ( g_LangCodeExpander . CompareLangCodes ( subtitle_language , ss . language ) ) <nl> + return false ; <nl> + } <nl> + <nl> + return true ; <nl> + } <nl> + } ; <nl> + <nl> static bool PredicateAudioPriority ( const SelectionStream & lh , const SelectionStream & rh ) <nl> { <nl> PREDICATE_RETURN ( lh . type_index = = CMediaSettings : : Get ( ) . GetCurrentVideoSettings ( ) . m_AudioStream <nl> void CDVDPlayer : : OpenDefaultStreams ( bool reset ) <nl> m_dvdPlayerVideo . EnableSubtitle ( CMediaSettings : : Get ( ) . GetCurrentVideoSettings ( ) . m_SubtitleOn ) ; <nl> <nl> / / open subtitle stream <nl> - streams = m_SelectionStreams . Get ( STREAM_SUBTITLE , PredicateSubtitlePriority ) ; <nl> + SelectionStream as = m_SelectionStreams . Get ( STREAM_AUDIO , GetAudioStream ( ) ) ; <nl> + PredicateSubtitleFilter psf ( as . language ) ; <nl> + streams = m_SelectionStreams . RemoveIf ( STREAM_SUBTITLE , psf ) ; <nl> + std : : stable_sort ( streams . begin ( ) , streams . end ( ) , PredicateSubtitlePriority ) ; <nl> valid = false ; <nl> for ( SelectionStreams : : iterator it = streams . begin ( ) ; it ! = streams . end ( ) & & ! valid ; + + it ) <nl> { <nl> void CDVDPlayer : : OpenDefaultStreams ( bool reset ) <nl> } <nl> } <nl> if ( ! valid ) <nl> + { <nl> CloseSubtitleStream ( true ) ; <nl> + SetSubtitleVisible ( false ) ; <nl> + } <nl> <nl> / / open teletext stream <nl> streams = m_SelectionStreams . Get ( STREAM_TELETEXT ) ; <nl> mmm a / xbmc / cores / dvdplayer / DVDPlayer . h <nl> ppp b / xbmc / cores / dvdplayer / DVDPlayer . h <nl> class CSelectionStreams <nl> return streams ; <nl> } <nl> <nl> + template < typename Filter > <nl> + SelectionStreams RemoveIf ( StreamType type , Filter filter ) <nl> + { <nl> + SelectionStreams streams = Get ( type ) ; <nl> + streams . erase ( std : : remove_if ( streams . begin ( ) , streams . end ( ) , filter ) , streams . end ( ) ) ; <nl> + return streams ; <nl> + } <nl> + <nl> void Clear ( StreamType type , StreamSource source ) ; <nl> int Source ( StreamSource source , std : : string filename ) ; <nl> <nl>
[ DVDPlayer ] Pre - filter subtitles streams to relevant ones before sorting them by priority .
xbmc/xbmc
ff0b1eba74ee903125e4196ffb672dd24cc379f5
2013-11-09T17:08:27Z
old mode 100644 <nl> new mode 100755 <nl> index aac3e5e5a2 . . a783bc782c <nl> mmm a / doc / ota_updates / readme . rst <nl> ppp b / doc / ota_updates / readme . rst <nl> As shown below , the signed hash is appended to the unsigned binary , followed by <nl> <nl> . . code : : bash <nl> <nl> - NORMAL - BINARY < SIGNED HASH > < uint32 LENGTH - OF - SIGNING - DATA - INCLUDING - THIS - 32 - BITS > <nl> + NORMAL - BINARY < SIGNED HASH > < uint32 LENGTH - OF - SIGNING - DATA - INCLUDING - THIS - 32 - BITS > <nl> <nl> Signed Binary Prerequisites <nl> ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ <nl> The following chapters provide more details and specific methods for OTA updates <nl> Arduino IDE <nl> mmmmmmmmm - - <nl> <nl> - Uploading modules wirelessly from Arduino IDE is intended for the following typical scenarios : <nl> + Uploading modules wirelessly from Arduino IDE is intended for the following typical scenarios : <nl> <nl> - - during firmware development as a quicker alternative to loading over a serial port , <nl> + - during firmware development as a quicker alternative to loading over a serial port , <nl> <nl> - - for updating a small number of modules , <nl> + - for updating a small number of modules , <nl> <nl> - only if modules are accessible on the same network as the computer with the Arduino IDE . <nl> <nl> HTTP Server <nl> <nl> ` ` ESPhttpUpdate ` ` class can check for updates and download a binary file from HTTP web server . It is possible to download updates from every IP or domain address on the network or Internet . <nl> <nl> + Note that by default this class closes all other connections except the one used by the update , this is because the update method blocks . This means that if there ' s another application receiving data then TCP packets will build up in the buffer leading to out of memory errors causing the OTA update to fail . There ' s also a limited number of receive buffers available and all may be used up by other applications . <nl> + <nl> + There are some cases where you know that you won ' t be receiving any data but would still like to send progress updates . <nl> + It ' s possible to disable the default behaviour ( and keep connections open ) by calling closeConnectionsOnUpdate ( false ) . <nl> + <nl> Requirements <nl> ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ <nl> <nl> old mode 100644 <nl> new mode 100755 <nl> index 2198a28eb4 . . 9d56718c15 <nl> mmm a / libraries / ESP8266httpUpdate / src / ESP8266httpUpdate . cpp <nl> ppp b / libraries / ESP8266httpUpdate / src / ESP8266httpUpdate . cpp <nl> HTTPUpdateResult ESP8266HTTPUpdate : : handleUpdate ( HTTPClient & http , const String & <nl> <nl> WiFiClient * tcp = http . getStreamPtr ( ) ; <nl> <nl> - WiFiUDP : : stopAll ( ) ; <nl> - WiFiClient : : stopAllExcept ( tcp ) ; <nl> + if ( _closeConnectionsOnUpdate ) { <nl> + WiFiUDP : : stopAll ( ) ; <nl> + WiFiClient : : stopAllExcept ( tcp ) ; <nl> + } <nl> <nl> delay ( 100 ) ; <nl> <nl> old mode 100644 <nl> new mode 100755 <nl> index 62fe280cda . . 8d06def9dd <nl> mmm a / libraries / ESP8266httpUpdate / src / ESP8266httpUpdate . h <nl> ppp b / libraries / ESP8266httpUpdate / src / ESP8266httpUpdate . h <nl> class ESP8266HTTPUpdate <nl> _followRedirects = follow ; <nl> } <nl> <nl> + void closeConnectionsOnUpdate ( bool sever ) <nl> + { <nl> + _closeConnectionsOnUpdate = sever ; <nl> + } <nl> + <nl> void setLedPin ( int ledPin = - 1 , uint8_t ledOn = HIGH ) <nl> { <nl> _ledPin = ledPin ; <nl> class ESP8266HTTPUpdate <nl> / / Set the error and potentially use a CB to notify the application <nl> void _setLastError ( int err ) { <nl> _lastError = err ; <nl> - if ( _cbError ) { <nl> + if ( _cbError ) { <nl> _cbError ( err ) ; <nl> } <nl> } <nl> int _lastError ; <nl> bool _rebootOnUpdate = true ; <nl> + bool _closeConnectionsOnUpdate = true ; <nl> private : <nl> int _httpClientTimeout ; <nl> bool _followRedirects ; <nl>
Resolved issue ( )
esp8266/Arduino
16319da63d4e8f7b4d029bfe667ed1b370a485bb
2020-02-23T00:30:17Z
new file mode 100644 <nl> index 0000000000000 . . 8a3efac838e4d <nl> mmm / dev / null <nl> ppp b / tensorflow / lite / experimental / micro / ecm3531 / debug_log . cc <nl> <nl> + # include " tensorflow / lite / experimental / micro / debug_log . h " <nl> + <nl> + # include " eta_csp_io . h " <nl> + <nl> + extern " C " void DebugLog ( const char * s ) { <nl> + EtaCspIoPrintf ( " % s " , s ) ; <nl> + } <nl>
moved definition of DebugLog here from _main
tensorflow/tensorflow
5ca8a9986b5d33ca3b0c023e8fa9dd214ebddb7f
2019-01-30T21:53:18Z
mmm a / atom / browser / api / atom_api_web_contents . cc <nl> ppp b / atom / browser / api / atom_api_web_contents . cc <nl> WebContents : : ~ WebContents ( ) { <nl> <nl> RenderViewDeleted ( web_contents ( ) - > GetRenderViewHost ( ) ) ; <nl> <nl> - if ( type_ = = BROWSER_WINDOW & & owner_window ( ) ) { <nl> - owner_window ( ) - > CloseContents ( nullptr ) ; <nl> - } else if ( type_ = = WEB_VIEW ) { <nl> + if ( type_ = = WEB_VIEW ) { <nl> DestroyWebContents ( false / * async * / ) ; <nl> } else { <nl> - DestroyWebContents ( true / * async * / ) ; <nl> + if ( type_ = = BROWSER_WINDOW & & owner_window ( ) ) { <nl> + owner_window ( ) - > CloseContents ( nullptr ) ; <nl> + } else { <nl> + DestroyWebContents ( true / * async * / ) ; <nl> + } <nl> + / / The WebContentsDestroyed will not be called automatically because we <nl> + / / destroy the webContents in the next tick . So we have to manually <nl> + / / call it here to make sure " destroyed " event is emitted . <nl> + WebContentsDestroyed ( ) ; <nl> } <nl> } <nl> } <nl>
invoke WebContentsDestroyed manually when destruction path is async
electron/electron
9e3b8ade12213e9ae870ea6bd4834c5cbca34f50
2017-05-01T07:53:14Z
similarity index 100 % <nl> rename from Marlin / dogm_bitmaps . h <nl> rename to Marlin / src / lcd / dogm / dogm_bitmaps . h <nl> similarity index 100 % <nl> rename from Marlin / dogm_font_data_6x9_marlin . h <nl> rename to Marlin / src / lcd / dogm / dogm_font_data_6x9_marlin . h <nl> similarity index 100 % <nl> rename from Marlin / dogm_font_data_HD44780_C . h <nl> rename to Marlin / src / lcd / dogm / dogm_font_data_HD44780_C . h <nl> similarity index 100 % <nl> rename from Marlin / dogm_font_data_HD44780_J . h <nl> rename to Marlin / src / lcd / dogm / dogm_font_data_HD44780_J . h <nl> similarity index 100 % <nl> rename from Marlin / dogm_font_data_HD44780_W . h <nl> rename to Marlin / src / lcd / dogm / dogm_font_data_HD44780_W . h <nl> similarity index 100 % <nl> rename from Marlin / dogm_font_data_ISO10646_1 . h <nl> rename to Marlin / src / lcd / dogm / dogm_font_data_ISO10646_1 . h <nl> similarity index 100 % <nl> rename from Marlin / dogm_font_data_ISO10646_1_PL . h <nl> rename to Marlin / src / lcd / dogm / dogm_font_data_ISO10646_1_PL . h <nl> similarity index 100 % <nl> rename from Marlin / dogm_font_data_ISO10646_1_tr . h <nl> rename to Marlin / src / lcd / dogm / dogm_font_data_ISO10646_1_tr . h <nl> similarity index 100 % <nl> rename from Marlin / dogm_font_data_ISO10646_5_Cyrillic . h <nl> rename to Marlin / src / lcd / dogm / dogm_font_data_ISO10646_5_Cyrillic . h <nl> similarity index 100 % <nl> rename from Marlin / dogm_font_data_ISO10646_CN . h <nl> rename to Marlin / src / lcd / dogm / dogm_font_data_ISO10646_CN . h <nl> similarity index 100 % <nl> rename from Marlin / dogm_font_data_ISO10646_CZ . h <nl> rename to Marlin / src / lcd / dogm / dogm_font_data_ISO10646_CZ . h <nl> similarity index 100 % <nl> rename from Marlin / dogm_font_data_ISO10646_Greek . h <nl> rename to Marlin / src / lcd / dogm / dogm_font_data_ISO10646_Greek . h <nl> similarity index 100 % <nl> rename from Marlin / dogm_font_data_ISO10646_Kana . h <nl> rename to Marlin / src / lcd / dogm / dogm_font_data_ISO10646_Kana . h <nl> similarity index 100 % <nl> rename from Marlin / dogm_font_data_Marlin_symbols . h <nl> rename to Marlin / src / lcd / dogm / dogm_font_data_Marlin_symbols . h <nl> similarity index 100 % <nl> rename from Marlin / ultralcd_st7565_u8glib_VIKI . h <nl> rename to Marlin / src / lcd / dogm / ultralcd_st7565_u8glib_VIKI . h <nl> similarity index 100 % <nl> rename from Marlin / ultralcd_st7920_u8glib_rrd . h <nl> rename to Marlin / src / lcd / dogm / ultralcd_st7920_u8glib_rrd . h <nl> similarity index 100 % <nl> rename from Marlin / language_an . h <nl> rename to Marlin / src / lcd / language / language_an . h <nl> similarity index 100 % <nl> rename from Marlin / language_bg . h <nl> rename to Marlin / src / lcd / language / language_bg . h <nl> similarity index 100 % <nl> rename from Marlin / language_ca . h <nl> rename to Marlin / src / lcd / language / language_ca . h <nl> similarity index 100 % <nl> rename from Marlin / language_cn . h <nl> rename to Marlin / src / lcd / language / language_cn . h <nl> similarity index 100 % <nl> rename from Marlin / language_cz . h <nl> rename to Marlin / src / lcd / language / language_cz . h <nl> similarity index 100 % <nl> rename from Marlin / language_cz_utf8 . h <nl> rename to Marlin / src / lcd / language / language_cz_utf8 . h <nl> similarity index 100 % <nl> rename from Marlin / language_da . h <nl> rename to Marlin / src / lcd / language / language_da . h <nl> similarity index 100 % <nl> rename from Marlin / language_de . h <nl> rename to Marlin / src / lcd / language / language_de . h <nl> similarity index 100 % <nl> rename from Marlin / language_el - gr . h <nl> rename to Marlin / src / lcd / language / language_el - gr . h <nl> similarity index 100 % <nl> rename from Marlin / language_el . h <nl> rename to Marlin / src / lcd / language / language_el . h <nl> similarity index 100 % <nl> rename from Marlin / language_en . h <nl> rename to Marlin / src / lcd / language / language_en . h <nl> similarity index 100 % <nl> rename from Marlin / language_es . h <nl> rename to Marlin / src / lcd / language / language_es . h <nl> similarity index 100 % <nl> rename from Marlin / language_eu . h <nl> rename to Marlin / src / lcd / language / language_eu . h <nl> similarity index 100 % <nl> rename from Marlin / language_fi . h <nl> rename to Marlin / src / lcd / language / language_fi . h <nl> similarity index 100 % <nl> rename from Marlin / language_fr . h <nl> rename to Marlin / src / lcd / language / language_fr . h <nl> similarity index 100 % <nl> rename from Marlin / language_gl . h <nl> rename to Marlin / src / lcd / language / language_gl . h <nl> similarity index 100 % <nl> rename from Marlin / language_hr . h <nl> rename to Marlin / src / lcd / language / language_hr . h <nl> similarity index 100 % <nl> rename from Marlin / language_it . h <nl> rename to Marlin / src / lcd / language / language_it . h <nl> similarity index 100 % <nl> rename from Marlin / language_kana . h <nl> rename to Marlin / src / lcd / language / language_kana . h <nl> similarity index 100 % <nl> rename from Marlin / language_kana_utf8 . h <nl> rename to Marlin / src / lcd / language / language_kana_utf8 . h <nl> similarity index 100 % <nl> rename from Marlin / language_nl . h <nl> rename to Marlin / src / lcd / language / language_nl . h <nl> similarity index 100 % <nl> rename from Marlin / language_pl - DOGM . h <nl> rename to Marlin / src / lcd / language / language_pl - DOGM . h <nl> similarity index 100 % <nl> rename from Marlin / language_pl - HD44780 . h <nl> rename to Marlin / src / lcd / language / language_pl - HD44780 . h <nl> similarity index 100 % <nl> rename from Marlin / language_pl . h <nl> rename to Marlin / src / lcd / language / language_pl . h <nl> similarity index 100 % <nl> rename from Marlin / language_pt - br . h <nl> rename to Marlin / src / lcd / language / language_pt - br . h <nl> similarity index 100 % <nl> rename from Marlin / language_pt - br_utf8 . h <nl> rename to Marlin / src / lcd / language / language_pt - br_utf8 . h <nl> similarity index 100 % <nl> rename from Marlin / language_pt . h <nl> rename to Marlin / src / lcd / language / language_pt . h <nl> similarity index 100 % <nl> rename from Marlin / language_pt_utf8 . h <nl> rename to Marlin / src / lcd / language / language_pt_utf8 . h <nl> similarity index 100 % <nl> rename from Marlin / language_ru . h <nl> rename to Marlin / src / lcd / language / language_ru . h <nl> similarity index 100 % <nl> rename from Marlin / language_sk_utf8 . h <nl> rename to Marlin / src / lcd / language / language_sk_utf8 . h <nl> similarity index 100 % <nl> rename from Marlin / language_test . h <nl> rename to Marlin / src / lcd / language / language_test . h <nl> similarity index 100 % <nl> rename from Marlin / language_tr . h <nl> rename to Marlin / src / lcd / language / language_tr . h <nl> similarity index 100 % <nl> rename from Marlin / language_uk . h <nl> rename to Marlin / src / lcd / language / language_uk . h <nl> similarity index 100 % <nl> rename from Marlin / language_zh_CN . h <nl> rename to Marlin / src / lcd / language / language_zh_CN . h <nl> similarity index 100 % <nl> rename from Marlin / language_zh_TW . h <nl> rename to Marlin / src / lcd / language / language_zh_TW . h <nl> similarity index 100 % <nl> rename from Marlin / thermistornames . h <nl> rename to Marlin / src / lcd / thermistornames . h <nl> similarity index 100 % <nl> rename from Marlin / ultralcd . cpp <nl> rename to Marlin / src / lcd / ultralcd . cpp <nl> similarity index 100 % <nl> rename from Marlin / ultralcd . h <nl> rename to Marlin / src / lcd / ultralcd . h <nl> similarity index 100 % <nl> rename from Marlin / ultralcd_impl_DOGM . h <nl> rename to Marlin / src / lcd / ultralcd_impl_DOGM . h <nl> similarity index 100 % <nl> rename from Marlin / ultralcd_impl_HD44780 . h <nl> rename to Marlin / src / lcd / ultralcd_impl_HD44780 . h <nl> similarity index 100 % <nl> rename from Marlin / utf_mapper . h <nl> rename to Marlin / src / lcd / utf_mapper . h <nl>
Move ' lcd ' files
MarlinFirmware/Marlin
cc92e544a58dc259a4a2f70ba57b6b48b3aa1e7b
2017-09-12T19:51:04Z
mmm a / tensorflow / go / op / wrappers . go <nl> ppp b / tensorflow / go / op / wrappers . go <nl> func DepthwiseConv2dNativeBackpropFilterDataFormat ( value string ) DepthwiseConv2d <nl> / / element on that dimension . The dimension order is determined by the value of <nl> / / ` data_format ` , see above for details . Dilations in the batch and depth <nl> / / dimensions must be 1 . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> func DepthwiseConv2dNativeBackpropFilterDilations ( value [ ] int64 ) DepthwiseConv2dNativeBackpropFilterAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func SampleDistortedBoundingBoxV2Seed2 ( value int64 ) SampleDistortedBoundingBoxV2 <nl> / / <nl> / / value : The cropped area of the image must have an aspect ratio = <nl> / / width / height within this range . <nl> - / / If not specified , defaults to { f : 0 . 75 f : 1 . 33 } <nl> + / / If not specified , defaults to { f : 0 . 75 f : 1 . 33 } <nl> func SampleDistortedBoundingBoxV2AspectRatioRange ( value [ ] float32 ) SampleDistortedBoundingBoxV2Attr { <nl> return func ( m optionalAttr ) { <nl> m [ " aspect_ratio_range " ] = value <nl> func SampleDistortedBoundingBoxV2AspectRatioRange ( value [ ] float32 ) SampleDistort <nl> / / <nl> / / value : The cropped area of the image must contain a fraction of the <nl> / / supplied image within this range . <nl> - / / If not specified , defaults to { f : 0 . 05 f : 1 } <nl> + / / If not specified , defaults to { f : 0 . 05 f : 1 } <nl> func SampleDistortedBoundingBoxV2AreaRange ( value [ ] float32 ) SampleDistortedBoundingBoxV2Attr { <nl> return func ( m optionalAttr ) { <nl> m [ " area_range " ] = value <nl> func SampleDistortedBoundingBoxMinObjectCovered ( value float32 ) SampleDistortedBo <nl> / / <nl> / / value : The cropped area of the image must have an aspect ratio = <nl> / / width / height within this range . <nl> - / / If not specified , defaults to { f : 0 . 75 f : 1 . 33 } <nl> + / / If not specified , defaults to { f : 0 . 75 f : 1 . 33 } <nl> func SampleDistortedBoundingBoxAspectRatioRange ( value [ ] float32 ) SampleDistortedBoundingBoxAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " aspect_ratio_range " ] = value <nl> func SampleDistortedBoundingBoxAspectRatioRange ( value [ ] float32 ) SampleDistorted <nl> / / <nl> / / value : The cropped area of the image must contain a fraction of the <nl> / / supplied image within this range . <nl> - / / If not specified , defaults to { f : 0 . 05 f : 1 } <nl> + / / If not specified , defaults to { f : 0 . 05 f : 1 } <nl> func SampleDistortedBoundingBoxAreaRange ( value [ ] float32 ) SampleDistortedBoundingBoxAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " area_range " ] = value <nl> func ImageSummaryMaxImages ( value int64 ) ImageSummaryAttr { <nl> / / ImageSummaryBadColor sets the optional bad_color attribute to value . <nl> / / <nl> / / value : Color to use for pixels with non - finite values . <nl> - / / If not specified , defaults to { dtype : DT_UINT8 tensor_shape : { dim : { size : 4 } } int_val : 255 int_val : 0 int_val : 0 int_val : 255 } <nl> + / / If not specified , defaults to { dtype : DT_UINT8 tensor_shape : { dim : { size : 4 } } int_val : 255 int_val : 0 int_val : 0 int_val : 255 } <nl> func ImageSummaryBadColor ( value tf . Tensor ) ImageSummaryAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " bad_color " ] = value <nl> func Conv3DBackpropFilterV2DataFormat ( value string ) Conv3DBackpropFilterV2Attr { <nl> / / filter element on that dimension . The dimension order is determined by the <nl> / / value of ` data_format ` , see above for details . Dilations in the batch and <nl> / / depth dimensions must be 1 . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 i : 1 } <nl> func Conv3DBackpropFilterV2Dilations ( value [ ] int64 ) Conv3DBackpropFilterV2Attr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func Conv2DBackpropInputDataFormat ( value string ) Conv2DBackpropInputAttr { <nl> / / element on that dimension . The dimension order is determined by the value of <nl> / / ` data_format ` , see above for details . Dilations in the batch and depth <nl> / / dimensions must be 1 . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> func Conv2DBackpropInputDilations ( value [ ] int64 ) Conv2DBackpropInputAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func Conv2DDataFormat ( value string ) Conv2DAttr { <nl> / / filter element on that dimension . The dimension order is determined by the <nl> / / value of ` data_format ` , see above for details . Dilations in the batch and <nl> / / depth dimensions must be 1 . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> func Conv2DDilations ( value [ ] int64 ) Conv2DAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func QuantizedDepthwiseConv2DWithBiasAndReluAndRequantizeOutType ( value tf . DataTy <nl> / / QuantizedDepthwiseConv2DWithBiasAndReluAndRequantizeDilations sets the optional dilations attribute to value . <nl> / / <nl> / / value : List of dilation values . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> func QuantizedDepthwiseConv2DWithBiasAndReluAndRequantizeDilations ( value [ ] int64 ) QuantizedDepthwiseConv2DWithBiasAndReluAndRequantizeAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func QuantizedDepthwiseConv2DWithBiasAndReluOutType ( value tf . DataType ) Quantized <nl> / / QuantizedDepthwiseConv2DWithBiasAndReluDilations sets the optional dilations attribute to value . <nl> / / <nl> / / value : List of dilation values . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> func QuantizedDepthwiseConv2DWithBiasAndReluDilations ( value [ ] int64 ) QuantizedDepthwiseConv2DWithBiasAndReluAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func QuantizedDepthwiseConv2DWithBiasOutType ( value tf . DataType ) QuantizedDepthwi <nl> / / QuantizedDepthwiseConv2DWithBiasDilations sets the optional dilations attribute to value . <nl> / / <nl> / / value : List of dilation values . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> func QuantizedDepthwiseConv2DWithBiasDilations ( value [ ] int64 ) QuantizedDepthwiseConv2DWithBiasAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func QuantizedDepthwiseConv2DOutType ( value tf . DataType ) QuantizedDepthwiseConv2D <nl> / / QuantizedDepthwiseConv2DDilations sets the optional dilations attribute to value . <nl> / / <nl> / / value : List of dilation values . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> func QuantizedDepthwiseConv2DDilations ( value [ ] int64 ) QuantizedDepthwiseConv2DAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func QuantizedConv2DPerChannelOutType ( value tf . DataType ) QuantizedConv2DPerChann <nl> / / QuantizedConv2DPerChannelDilations sets the optional dilations attribute to value . <nl> / / <nl> / / value : list of dilation values . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> func QuantizedConv2DPerChannelDilations ( value [ ] int64 ) QuantizedConv2DPerChannelAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func Conv3DBackpropInputV2DataFormat ( value string ) Conv3DBackpropInputV2Attr { <nl> / / filter element on that dimension . The dimension order is determined by the <nl> / / value of ` data_format ` , see above for details . Dilations in the batch and <nl> / / depth dimensions must be 1 . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 i : 1 } <nl> func Conv3DBackpropInputV2Dilations ( value [ ] int64 ) Conv3DBackpropInputV2Attr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func AvgPool3DGrad ( scope * Scope , orig_input_shape tf . Output , grad tf . Output , ksi <nl> type Conv3DBackpropFilterAttr func ( optionalAttr ) <nl> <nl> / / Conv3DBackpropFilterDilations sets the optional dilations attribute to value . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 i : 1 } <nl> func Conv3DBackpropFilterDilations ( value [ ] int64 ) Conv3DBackpropFilterAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func DepthwiseConv2dNativeDataFormat ( value string ) DepthwiseConv2dNativeAttr { <nl> / / element on that dimension . The dimension order is determined by the value of <nl> / / ` data_format ` , see above for details . Dilations in the batch and depth <nl> / / dimensions must be 1 . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> func DepthwiseConv2dNativeDilations ( value [ ] int64 ) DepthwiseConv2dNativeAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func DepthwiseConv2dNative ( scope * Scope , input tf . Output , filter tf . Output , stri <nl> type Conv3DBackpropInputAttr func ( optionalAttr ) <nl> <nl> / / Conv3DBackpropInputDilations sets the optional dilations attribute to value . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 i : 1 } <nl> func Conv3DBackpropInputDilations ( value [ ] int64 ) Conv3DBackpropInputAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func DepthwiseConv2dNativeBackpropInputDataFormat ( value string ) DepthwiseConv2dN <nl> / / element on that dimension . The dimension order is determined by the value of <nl> / / ` data_format ` , see above for details . Dilations in the batch and depth <nl> / / dimensions must be 1 . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> func DepthwiseConv2dNativeBackpropInputDilations ( value [ ] int64 ) DepthwiseConv2dNativeBackpropInputAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func QuantizedConv2DOutType ( value tf . DataType ) QuantizedConv2DAttr { <nl> / / filter element on that dimension . The dimension order is determined by the <nl> / / value of ` data_format ` , see above for details . Dilations in the batch and <nl> / / depth dimensions must be 1 . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> func QuantizedConv2DDilations ( value [ ] int64 ) QuantizedConv2DAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func Conv3DDataFormat ( value string ) Conv3DAttr { <nl> / / filter element on that dimension . The dimension order is determined by the <nl> / / value of ` data_format ` , see above for details . Dilations in the batch and <nl> / / depth dimensions must be 1 . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 i : 1 } <nl> func Conv3DDilations ( value [ ] int64 ) Conv3DAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl> func Conv2DBackpropFilterDataFormat ( value string ) Conv2DBackpropFilterAttr { <nl> / / element on that dimension . The dimension order is determined by the value of <nl> / / ` data_format ` , see above for details . Dilations in the batch and depth <nl> / / dimensions must be 1 . <nl> - / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> + / / If not specified , defaults to { i : 1 i : 1 i : 1 i : 1 } <nl> func Conv2DBackpropFilterDilations ( value [ ] int64 ) Conv2DBackpropFilterAttr { <nl> return func ( m optionalAttr ) { <nl> m [ " dilations " ] = value <nl>
Go : Update generated wrapper functions for TensorFlow ops .
tensorflow/tensorflow
4279f99847e9fcce9410bda61d3b71065e0df65f
2020-02-09T18:49:49Z
mmm a / infra / mb / mb_config . pyl <nl> ppp b / infra / mb / mb_config . pyl <nl> <nl> ' x64 . debug ' : ' default_debug_x64 ' , <nl> ' x64 . optdebug ' : ' default_optdebug_x64 ' , <nl> ' x64 . release ' : ' default_release_x64 ' , <nl> + ' x64 . release . sample ' : ' release_x64_sample ' , <nl> } , <nl> ' client . dynamorio ' : { <nl> ' linux - v8 - dr ' : ' release_x64 ' , <nl> <nl> ' debug ' , ' x64 ' , ' v8_enable_slow_dchecks ' ] , <nl> ' default_release_x64 ' : [ <nl> ' release ' , ' x64 ' ] , <nl> + ' release_x64_sample ' : [ <nl> + ' release ' , ' x64 ' , ' sample ' ] , <nl> ' default_debug_x86 ' : [ <nl> ' debug ' , ' x86 ' , ' v8_enable_slow_dchecks ' , ' v8_full_debug ' ] , <nl> ' default_optdebug_x86 ' : [ <nl> <nl> ' gn_args ' : ' target_cpu = " x86 " ' , <nl> } , <nl> <nl> + ' sample ' : { <nl> + ' gn_args ' : ' v8_monolithic = true is_component_build = false ' <nl> + ' v8_use_external_startup_data = false use_custom_libcxx = false ' , <nl> + } , <nl> } , <nl> } <nl>
[ sample ] use v8_monolith target to simplify hello world sample
v8/v8
fa4f22642dc626dcbf75e7af182f7ebc57081190
2018-09-03T05:54:26Z
mmm a / README . md <nl> ppp b / README . md <nl> <nl> # HHVM [ ! [ Build Status ] ( https : / / travis - ci . org / facebook / hhvm . png ? branch = master ) ] ( https : / / travis - ci . org / facebook / hhvm ) <nl> <nl> - HHVM ( aka the HipHop Virtual Machine ) is a new open - source virtual machine designed for executing programs written in PHP . HHVM uses a just - in - time compilation approach to achieve superior performance while maintaining the flexibility that PHP developers are accustomed to . To date , HHVM ( and its precedessor HPHPc before it ) has realized over a 9x increase in web request throughput and over a 5x reduction in memory consumption for Facebook compared with the Zend PHP 5 . 2 engine + APC . <nl> + HHVM ( aka the HipHop Virtual Machine ) is a new open - source virtual machine designed for executing programs written in PHP . HHVM uses a just - in - time compilation approach to achieve superior performance while maintaining the flexibility that PHP developers are accustomed to . To date , HHVM ( and its predecessor HPHPc before it ) has realized over a 9x increase in web request throughput and over a 5x reduction in memory consumption for Facebook compared with the Zend PHP 5 . 2 engine + APC . <nl> <nl> HHVM can be run as a standalone webserver ( i . e . without the Apache webserver and the " modphp " extension ) . HHVM can also be used together with a FastCGI - based webserver , and work is in progress to make HHVM work smoothly with Apache . <nl> <nl> mmm a / configure <nl> ppp b / configure <nl> <nl> if [ " $ 1 " = ' - - help ' ] | | [ " $ 1 " = ' - h ' ] ; then <nl> echo ' usage : . / configure - Dvariable = argument . . . \ n ' <nl> echo ' Variables : ' <nl> - echo ' CMAKE_BUILD_TYPE = Debug | Release Sets build type ( default Relase ) . ' <nl> + echo ' CMAKE_BUILD_TYPE = Debug | Release Sets build type ( default Release ) . ' <nl> <nl> exit 2 <nl> fi <nl> mmm a / configure_ubuntu_12 . 04 . sh <nl> ppp b / configure_ubuntu_12 . 04 . sh <nl> <nl> # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # <nl> # <nl> - # Install all the dependancies for HipHop <nl> + # Install all the dependencies for HipHop <nl> # <nl> # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # <nl> <nl> fi <nl> export CMAKE_PREFIX_PATH = ` / bin / pwd ` / . . <nl> export HPHP_HOME = ` / bin / pwd ` <nl> <nl> - # install python - software - properties before trying to add a PPA <nl> + # install python - software - properties before trying to add a PPA <nl> sudo apt - get - y update <nl> sudo apt - get install - y python - software - properties <nl> <nl> - # install apt - fast to speedup later dependency installation <nl> + # install apt - fast to speed up later dependency installation <nl> sudo add - apt - repository - y ppa : apt - fast / stable <nl> sudo apt - get - y update <nl> sudo apt - get - y install apt - fast <nl>
Fixed typos
facebook/hhvm
2ff6d3ca001e31487b8f447dddddbed74b536993
2013-12-09T15:22:23Z
new file mode 100644 <nl> index 0000000000 . . 458bed1e4a <nl> mmm / dev / null <nl> ppp b / osquery / tables / system / windows / drivers . cpp <nl> <nl> + / * <nl> + * Copyright ( c ) 2014 - present , Facebook , Inc . <nl> + * All rights reserved . <nl> + * <nl> + * This source code is licensed under the BSD - style license found in the <nl> + * LICENSE file in the root directory of this source tree . An additional grant <nl> + * of patent rights can be found in the PATENTS file in the same directory . <nl> + * <nl> + * / <nl> + <nl> + # define WIN32_LEAN_AND_MEAN <nl> + # include < Windows . h > <nl> + # include < Winsvc . h > <nl> + # include < psapi . h > <nl> + # include < string > <nl> + <nl> + # include < osquery / core . h > <nl> + # include < osquery / logger . h > <nl> + # include < osquery / tables . h > <nl> + <nl> + # include " osquery / tables / system / windows / registry . h " <nl> + <nl> + # pragma comment ( lib , " Advapi32 . lib " ) <nl> + <nl> + namespace osquery { <nl> + namespace tables { <nl> + <nl> + const std : : string kDrvStartType [ ] = { <nl> + " BOOT_START " , " SYSTEM_START " , " AUTO_START " , " DEMAND_START " , " DISABLED " } ; <nl> + <nl> + const std : : string kDrvStatus [ ] = { " UNKNOWN " , <nl> + " STOPPED " , <nl> + " START_PENDING " , <nl> + " STOP_PENDING " , <nl> + " RUNNING " , <nl> + " CONTINUE_PENDING " , <nl> + " PAUSE_PENDING " , <nl> + " PAUSED " } ; <nl> + <nl> + const std : : map < int , std : : string > kDriverType = { <nl> + { 0x00000001 , " KERNEL " } , { 0x00000002 , " FILE_SYSTEM " } , <nl> + } ; <nl> + <nl> + void queryDrvInfo ( const SC_HANDLE & schScManager , <nl> + ENUM_SERVICE_STATUS_PROCESS & svc , <nl> + std : : map < std : : string , std : : string > & loadedDrivers , <nl> + QueryData & results ) { <nl> + Row r ; <nl> + DWORD cbBufSize = 0 ; <nl> + <nl> + auto schService = <nl> + OpenService ( schScManager , svc . lpServiceName , SERVICE_QUERY_CONFIG ) ; <nl> + <nl> + if ( schService = = nullptr ) { <nl> + TLOG < < " OpenService failed ( " < < GetLastError ( ) < < " ) " ; <nl> + return ; <nl> + } <nl> + <nl> + QueryServiceConfig ( schService , nullptr , 0 , & cbBufSize ) ; <nl> + auto lpsc = static_cast < LPQUERY_SERVICE_CONFIG > ( malloc ( cbBufSize ) ) ; <nl> + if ( QueryServiceConfig ( schService , lpsc , cbBufSize , & cbBufSize ) ! = 0 ) { <nl> + TLOG < < " QueryServiceConfig failed ( " < < GetLastError ( ) < < " ) " ; <nl> + } <nl> + <nl> + r [ " name " ] = SQL_TEXT ( svc . lpServiceName ) ; <nl> + r [ " display_name " ] = SQL_TEXT ( svc . lpDisplayName ) ; <nl> + r [ " status " ] = SQL_TEXT ( kDrvStatus [ svc . ServiceStatusProcess . dwCurrentState ] ) ; <nl> + r [ " start_type " ] = SQL_TEXT ( kDrvStartType [ lpsc - > dwStartType ] ) ; <nl> + <nl> + / / If SCM can ' t get ' path ' of the driver then use the path <nl> + / / available in loadedDrivers list <nl> + if ( strlen ( lpsc - > lpBinaryPathName ) < = 0 ) { <nl> + r [ " path " ] = loadedDrivers [ svc . lpServiceName ] ; <nl> + } else { <nl> + r [ " path " ] = SQL_TEXT ( lpsc - > lpBinaryPathName ) ; <nl> + } <nl> + <nl> + if ( kDriverType . count ( lpsc - > dwServiceType ) > 0 ) { <nl> + r [ " type " ] = SQL_TEXT ( kDriverType . at ( lpsc - > dwServiceType ) ) ; <nl> + } else { <nl> + r [ " type " ] = SQL_TEXT ( " UNKNOWN " ) ; <nl> + } <nl> + <nl> + QueryData regResults ; <nl> + queryKey ( " HKEY_LOCAL_MACHINE " , <nl> + " SYSTEM \ \ CurrentControlSet \ \ Services \ \ " + r [ " name " ] , <nl> + regResults ) ; <nl> + for ( const auto & aKey : regResults ) { <nl> + if ( aKey . at ( " name " ) = = " Owners " ) { <nl> + r [ " inf " ] = SQL_TEXT ( aKey . at ( " data " ) ) ; <nl> + } <nl> + } <nl> + <nl> + / / Remove the driver from loadedDrivers list to avoid duplicates <nl> + loadedDrivers . erase ( svc . lpServiceName ) ; <nl> + results . push_back ( r ) ; <nl> + free ( lpsc ) ; <nl> + CloseServiceHandle ( schService ) ; <nl> + } <nl> + <nl> + void enumLoadedDrivers ( std : : map < std : : string , std : : string > & loadedDrivers ) { <nl> + DWORD bytesNeeded = 0 ; <nl> + int driversCount = 0 ; <nl> + <nl> + auto ret = EnumDeviceDrivers ( nullptr , 0 , & bytesNeeded ) ; <nl> + auto drvBaseAddr = static_cast < LPVOID * > ( malloc ( bytesNeeded ) ) ; <nl> + <nl> + if ( drvBaseAddr = = nullptr ) { <nl> + TLOG < < " enumLoadedDrivers failed to allocate required memory ( " <nl> + < < bytesNeeded < < " ) " ; <nl> + return ; <nl> + } <nl> + <nl> + ret = EnumDeviceDrivers ( drvBaseAddr , bytesNeeded , & bytesNeeded ) ; <nl> + <nl> + driversCount = bytesNeeded / sizeof ( drvBaseAddr [ 0 ] ) ; <nl> + <nl> + if ( ret & & ( driversCount > 0 ) ) { <nl> + auto driverPath = static_cast < LPSTR > ( malloc ( MAX_PATH + 1 ) ) ; <nl> + auto driverName = static_cast < LPSTR > ( malloc ( MAX_PATH + 1 ) ) ; <nl> + <nl> + ZeroMemory ( driverPath , MAX_PATH + 1 ) ; <nl> + ZeroMemory ( driverName , MAX_PATH + 1 ) ; <nl> + <nl> + for ( size_t i = 0 ; i < driversCount ; i + + ) { <nl> + if ( GetDeviceDriverBaseName ( drvBaseAddr [ i ] , driverName , MAX_PATH ) ! = 0 ) { <nl> + if ( GetDeviceDriverFileName ( drvBaseAddr [ i ] , driverPath , MAX_PATH ) ! = <nl> + 0 ) { <nl> + / / Removing file extension <nl> + auto fileExtension = strrchr ( driverName , ' . ' ) ; <nl> + * fileExtension = ' \ 0 ' ; <nl> + loadedDrivers [ driverName ] = driverPath ; <nl> + } else { <nl> + loadedDrivers [ driverName ] = " " ; <nl> + } <nl> + } else { <nl> + TLOG < < " GetDeviceDriverFileName failed ( " < < GetLastError ( ) < < " ) " ; <nl> + } <nl> + } <nl> + <nl> + free ( driverPath ) ; <nl> + free ( driverName ) ; <nl> + } else { <nl> + TLOG < < " EnumDeviceDrivers failed ; array size needed is " < < bytesNeeded ; <nl> + } <nl> + <nl> + free ( drvBaseAddr ) ; <nl> + } <nl> + <nl> + QueryData genDrivers ( QueryContext & context ) { <nl> + DWORD bytesNeeded = 0 ; <nl> + DWORD serviceCount = 0 ; <nl> + std : : map < std : : string , std : : string > loadedDrivers ; <nl> + QueryData results ; <nl> + <nl> + / / Get All Loaded Drivers including ones managed by SCM <nl> + enumLoadedDrivers ( loadedDrivers ) ; <nl> + <nl> + auto schScManager = OpenSCManager ( nullptr , nullptr , GENERIC_READ ) ; <nl> + if ( schScManager = = nullptr ) { <nl> + TLOG < < " EnumServiceStatusEx failed ( " < < GetLastError ( ) < < " ) " ; <nl> + return { } ; <nl> + } <nl> + <nl> + EnumServicesStatusEx ( schScManager , <nl> + SC_ENUM_PROCESS_INFO , <nl> + SERVICE_DRIVER , <nl> + SERVICE_STATE_ALL , <nl> + nullptr , <nl> + 0 , <nl> + & bytesNeeded , <nl> + & serviceCount , <nl> + nullptr , <nl> + nullptr ) ; <nl> + <nl> + auto buf = static_cast < PVOID > ( malloc ( bytesNeeded ) ) ; <nl> + if ( EnumServicesStatusEx ( schScManager , <nl> + SC_ENUM_PROCESS_INFO , <nl> + SERVICE_DRIVER , <nl> + SERVICE_STATE_ALL , <nl> + ( LPBYTE ) buf , <nl> + bytesNeeded , <nl> + & bytesNeeded , <nl> + & serviceCount , <nl> + nullptr , <nl> + nullptr ) ! = 0 ) { <nl> + auto services = static_cast < ENUM_SERVICE_STATUS_PROCESS * > ( buf ) ; <nl> + for ( DWORD i = 0 ; i < serviceCount ; + + i ) { <nl> + queryDrvInfo ( schScManager , services [ i ] , loadedDrivers , results ) ; <nl> + } <nl> + } else { <nl> + TLOG < < " EnumServiceStatusEx failed ( " < < GetLastError ( ) < < " ) " ; <nl> + } <nl> + <nl> + free ( buf ) ; <nl> + CloseServiceHandle ( schScManager ) ; <nl> + <nl> + for ( const auto & element : loadedDrivers ) { <nl> + Row r ; <nl> + r [ " name " ] = element . first ; <nl> + r [ " path " ] = element . second ; <nl> + r [ " status " ] = SQL_TEXT ( kDrvStatus [ 4 ] ) ; <nl> + results . push_back ( r ) ; <nl> + } <nl> + <nl> + return results ; <nl> + } <nl> + } <nl> + } <nl> new file mode 100644 <nl> index 0000000000 . . e95b1c5637 <nl> mmm / dev / null <nl> ppp b / specs / windows / drivers . table <nl> <nl> + table_name ( " drivers " ) <nl> + description ( " Lists all installed and loaded Windows Drivers and their relevant data " ) <nl> + schema ( [ <nl> + Column ( " name " , TEXT , " Driver name " ) , <nl> + Column ( " display_name " , TEXT , " Driver Display name " ) , <nl> + Column ( " status " , TEXT , " Driver Current status : STOPPED , START_PENDING , STOP_PENDING , RUNNING , CONTINUE_PENDING , PAUSE_PENDING , PAUSED " ) , <nl> + Column ( " start_type " , TEXT , " Driver start type : BOOT_START , SYSTEM_START , AUTO_START , DEMAND_START , DISABLED " ) , <nl> + Column ( " path " , TEXT , " Path to Driver module " ) , <nl> + Column ( " type " , TEXT , " Driver Type : KERNEL , FILE_SYSTEM " ) , <nl> + Column ( " inf " , TEXT , " INF File : Associated inf file " ) , <nl> + ] ) <nl> + implementation ( " system / windows / Drivers @ genDrivers " ) <nl> + examples ( [ <nl> + " select * from drivers " , <nl> + ] ) <nl>
Add virtual table : Windows Drivers ( )
osquery/osquery
4935e84b17069b842bbcacdcad55be32e3d333e8
2016-11-08T18:50:12Z
mmm a / atom / browser / api / atom_api_window . cc <nl> ppp b / atom / browser / api / atom_api_window . cc <nl> void OnCapturePageDone ( <nl> callback . Run ( gfx : : Image : : CreateFrom1xBitmap ( bitmap ) ) ; <nl> } <nl> <nl> - / / Converts min - width to minWidth , returns false if no conversion is needed . <nl> - bool TranslateOldKey ( const std : : string & key , std : : string * new_key ) { <nl> - if ( key . find ( ' - ' ) = = std : : string : : npos ) <nl> - return false ; <nl> - new_key - > reserve ( key . size ( ) ) ; <nl> - bool next_upper_case = false ; <nl> - for ( char c : key ) { <nl> - if ( c = = ' - ' ) { <nl> - next_upper_case = true ; <nl> - } else if ( next_upper_case ) { <nl> - new_key - > push_back ( base : : ToUpperASCII ( c ) ) ; <nl> - next_upper_case = false ; <nl> - } else { <nl> - new_key - > push_back ( c ) ; <nl> - } <nl> - } <nl> - return true ; <nl> - } <nl> - <nl> - / / Converts min - width to minWidth recursively in the dictionary . <nl> - void TranslateOldOptions ( v8 : : Isolate * isolate , v8 : : Local < v8 : : Object > options ) { <nl> - auto context = isolate - > GetCurrentContext ( ) ; <nl> - auto maybe_keys = options - > GetOwnPropertyNames ( context ) ; <nl> - if ( maybe_keys . IsEmpty ( ) ) <nl> - return ; <nl> - std : : vector < std : : string > keys ; <nl> - if ( ! mate : : ConvertFromV8 ( isolate , maybe_keys . ToLocalChecked ( ) , & keys ) ) <nl> - return ; <nl> - mate : : Dictionary dict ( isolate , options ) ; <nl> - for ( const auto & key : keys ) { <nl> - v8 : : Local < v8 : : Value > value ; <nl> - if ( ! dict . Get ( key , & value ) ) / / Shouldn ' t happen , but guard it anyway . <nl> - continue ; <nl> - / / Go recursively . <nl> - v8 : : Local < v8 : : Object > sub_options ; <nl> - if ( mate : : ConvertFromV8 ( isolate , value , & sub_options ) ) <nl> - TranslateOldOptions ( isolate , sub_options ) ; <nl> - / / Translate key . <nl> - std : : string new_key ; <nl> - if ( TranslateOldKey ( key , & new_key ) ) { <nl> - dict . Set ( new_key , value ) ; <nl> - dict . Delete ( key ) ; <nl> - } <nl> - } <nl> - } <nl> - <nl> / / Converts binary data to Buffer . <nl> v8 : : Local < v8 : : Value > ToBuffer ( v8 : : Isolate * isolate , void * val , int size ) { <nl> auto buffer = node : : Buffer : : Copy ( isolate , static_cast < char * > ( val ) , size ) ; <nl> v8 : : Local < v8 : : Value > ToBuffer ( v8 : : Isolate * isolate , void * val , int size ) { <nl> <nl> <nl> Window : : Window ( v8 : : Isolate * isolate , const mate : : Dictionary & options ) { <nl> - / / Be compatible with old style field names like min - width . <nl> - TranslateOldOptions ( isolate , options . GetHandle ( ) ) ; <nl> - <nl> / / Use options . webPreferences to create WebContents . <nl> mate : : Dictionary web_preferences = mate : : Dictionary : : CreateEmpty ( isolate ) ; <nl> options . Get ( options : : kWebPreferences , & web_preferences ) ; <nl>
Remove support for translating hyphenated options
electron/electron
4cb620c195061a20371f2ec7f9d1a21368296937
2016-05-06T17:12:54Z
mmm a / core / method_bind . h <nl> ppp b / core / method_bind . h <nl> struct VariantCaster < const T & > { <nl> / / Object enum casts must go here <nl> VARIANT_ENUM_CAST ( Object : : ConnectFlags ) ; <nl> <nl> + template < typename T > <nl> + struct VariantObjectClassChecker { <nl> + static _FORCE_INLINE_ bool check ( const Variant & p_variant ) { <nl> + return true ; <nl> + } <nl> + } ; <nl> + <nl> + template < > <nl> + struct VariantObjectClassChecker < Node * > { <nl> + static _FORCE_INLINE_ bool check ( const Variant & p_variant ) { <nl> + Object * obj = p_variant ; <nl> + Node * node = p_variant ; <nl> + return node | | ! obj ; <nl> + } <nl> + } ; <nl> + <nl> + template < > <nl> + struct VariantObjectClassChecker < Control * > { <nl> + static _FORCE_INLINE_ bool check ( const Variant & p_variant ) { <nl> + Object * obj = p_variant ; <nl> + Control * control = p_variant ; <nl> + return control | | ! obj ; <nl> + } <nl> + } ; <nl> + <nl> # define CHECK_ARG ( m_arg ) \ <nl> if ( ( m_arg - 1 ) < p_arg_count ) { \ <nl> Variant : : Type argtype = get_argument_type ( m_arg - 1 ) ; \ <nl> - if ( ! Variant : : can_convert_strict ( p_args [ m_arg - 1 ] - > get_type ( ) , argtype ) ) { \ <nl> + if ( ! Variant : : can_convert_strict ( p_args [ m_arg - 1 ] - > get_type ( ) , argtype ) | | \ <nl> + ! VariantObjectClassChecker < P # # m_arg > : : check ( * p_args [ m_arg - 1 ] ) ) { \ <nl> r_error . error = Variant : : CallError : : CALL_ERROR_INVALID_ARGUMENT ; \ <nl> r_error . argument = m_arg - 1 ; \ <nl> r_error . expected = argtype ; \ <nl>
Merge pull request from poke1024 / check - obj - class
godotengine/godot
06f1d1ae23e9c14aa8882ab41330fbfbd2d3424c
2018-05-08T13:43:44Z
mmm a / xbmc / ApplicationMessenger . cpp <nl> ppp b / xbmc / ApplicationMessenger . cpp <nl> case TMSG_POWERDOWN : <nl> { <nl> CMediaSource share ; <nl> share . strStatus = g_mediaManager . GetDiskLabel ( share . strPath ) ; <nl> + share . strDiskUniqueId = g_mediaManager . GetDiskUniqueId ( share . strPath ) ; <nl> share . strPath = pMsg - > strParam ; <nl> if ( g_mediaManager . IsAudio ( share . strPath ) ) <nl> share . strStatus = " Audio - CD " ; <nl> mmm a / xbmc / Autorun . cpp <nl> ppp b / xbmc / Autorun . cpp <nl> CAutorun : : CAutorun ( ) <nl> CAutorun : : ~ CAutorun ( ) <nl> { } <nl> <nl> - void CAutorun : : ExecuteAutorun ( bool bypassSettings , bool ignoreplaying , bool restart ) <nl> + void CAutorun : : ExecuteAutorun ( bool bypassSettings , bool ignoreplaying , bool startFromBeginning ) <nl> { <nl> if ( ( ! ignoreplaying & & ( g_application . IsPlayingAudio ( ) | | g_application . IsPlayingVideo ( ) | | g_windowManager . HasModalDialog ( ) ) ) | | g_windowManager . GetActiveWindow ( ) = = WINDOW_LOGIN_SCREEN ) <nl> return ; <nl> void CAutorun : : ExecuteAutorun ( bool bypassSettings , bool ignoreplaying , bool res <nl> } <nl> else <nl> { <nl> - RunMedia ( bypassSettings , restart ) ; <nl> + RunMedia ( bypassSettings , startFromBeginning ) ; <nl> } <nl> } <nl> <nl> void CAutorun : : RunCdda ( ) <nl> g_playlistPlayer . Play ( ) ; <nl> } <nl> <nl> - void CAutorun : : RunMedia ( bool bypassSettings , bool restart ) <nl> + void CAutorun : : RunMedia ( bool bypassSettings , bool startFromBeginning ) <nl> { <nl> if ( ! bypassSettings & & ! g_guiSettings . GetBool ( " audiocds . autorun " ) & & ! g_guiSettings . GetBool ( " dvds . autorun " ) ) <nl> return ; <nl> void CAutorun : : RunMedia ( bool bypassSettings , bool restart ) <nl> int nAddedToPlaylist = 0 ; <nl> # ifdef _WIN32 <nl> auto_ptr < IDirectory > pDir ( CFactoryDirectory : : Create ( g_mediaManager . TranslateDevicePath ( " " ) ) ) ; <nl> - bool bPlaying = RunDisc ( pDir . get ( ) , g_mediaManager . TranslateDevicePath ( " " ) , nAddedToPlaylist , true , bypassSettings , restart ) ; <nl> + bool bPlaying = RunDisc ( pDir . get ( ) , g_mediaManager . TranslateDevicePath ( " " ) , nAddedToPlaylist , true , bypassSettings , startFromBeginning ) ; <nl> # else <nl> CCdInfo * pInfo = g_mediaManager . GetCdInfo ( ) ; <nl> <nl> void CAutorun : : RunMedia ( bool bypassSettings , bool restart ) <nl> if ( pInfo - > IsISOUDF ( 1 ) | | pInfo - > IsISOHFS ( 1 ) | | pInfo - > IsIso9660 ( 1 ) | | pInfo - > IsIso9660Interactive ( 1 ) ) <nl> { <nl> auto_ptr < IDirectory > pDir ( CFactoryDirectory : : Create ( " iso9660 : / / " ) ) ; <nl> - bPlaying = RunDisc ( pDir . get ( ) , " iso9660 : / / " , nAddedToPlaylist , true , bypassSettings , restart ) ; <nl> + bPlaying = RunDisc ( pDir . get ( ) , " iso9660 : / / " , nAddedToPlaylist , true , bypassSettings , startFromBeginning ) ; <nl> } <nl> else <nl> { <nl> auto_ptr < IDirectory > pDir ( CFactoryDirectory : : Create ( " D : \ \ " ) ) ; <nl> - bPlaying = RunDisc ( pDir . get ( ) , " D : \ \ " , nAddedToPlaylist , true , bypassSettings , restart ) ; <nl> + bPlaying = RunDisc ( pDir . get ( ) , " D : \ \ " , nAddedToPlaylist , true , bypassSettings , startFromBeginning ) ; <nl> } <nl> # endif <nl> if ( ! bPlaying & & nAddedToPlaylist > 0 ) <nl> void CAutorun : : RunMedia ( bool bypassSettings , bool restart ) <nl> / * * <nl> * This method tries to determine what type of disc is located in the given drive and starts to play the content appropriately . <nl> * / <nl> - bool CAutorun : : RunDisc ( IDirectory * pDir , const CStdString & strDrive , int & nAddedToPlaylist , bool bRoot , bool bypassSettings / * = false * / , bool restart / * = false * / ) <nl> + bool CAutorun : : RunDisc ( IDirectory * pDir , const CStdString & strDrive , int & nAddedToPlaylist , bool bRoot , bool bypassSettings / * = false * / , bool startFromBeginning / * = false * / ) <nl> { <nl> bool bPlaying ( false ) ; <nl> CFileItemList vecItems ; <nl> bool CAutorun : : RunDisc ( IDirectory * pDir , const CStdString & strDrive , int & nAdded <nl> if ( pItem - > GetPath ( ) . Find ( " VIDEO_TS " ) ! = - 1 & & bAllowVideo <nl> & & ( bypassSettings | | g_guiSettings . GetBool ( " dvds . autorun " ) ) ) <nl> { <nl> - CUtil : : PlayDVD ( " dvd " , restart ) ; <nl> + CUtil : : PlayDVD ( " dvd " , startFromBeginning ) ; <nl> bPlaying = true ; <nl> return true ; <nl> } <nl> bool CAutorun : : RunDisc ( IDirectory * pDir , const CStdString & strDrive , int & nAdded <nl> if ( pItem - > GetPath ( ) . Find ( " BDMV " ) ! = - 1 & & bAllowVideo <nl> & & ( bypassSettings | | g_guiSettings . GetBool ( " dvds . autorun " ) ) ) <nl> { <nl> - CUtil : : PlayDVD ( " bd " , restart ) ; <nl> + CUtil : : PlayDVD ( " bd " , startFromBeginning ) ; <nl> bPlaying = true ; <nl> return true ; <nl> } <nl> bool CAutorun : : RunDisc ( IDirectory * pDir , const CStdString & strDrive , int & nAdded <nl> { <nl> if ( pItem - > GetPath ( ) ! = " . " & & pItem - > GetPath ( ) ! = " . . " ) <nl> { <nl> - if ( RunDisc ( pDir , pItem - > GetPath ( ) , nAddedToPlaylist , false , bypassSettings , restart ) ) <nl> + if ( RunDisc ( pDir , pItem - > GetPath ( ) , nAddedToPlaylist , false , bypassSettings , startFromBeginning ) ) <nl> { <nl> bPlaying = true ; <nl> break ; <nl> bool CAutorun : : IsEnabled ( ) const <nl> return m_bEnable ; <nl> } <nl> <nl> - bool CAutorun : : PlayDisc ( bool restart ) <nl> + bool CAutorun : : PlayDisc ( bool startFromBeginning ) <nl> { <nl> - ExecuteAutorun ( true , true , restart ) ; <nl> + ExecuteAutorun ( true , true , startFromBeginning ) ; <nl> return true ; <nl> } <nl> <nl> bool CAutorun : : CanResumePlayDVD ( ) <nl> { <nl> - CStdString strPath = " removable : / / " ; / / need to put volume label for resume point in videoInfoTag <nl> - strPath + = g_mediaManager . GetDiskLabel ( ) ; <nl> - CVideoDatabase dbs ; <nl> - dbs . Open ( ) ; <nl> - CBookmark bookmark ; <nl> - if ( dbs . GetResumeBookMark ( strPath , bookmark ) ) <nl> - return true ; <nl> + CStdString strUniqueId = g_mediaManager . GetDiskUniqueId ( ) ; <nl> + if ( ! strUniqueId . IsEmpty ( ) ) <nl> + { <nl> + CVideoDatabase dbs ; <nl> + dbs . Open ( ) ; <nl> + CBookmark bookmark ; <nl> + if ( dbs . GetResumeBookMark ( strUniqueId , bookmark ) ) <nl> + return true ; <nl> + } <nl> return false ; <nl> } <nl> <nl> mmm a / xbmc / Autorun . h <nl> ppp b / xbmc / Autorun . h <nl> class CAutorun <nl> CAutorun ( ) ; <nl> virtual ~ CAutorun ( ) ; <nl> static bool CanResumePlayDVD ( ) ; <nl> - static bool PlayDisc ( bool restart ) ; <nl> + static bool PlayDisc ( bool startFromBeginning ) ; <nl> bool IsEnabled ( ) const ; <nl> void Enable ( ) ; <nl> void Disable ( ) ; <nl> void HandleAutorun ( ) ; <nl> - static void ExecuteAutorun ( bool bypassSettings = false , bool ignoreplaying = false , bool restart = false ) ; <nl> + static void ExecuteAutorun ( bool bypassSettings = false , bool ignoreplaying = false , bool startFromBeginning = false ) ; <nl> protected : <nl> static void RunCdda ( ) ; <nl> - static void RunMedia ( bool bypassSettings , bool restart ) ; <nl> - static bool RunDisc ( XFILE : : IDirectory * pDir , const CStdString & strDrive , int & nAddedToPlaylist , bool bRoot , bool bypassSettings , bool restart ) ; <nl> + static void RunMedia ( bool bypassSettings , bool startFromBeginning ) ; <nl> + static bool RunDisc ( XFILE : : IDirectory * pDir , const CStdString & strDrive , int & nAddedToPlaylist , bool bRoot , bool bypassSettings , bool startFromBeginning ) ; <nl> bool m_bEnable ; <nl> } ; <nl> } <nl> mmm a / xbmc / FileItem . cpp <nl> ppp b / xbmc / FileItem . cpp <nl> CFileItem : : CFileItem ( const CMediaSource & share ) <nl> m_strThumbnailImage = share . m_strThumbnailImage ; <nl> SetLabelPreformated ( true ) ; <nl> if ( IsDVD ( ) ) <nl> - { <nl> - GetVideoInfoTag ( ) - > m_strFileNameAndPath = " removable : / / " ; <nl> - GetVideoInfoTag ( ) - > m_strFileNameAndPath + = share . strStatus ; / / share . strStatus contains disc volume label <nl> - } <nl> + GetVideoInfoTag ( ) - > m_strFileNameAndPath = share . strDiskUniqueId ; / / share . strDiskUniqueId contains disc unique id <nl> } <nl> <nl> CFileItem : : ~ CFileItem ( void ) <nl> mmm a / xbmc / MediaSource . h <nl> ppp b / xbmc / MediaSource . h <nl> class CMediaSource <nl> bool IsWritable ( ) const ; <nl> CStdString strName ; / / / < Name of the share , can be choosen freely . <nl> CStdString strStatus ; / / / < Status of the share ( eg has disk etc . ) <nl> + CStdString strDiskUniqueId ; / / / < removable : / / + DVD Label + DVD ID for resume point storage , if available <nl> CStdString strPath ; / / / < Path of the share , eg . iso9660 : / / or F : <nl> <nl> / * ! <nl> mmm a / xbmc / Util . cpp <nl> ppp b / xbmc / Util . cpp <nl> bool CUtil : : ThumbCached ( const CStdString & strFileName ) <nl> return CThumbnailCache : : GetThumbnailCache ( ) - > IsCached ( strFileName ) ; <nl> } <nl> <nl> - void CUtil : : PlayDVD ( const CStdString & strProtocol , bool restart ) <nl> + void CUtil : : PlayDVD ( const CStdString & strProtocol , bool startFromBeginning ) <nl> { <nl> # if defined ( HAS_DVDPLAYER ) & & defined ( HAS_DVD_DRIVE ) <nl> CIoSupport : : Dismount ( " Cdrom0 " ) ; <nl> void CUtil : : PlayDVD ( const CStdString & strProtocol , bool restart ) <nl> strPath . Format ( " % s : / / 1 " , strProtocol . c_str ( ) ) ; <nl> CFileItem item ( strPath , false ) ; <nl> item . SetLabel ( g_mediaManager . GetDiskLabel ( ) ) ; <nl> - item . GetVideoInfoTag ( ) - > m_strFileNameAndPath = " removable : / / " ; / / need to put volume label for resume point in videoInfoTag <nl> - item . GetVideoInfoTag ( ) - > m_strFileNameAndPath + = g_mediaManager . GetDiskLabel ( ) ; <nl> - if ( ! restart ) item . m_lStartOffset = STARTOFFSET_RESUME ; <nl> - g_application . PlayFile ( item , restart ) ; <nl> + item . GetVideoInfoTag ( ) - > m_strFileNameAndPath = g_mediaManager . GetDiskUniqueId ( ) ; <nl> + <nl> + if ( ! startFromBeginning & & ! item . GetVideoInfoTag ( ) - > m_strFileNameAndPath . IsEmpty ( ) ) <nl> + item . m_lStartOffset = STARTOFFSET_RESUME ; <nl> + <nl> + g_application . PlayFile ( item , false ) ; <nl> # endif <nl> } <nl> <nl> mmm a / xbmc / Util . h <nl> ppp b / xbmc / Util . h <nl> class CUtil <nl> static bool ThumbCached ( const CStdString & strFileName ) ; <nl> static void ThumbCacheAdd ( const CStdString & strFileName , bool bFileExists ) ; <nl> static void ThumbCacheClear ( ) ; <nl> - static void PlayDVD ( const CStdString & strProtocol = " dvd " , bool restart = false ) ; <nl> + static void PlayDVD ( const CStdString & strProtocol = " dvd " , bool startFromBeginning = false ) ; <nl> static CStdString GetNextFilename ( const CStdString & fn_template , int max ) ; <nl> static CStdString GetNextPathname ( const CStdString & path_template , int max ) ; <nl> static void TakeScreenshot ( ) ; <nl> mmm a / xbmc / filesystem / VirtualDirectory . cpp <nl> ppp b / xbmc / filesystem / VirtualDirectory . cpp <nl> void CVirtualDirectory : : GetSources ( VECSOURCES & shares ) const <nl> { <nl> share . strStatus = " Audio - CD " ; <nl> share . strPath = " cdda : / / local / " ; <nl> + share . strDiskUniqueId = " " ; <nl> } <nl> else <nl> { <nl> share . strStatus = g_mediaManager . GetDiskLabel ( share . strPath ) ; <nl> + share . strDiskUniqueId = g_mediaManager . GetDiskUniqueId ( share . strPath ) ; <nl> if ( ! share . strPath . length ( ) ) / / unmounted CD <nl> { <nl> if ( g_mediaManager . GetDiscPath ( ) = = " iso9660 : / / " ) <nl> mmm a / xbmc / storage / MediaManager . cpp <nl> ppp b / xbmc / storage / MediaManager . cpp <nl> <nl> # include " IoSupport . h " <nl> # include " URL . h " <nl> # include " Util . h " <nl> + # include " utils / URIUtils . h " <nl> # ifdef _WIN32 <nl> # include " WIN32Util . h " <nl> - # include " utils / URIUtils . h " <nl> # endif <nl> # include " guilib / GUIWindowManager . h " <nl> # ifdef HAS_DVD_DRIVE <nl> <nl> # include " AutorunMediaJob . h " <nl> # include " settings / GUISettings . h " <nl> <nl> + # include " FileItem . h " <nl> + # include " filesystem / File . h " <nl> + # include " filesystem / FactoryDirectory . h " <nl> + # include " filesystem / Directory . h " <nl> + # include " utils / Crc32 . h " <nl> + <nl> # ifdef __APPLE__ <nl> # include " osx / DarwinStorageProvider . h " <nl> # elif defined ( _LINUX ) <nl> <nl> # endif <nl> <nl> using namespace std ; <nl> + using namespace XFILE ; <nl> <nl> const char MEDIA_SOURCES_XML [ ] = { " special : / / profile / mediasources . xml " } ; <nl> <nl> CStdString CMediaManager : : GetDiskLabel ( const CStdString & devicePath ) <nl> # endif <nl> } <nl> <nl> + CStdString CMediaManager : : GetDiskUniqueId ( const CStdString & devicePath ) <nl> + { <nl> + CStdString strDevice = devicePath ; <nl> + <nl> + if ( strDevice . IsEmpty ( ) ) / / if no value passed , use the current default disc path . <nl> + strDevice = GetDiscPath ( ) ; / / in case of non - Windows we must obtain the disc path <nl> + <nl> + # ifdef _WIN32 <nl> + if ( ! m_bhasoptical ) <nl> + return " " ; <nl> + strDevice = TranslateDevicePath ( strDevice ) ; <nl> + URIUtils : : AddSlashAtEnd ( strDevice ) ; <nl> + # endif <nl> + <nl> + CStdString strDrive = g_mediaManager . TranslateDevicePath ( strDevice ) ; <nl> + <nl> + # ifndef _WIN32 <nl> + { <nl> + CSingleLock waitLock ( m_muAutoSource ) ; <nl> + CCdInfo * pInfo = g_mediaManager . GetCdInfo ( ) ; <nl> + if ( pInfo ) <nl> + { <nl> + if ( pInfo - > IsISOUDF ( 1 ) | | pInfo - > IsISOHFS ( 1 ) | | pInfo - > IsIso9660 ( 1 ) | | pInfo - > IsIso9660Interactive ( 1 ) ) <nl> + strDrive = " iso9660 : / / " ; <nl> + else <nl> + strDrive = " D : \ \ " ; <nl> + } <nl> + else <nl> + { <nl> + CLog : : Log ( LOGERROR , " GetDiskUniqueId : Failed getting CD info " ) ; <nl> + return " " ; <nl> + } <nl> + } <nl> + # endif <nl> + <nl> + CStdString pathVideoTS = URIUtils : : AddFileToFolder ( strDrive , " VIDEO_TS " ) ; <nl> + if ( ! CDirectory : : Exists ( pathVideoTS ) ) <nl> + return " " ; / / return empty <nl> + <nl> + CLog : : Log ( LOGDEBUG , " GetDiskUniqueId : Trying to retrieve ID for path % s " , pathVideoTS . c_str ( ) ) ; <nl> + uint32_t dvdcrc = 0 ; <nl> + CStdString strID ; <nl> + <nl> + if ( HashDVD ( pathVideoTS , dvdcrc ) ) <nl> + { <nl> + strID . Format ( " removable : / / % s_ % 08x " , GetDiskLabel ( devicePath ) , dvdcrc ) ; <nl> + CLog : : Log ( LOGDEBUG , " GetDiskUniqueId : Got ID % s for DVD disk " , strID . c_str ( ) ) ; <nl> + } <nl> + <nl> + return strID ; <nl> + } <nl> + <nl> + bool CMediaManager : : HashDVD ( const CStdString & dvdpath , uint32_t & crc ) <nl> + { <nl> + CFileItemList vecItemsTS ; <nl> + bool success = false ; <nl> + <nl> + / / first try to open the VIDEO_TS folder of the DVD <nl> + if ( ! CDirectory : : GetDirectory ( dvdpath , vecItemsTS , " . ifo " ) ) <nl> + { <nl> + CLog : : Log ( LOGERROR , " % s - Cannot open dvd VIDEO_TS folder - - ABORTING " , __FUNCTION__ ) ; <nl> + return false ; <nl> + } <nl> + <nl> + Crc32 crc32 ; <nl> + bool dataRead = false ; <nl> + <nl> + vecItemsTS . Sort ( SORT_METHOD_FILE , SORT_ORDER_ASC ) ; <nl> + for ( int i = 0 ; i < vecItemsTS . Size ( ) ; i + + ) <nl> + { <nl> + CFileItemPtr videoTSItem = vecItemsTS [ i ] ; <nl> + success = true ; <nl> + <nl> + / / get the file name for logging purposes <nl> + CStdString fileName = URIUtils : : GetFileName ( videoTSItem - > GetPath ( ) ) ; <nl> + CLog : : Log ( LOGDEBUG , " % s - Adding file content for dvd file : % s " , __FUNCTION__ , fileName . c_str ( ) ) ; <nl> + CFile file ; <nl> + if ( ! file . Open ( videoTSItem - > GetPath ( ) ) ) <nl> + { <nl> + CLog : : Log ( LOGERROR , " % s - Cannot open dvd file : % s - - ABORTING " , __FUNCTION__ , fileName . c_str ( ) ) ; <nl> + return false ; <nl> + } <nl> + int res ; <nl> + char buf [ 2048 ] ; <nl> + while ( ( res = file . Read ( buf , sizeof ( buf ) ) ) > 0 ) <nl> + { <nl> + dataRead = true ; <nl> + crc32 . Compute ( buf , res ) ; <nl> + } <nl> + file . Close ( ) ; <nl> + } <nl> + <nl> + if ( ! dataRead ) <nl> + { <nl> + CLog : : Log ( LOGERROR , " % s - Did not read any data from the IFO files - - ABORTING " , __FUNCTION__ ) ; <nl> + return false ; <nl> + } <nl> + <nl> + / / put result back in reference parameter <nl> + crc = ( uint32_t ) crc32 ; <nl> + <nl> + return success ; <nl> + } <nl> + <nl> + <nl> CStdString CMediaManager : : GetDiscPath ( ) <nl> { <nl> # ifdef _WIN32 <nl> mmm a / xbmc / storage / MediaManager . h <nl> ppp b / xbmc / storage / MediaManager . h <nl> class CMediaManager : public IStorageEventsCallback , public IJobCallback <nl> CCdInfo * GetCdInfo ( const CStdString & devicePath = " " ) ; <nl> bool RemoveCdInfo ( const CStdString & devicePath = " " ) ; <nl> CStdString GetDiskLabel ( const CStdString & devicePath = " " ) ; <nl> + CStdString GetDiskUniqueId ( const CStdString & devicePath = " " ) ; <nl> # endif <nl> CStdString GetDiscPath ( ) ; <nl> void SetHasOpticalDrive ( bool bstatus ) ; <nl> class CMediaManager : public IStorageEventsCallback , public IJobCallback <nl> CCriticalSection m_muAutoSource , m_CritSecStorageProvider ; <nl> # ifdef HAS_DVD_DRIVE <nl> std : : map < CStdString , CCdInfo * > m_mapCdInfo ; <nl> + bool HashDVD ( const CStdString & dvdpath , uint32_t & crc ) ; <nl> # endif <nl> bool m_bhasoptical ; <nl> <nl> mmm a / xbmc / utils / SaveFileStateJob . h <nl> ppp b / xbmc / utils / SaveFileStateJob . h <nl> bool CSaveFileStateJob : : DoWork ( ) <nl> CStdString progressTrackingFile = m_item . GetPath ( ) ; <nl> <nl> if ( m_item . IsDVD ( ) ) <nl> - progressTrackingFile = m_item . GetVideoInfoTag ( ) - > m_strFileNameAndPath ; / / this variable contains removable : / / suffixed by disc label <nl> + progressTrackingFile = m_item . GetVideoInfoTag ( ) - > m_strFileNameAndPath ; / / this variable contains removable : / / suffixed by disc label + uniqueid or is empty if label not uniquely identified <nl> <nl> if ( progressTrackingFile ! = " " ) <nl> { <nl>
Merge pull request from Voyager - xbmc / uniquelabel - dvdid
xbmc/xbmc
b73ef27269d78ac125fa6b6c51db83144b61750d
2011-10-15T12:37:15Z
mmm a / src / mongo / SConscript <nl> ppp b / src / mongo / SConscript <nl> serverOnlyFiles = [ " db / curop . cpp " , <nl> " db / cursor . cpp " , <nl> " db / queryoptimizer . cpp " , <nl> " db / queryoptimizercursorimpl . cpp " , <nl> + " db / query_plan_selection_policy . cpp " , <nl> " db / extsort . cpp " , <nl> " db / index . cpp " , <nl> " db / index_update . cpp " , <nl> mmm a / src / mongo / db / namespace_details . h <nl> ppp b / src / mongo / db / namespace_details . h <nl> <nl> # include " mongo / db / mongommf . h " <nl> # include " mongo / db / namespace . h " <nl> # include " mongo / db / namespacestring . h " <nl> - # include " mongo / db / queryoptimizercursor . h " <nl> + # include " mongo / db / query_plan_selection_policy . h " <nl> # include " mongo / db / querypattern . h " <nl> # include " mongo / platform / unordered_map . h " <nl> # include " mongo / util / hashtab . h " <nl> mmm a / src / mongo / db / ops / update . h <nl> ppp b / src / mongo / db / ops / update . h <nl> <nl> <nl> # include " mongo / db / jsobj . h " <nl> # include " mongo / db / curop . h " <nl> - # include " mongo / db / queryoptimizercursor . h " <nl> + # include " mongo / db / query_plan_selection_policy . h " <nl> <nl> namespace mongo { <nl> <nl> new file mode 100644 <nl> index 000000000000 . . 27cf433e4c9a <nl> mmm / dev / null <nl> ppp b / src / mongo / db / query_plan_selection_policy . cpp <nl> <nl> + / * * <nl> + * Copyright ( C ) 2011 10gen Inc . <nl> + * <nl> + * This program is free software : you can redistribute it and / or modify <nl> + * it under the terms of the GNU Affero General Public License , version 3 , <nl> + * as published by the Free Software Foundation . <nl> + * <nl> + * This program is distributed in the hope that it will be useful , <nl> + * but WITHOUT ANY WARRANTY ; without even the implied warranty of <nl> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the <nl> + * GNU Affero General Public License for more details . <nl> + * <nl> + * You should have received a copy of the GNU Affero General Public License <nl> + * along with this program . If not , see < http : / / www . gnu . org / licenses / > . <nl> + * / <nl> + <nl> + # include " mongo / db / query_plan_selection_policy . h " <nl> + <nl> + # include " mongo / db / queryoptimizer . h " <nl> + <nl> + namespace mongo { <nl> + <nl> + QueryPlanSelectionPolicy : : Any QueryPlanSelectionPolicy : : __any ; <nl> + const QueryPlanSelectionPolicy & QueryPlanSelectionPolicy : : any ( ) { return __any ; } <nl> + <nl> + bool QueryPlanSelectionPolicy : : IndexOnly : : permitPlan ( const QueryPlan & plan ) const { <nl> + return ! plan . willScanTable ( ) ; <nl> + } <nl> + QueryPlanSelectionPolicy : : IndexOnly QueryPlanSelectionPolicy : : __indexOnly ; <nl> + const QueryPlanSelectionPolicy & QueryPlanSelectionPolicy : : indexOnly ( ) { return __indexOnly ; } <nl> + <nl> + bool QueryPlanSelectionPolicy : : IdElseNatural : : permitPlan ( const QueryPlan & plan ) const { <nl> + return ! plan . indexed ( ) | | plan . index ( ) - > isIdIndex ( ) ; <nl> + } <nl> + BSONObj QueryPlanSelectionPolicy : : IdElseNatural : : planHint ( const StringData & ns ) const { <nl> + NamespaceDetails * nsd = nsdetails ( ns ) ; <nl> + if ( ! nsd | | ! nsd - > haveIdIndex ( ) ) { <nl> + return BSON ( " $ hint " < < BSON ( " $ natural " < < 1 ) ) ; <nl> + } <nl> + return BSON ( " $ hint " < < nsd - > idx ( nsd - > findIdIndex ( ) ) . indexName ( ) ) ; <nl> + } <nl> + QueryPlanSelectionPolicy : : IdElseNatural QueryPlanSelectionPolicy : : __idElseNatural ; <nl> + const QueryPlanSelectionPolicy & QueryPlanSelectionPolicy : : idElseNatural ( ) { <nl> + return __idElseNatural ; <nl> + } <nl> + <nl> + } / / namespace mongo <nl> new file mode 100644 <nl> index 000000000000 . . 58e4084fbf85 <nl> mmm / dev / null <nl> ppp b / src / mongo / db / query_plan_selection_policy . h <nl> <nl> + / * * <nl> + * Copyright ( C ) 2011 10gen Inc . <nl> + * <nl> + * This program is free software : you can redistribute it and / or modify <nl> + * it under the terms of the GNU Affero General Public License , version 3 , <nl> + * as published by the Free Software Foundation . <nl> + * <nl> + * This program is distributed in the hope that it will be useful , <nl> + * but WITHOUT ANY WARRANTY ; without even the implied warranty of <nl> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the <nl> + * GNU Affero General Public License for more details . <nl> + * <nl> + * You should have received a copy of the GNU Affero General Public License <nl> + * along with this program . If not , see < http : / / www . gnu . org / licenses / > . <nl> + * / <nl> + <nl> + # pragma once <nl> + <nl> + # include " mongo / db / jsobj . h " <nl> + <nl> + namespace mongo { <nl> + <nl> + class QueryPlan ; <nl> + <nl> + / * * <nl> + * An interface for policies overriding the query optimizer ' s default behavior for selecting <nl> + * query plans and creating cursors . <nl> + * / <nl> + class QueryPlanSelectionPolicy { <nl> + public : <nl> + virtual ~ QueryPlanSelectionPolicy ( ) { } <nl> + virtual string name ( ) const = 0 ; <nl> + virtual bool permitOptimalNaturalPlan ( ) const { return true ; } <nl> + virtual bool permitOptimalIdPlan ( ) const { return true ; } <nl> + virtual bool permitPlan ( const QueryPlan & plan ) const { return true ; } <nl> + virtual BSONObj planHint ( const StringData & ns ) const { return BSONObj ( ) ; } <nl> + <nl> + / * * <nl> + * @ return true to request that a created Cursor provide a matcher ( ) . If false , the <nl> + * Cursor ' s matcher ( ) may be NULL if the Cursor can perform accurate query matching <nl> + * internally using a non Matcher mechanism . One case where a Matcher might be requested <nl> + * even though not strictly necessary to select matching documents is if metadata about <nl> + * matches may be requested using MatchDetails . NOTE This is a hint that the Cursor use a <nl> + * Matcher , but the hint may be ignored . In some cases the Cursor may not provide <nl> + * a Matcher even if ' requestMatcher ' is true . <nl> + * / <nl> + virtual bool requestMatcher ( ) const { return true ; } <nl> + <nl> + / * * <nl> + * @ return true to request creating an IntervalBtreeCursor rather than a BtreeCursor when <nl> + * possible . An IntervalBtreeCursor is optimized for counting the number of documents <nl> + * between two endpoints in a btree . NOTE This is a hint to create an interval cursor , but <nl> + * the hint may be ignored . In some cases a different cursor type may be created even if <nl> + * ' requestIntervalCursor ' is true . <nl> + * / <nl> + virtual bool requestIntervalCursor ( ) const { return false ; } <nl> + <nl> + / * * Allow any query plan selection , permitting the query optimizer ' s default behavior . * / <nl> + static const QueryPlanSelectionPolicy & any ( ) ; <nl> + <nl> + / * * Prevent unindexed collection scans . * / <nl> + static const QueryPlanSelectionPolicy & indexOnly ( ) ; <nl> + <nl> + / * * <nl> + * Generally hints to use the _id plan , falling back to the $ natural plan . However , the <nl> + * $ natural plan will always be used if optimal for the query . <nl> + * / <nl> + static const QueryPlanSelectionPolicy & idElseNatural ( ) ; <nl> + <nl> + private : <nl> + class Any ; <nl> + static Any __any ; <nl> + class IndexOnly ; <nl> + static IndexOnly __indexOnly ; <nl> + class IdElseNatural ; <nl> + static IdElseNatural __idElseNatural ; <nl> + } ; <nl> + <nl> + class QueryPlanSelectionPolicy : : Any : public QueryPlanSelectionPolicy { <nl> + public : <nl> + virtual string name ( ) const { return " any " ; } <nl> + } ; <nl> + <nl> + class QueryPlanSelectionPolicy : : IndexOnly : public QueryPlanSelectionPolicy { <nl> + public : <nl> + virtual string name ( ) const { return " indexOnly " ; } <nl> + virtual bool permitOptimalNaturalPlan ( ) const { return false ; } <nl> + virtual bool permitPlan ( const QueryPlan & plan ) const ; <nl> + } ; <nl> + <nl> + class QueryPlanSelectionPolicy : : IdElseNatural : public QueryPlanSelectionPolicy { <nl> + public : <nl> + virtual string name ( ) const { return " idElseNatural " ; } <nl> + virtual bool permitPlan ( const QueryPlan & plan ) const ; <nl> + virtual BSONObj planHint ( const StringData & ns ) const ; <nl> + } ; <nl> + <nl> + } / / namespace mongo <nl> mmm a / src / mongo / db / queryoptimizer . cpp <nl> ppp b / src / mongo / db / queryoptimizer . cpp <nl> <nl> # include " mongo / db / db . h " <nl> # include " mongo / db / intervalbtreecursor . h " <nl> # include " mongo / db / pagefault . h " <nl> + # include " mongo / db / query_plan_selection_policy . h " <nl> # include " mongo / server . h " <nl> <nl> / / # define DEBUGQO ( x ) cout < < x < < endl ; <nl> mmm a / src / mongo / db / queryoptimizer . h <nl> ppp b / src / mongo / db / queryoptimizer . h <nl> <nl> # include " mongo / db / cursor . h " <nl> # include " mongo / db / explain . h " <nl> # include " mongo / db / matcher . h " <nl> - # include " mongo / db / queryoptimizercursor . h " <nl> # include " mongo / db / querypattern . h " <nl> # include " mongo / db / queryutil . h " <nl> # include " mongo / util / elapsed_tracker . h " <nl> namespace mongo { <nl> <nl> class IndexDetails ; <nl> class IndexType ; <nl> + class QueryPlanSelectionPolicy ; <nl> class QueryPlanSummary ; <nl> <nl> / * * <nl> mmm a / src / mongo / db / queryoptimizercursor . h <nl> ppp b / src / mongo / db / queryoptimizercursor . h <nl> <nl> - / / @ file queryoptimizercursor . h - Interface for a cursor interleaving multiple candidate cursors . <nl> - <nl> / * * <nl> * Copyright ( C ) 2011 10gen Inc . <nl> * <nl> <nl> # pragma once <nl> <nl> # include " cursor . h " <nl> - # include " diskloc . h " <nl> <nl> namespace mongo { <nl> <nl> - class QueryPlan ; <nl> class CandidatePlanCharacter ; <nl> - <nl> - / * * <nl> - * An interface for policies overriding the query optimizer ' s default behavior for selecting <nl> - * query plans and creating cursors . <nl> - * / <nl> - class QueryPlanSelectionPolicy { <nl> - public : <nl> - virtual ~ QueryPlanSelectionPolicy ( ) { } <nl> - virtual string name ( ) const = 0 ; <nl> - virtual bool permitOptimalNaturalPlan ( ) const { return true ; } <nl> - virtual bool permitOptimalIdPlan ( ) const { return true ; } <nl> - virtual bool permitPlan ( const QueryPlan & plan ) const { return true ; } <nl> - virtual BSONObj planHint ( const StringData & ns ) const { return BSONObj ( ) ; } <nl> - <nl> - / * * <nl> - * @ return true to request that a created Cursor provide a matcher ( ) . If false , the <nl> - * Cursor ' s matcher ( ) may be NULL if the Cursor can perform accurate query matching <nl> - * internally using a non Matcher mechanism . One case where a Matcher might be requested <nl> - * even though not strictly necessary to select matching documents is if metadata about <nl> - * matches may be requested using MatchDetails . NOTE This is a hint that the Cursor use a <nl> - * Matcher , but the hint may be ignored . In some cases the Cursor may not provide <nl> - * a Matcher even if ' requestMatcher ' is true . <nl> - * / <nl> - virtual bool requestMatcher ( ) const { return true ; } <nl> - <nl> - / * * <nl> - * @ return true to request creating an IntervalBtreeCursor rather than a BtreeCursor when <nl> - * possible . An IntervalBtreeCursor is optimized for counting the number of documents <nl> - * between two endpoints in a btree . NOTE This is a hint to create an interval cursor , but <nl> - * the hint may be ignored . In some cases a different cursor type may be created even if <nl> - * ' requestIntervalCursor ' is true . <nl> - * / <nl> - virtual bool requestIntervalCursor ( ) const { return false ; } <nl> - <nl> - / * * Allow any query plan selection , permitting the query optimizer ' s default behavior . * / <nl> - static const QueryPlanSelectionPolicy & any ( ) ; <nl> - <nl> - / * * Prevent unindexed collection scans . * / <nl> - static const QueryPlanSelectionPolicy & indexOnly ( ) ; <nl> - <nl> - / * * <nl> - * Generally hints to use the _id plan , falling back to the $ natural plan . However , the <nl> - * $ natural plan will always be used if optimal for the query . <nl> - * / <nl> - static const QueryPlanSelectionPolicy & idElseNatural ( ) ; <nl> - <nl> - private : <nl> - class Any ; <nl> - static Any __any ; <nl> - class IndexOnly ; <nl> - static IndexOnly __indexOnly ; <nl> - class IdElseNatural ; <nl> - static IdElseNatural __idElseNatural ; <nl> - } ; <nl> - <nl> - class QueryPlanSelectionPolicy : : Any : public QueryPlanSelectionPolicy { <nl> - public : <nl> - virtual string name ( ) const { return " any " ; } <nl> - } ; <nl> - <nl> - class QueryPlanSelectionPolicy : : IndexOnly : public QueryPlanSelectionPolicy { <nl> - public : <nl> - virtual string name ( ) const { return " indexOnly " ; } <nl> - virtual bool permitOptimalNaturalPlan ( ) const { return false ; } <nl> - virtual bool permitPlan ( const QueryPlan & plan ) const ; <nl> - } ; <nl> - <nl> - class QueryPlanSelectionPolicy : : IdElseNatural : public QueryPlanSelectionPolicy { <nl> - public : <nl> - virtual string name ( ) const { return " idElseNatural " ; } <nl> - virtual bool permitPlan ( const QueryPlan & plan ) const ; <nl> - virtual BSONObj planHint ( const StringData & ns ) const ; <nl> - } ; <nl> - <nl> - class FieldRangeSet ; <nl> class ExplainQueryInfo ; <nl> + class FieldRangeSet ; <nl> <nl> / * * <nl> * Adds functionality to Cursor for running multiple plans , running out of order plans , <nl> mmm a / src / mongo / db / queryoptimizercursorimpl . cpp <nl> ppp b / src / mongo / db / queryoptimizercursorimpl . cpp <nl> <nl> - / / @ file queryoptimizercursorimpl . cpp - A cursor interleaving multiple candidate cursors . <nl> - <nl> / * * <nl> * Copyright ( C ) 2011 10gen Inc . <nl> * <nl> <nl> * along with this program . If not , see < http : / / www . gnu . org / licenses / > . <nl> * / <nl> <nl> - <nl> # include " pch . h " <nl> <nl> # include " mongo / db / queryoptimizercursorimpl . h " <nl> <nl> namespace mongo { <nl> <nl> extern bool useHints ; <nl> - <nl> - QueryPlanSelectionPolicy : : Any QueryPlanSelectionPolicy : : __any ; <nl> - const QueryPlanSelectionPolicy & QueryPlanSelectionPolicy : : any ( ) { return __any ; } <nl> - <nl> - bool QueryPlanSelectionPolicy : : IndexOnly : : permitPlan ( const QueryPlan & plan ) const { <nl> - return ! plan . willScanTable ( ) ; <nl> - } <nl> - QueryPlanSelectionPolicy : : IndexOnly QueryPlanSelectionPolicy : : __indexOnly ; <nl> - const QueryPlanSelectionPolicy & QueryPlanSelectionPolicy : : indexOnly ( ) { return __indexOnly ; } <nl> - <nl> - bool QueryPlanSelectionPolicy : : IdElseNatural : : permitPlan ( const QueryPlan & plan ) const { <nl> - return ! plan . indexed ( ) | | plan . index ( ) - > isIdIndex ( ) ; <nl> - } <nl> - BSONObj QueryPlanSelectionPolicy : : IdElseNatural : : planHint ( const StringData & ns ) const { <nl> - NamespaceDetails * nsd = nsdetails ( ns ) ; <nl> - if ( ! nsd | | ! nsd - > haveIdIndex ( ) ) { <nl> - return BSON ( " $ hint " < < BSON ( " $ natural " < < 1 ) ) ; <nl> - } <nl> - return BSON ( " $ hint " < < nsd - > idx ( nsd - > findIdIndex ( ) ) . indexName ( ) ) ; <nl> - } <nl> - QueryPlanSelectionPolicy : : IdElseNatural QueryPlanSelectionPolicy : : __idElseNatural ; <nl> - const QueryPlanSelectionPolicy & QueryPlanSelectionPolicy : : idElseNatural ( ) { <nl> - return __idElseNatural ; <nl> - } <nl> <nl> QueryOptimizerCursorImpl * QueryOptimizerCursorImpl : : make <nl> ( auto_ptr < MultiPlanScanner > & mps , <nl> namespace mongo { <nl> } <nl> } <nl> <nl> + BSONObj CursorGenerator : : hint ( ) const { <nl> + return _argumentsHint . isEmpty ( ) ? _planPolicy . planHint ( _ns ) : _argumentsHint ; <nl> + } <nl> + <nl> void CursorGenerator : : setArgumentsHint ( ) { <nl> if ( useHints & & _parsedQuery ) { <nl> _argumentsHint = _parsedQuery - > getHint ( ) ; <nl> mmm a / src / mongo / db / queryoptimizercursorimpl . h <nl> ppp b / src / mongo / db / queryoptimizercursorimpl . h <nl> namespace mongo { <nl> class MultiCursor ; <nl> class MultiPlanScanner ; <nl> class QueryPlanRunner ; <nl> + class QueryPlanSelectionPolicy ; <nl> class QueryPlanSummary ; <nl> <nl> / * * Dup tracking class , optimizing one common case with small set and few initial reads . * / <nl> namespace mongo { <nl> bool mayShortcutQueryOptimizer ( ) const { <nl> return min ( ) . isEmpty ( ) & & max ( ) . isEmpty ( ) & & ! hasFields ( ) & & _argumentsHint . isEmpty ( ) ; <nl> } <nl> - BSONObj hint ( ) const { <nl> - return _argumentsHint . isEmpty ( ) ? _planPolicy . planHint ( _ns ) : _argumentsHint ; <nl> - } <nl> + BSONObj hint ( ) const ; <nl> <nl> void setArgumentsHint ( ) ; <nl> shared_ptr < Cursor > shortcutCursor ( ) const ; <nl> mmm a / src / mongo / dbtests / matchertests . cpp <nl> ppp b / src / mongo / dbtests / matchertests . cpp <nl> <nl> * / <nl> <nl> # include " pch . h " <nl> - # include " . . / util / timer . h " <nl> - # include " . . / db / matcher . h " <nl> - # include " . . / db / json . h " <nl> - # include " dbtests . h " <nl> - # include " . . / db / namespace_details . h " <nl> + <nl> + # include " mongo / db / matcher . h " <nl> + <nl> + # include " mongo / db / cursor . h " <nl> + # include " mongo / db / json . h " <nl> + # include " mongo / db / namespace_details . h " <nl> + # include " mongo / dbtests / dbtests . h " <nl> + # include " mongo / util / timer . h " <nl> <nl> namespace MatcherTests { <nl> <nl>
SERVER - 8790 Move QueryPlanSelectionPolicy to a new file .
mongodb/mongo
160886e6bb6eb1916e88c6b17cb4fc039634fa9f
2013-03-16T01:41:06Z
new file mode 100644 <nl> index 00000000000 . . caa4f53a67d <nl> mmm / dev / null <nl> ppp b / hphp / runtime / vm / jit / guard - constraints . h <nl> <nl> + / * <nl> + + mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - + <nl> + | HipHop for PHP | <nl> + + mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - + <nl> + | Copyright ( c ) 2010 - 2014 Facebook , Inc . ( http : / / www . facebook . com ) | <nl> + + mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - + <nl> + | This source file is subject to version 3 . 01 of the PHP license , | <nl> + | that is bundled with this package in the file LICENSE , and is | <nl> + | available through the world - wide - web at the following url : | <nl> + | http : / / www . php . net / license / 3_01 . txt | <nl> + | If you did not receive a copy of the PHP license and are unable to | <nl> + | obtain it through the world - wide - web , please send a note to | <nl> + | license @ php . net so we can mail you a copy immediately . | <nl> + + mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - + <nl> + * / <nl> + <nl> + # ifndef incl_HPHP_VM_GUARD_CONSTRAINTS_H_ <nl> + # define incl_HPHP_VM_GUARD_CONSTRAINTS_H_ <nl> + <nl> + # include " hphp / runtime / vm / jit / containers . h " <nl> + # include " hphp / runtime / vm / jit / type - source . h " <nl> + # include " hphp / runtime / vm / jit / type . h " <nl> + <nl> + namespace HPHP { namespace jit { <nl> + <nl> + struct IRInstruction ; <nl> + <nl> + / * <nl> + * GuardConstraints holds state that is collected during initial IR generation <nl> + * and needed by the guard relaxation pass . <nl> + * / <nl> + struct GuardConstraints { <nl> + / * <nl> + * Maps guard instructions ( GuardLoc , CheckLoc , GuardStk , etc . . . ) to <nl> + * TypeConstraints . The TypeConstraints for a guard start out fully generic <nl> + * and are tightened appropriately when a value ' s type is used . <nl> + * / <nl> + jit : : hash_map < const IRInstruction * , TypeConstraint > guards ; <nl> + <nl> + / * <nl> + * Maps certain instructions dealing with locals to the source of the <nl> + * local ' s type coming into the instruction : usually either a guard or the <nl> + * last known value of the local . <nl> + * / <nl> + jit : : hash_map < const IRInstruction * , TypeSourceSet > typeSrcs ; <nl> + <nl> + / * <nl> + * Maps AssertLoc / CheckLoc instructions to the type of the local coming into <nl> + * the instruction . It is needed to compute the type of the local after the <nl> + * guard . <nl> + * / <nl> + jit : : hash_map < const IRInstruction * , Type > prevTypes ; <nl> + } ; <nl> + <nl> + } } <nl> + <nl> + # endif <nl> mmm a / hphp / runtime / vm / jit / guard - relaxation . h <nl> ppp b / hphp / runtime / vm / jit / guard - relaxation . h <nl> <nl> <nl> namespace HPHP { namespace jit { <nl> <nl> - struct SSATmp ; <nl> + struct GuardConstraints ; <nl> struct IRUnit ; <nl> + struct SSATmp ; <nl> <nl> enum RelaxGuardsFlags { <nl> RelaxNormal = 0 , <nl> mmm a / hphp / runtime / vm / jit / ir - builder . h <nl> ppp b / hphp / runtime / vm / jit / ir - builder . h <nl> <nl> # include " hphp / runtime / vm / jit / cfg . h " <nl> # include " hphp / runtime / vm / jit / cse . h " <nl> # include " hphp / runtime / vm / jit / frame - state . h " <nl> + # include " hphp / runtime / vm / jit / guard - constraints . h " <nl> # include " hphp / runtime / vm / jit / ir - unit . h " <nl> # include " hphp / runtime / vm / jit / ir . h " <nl> # include " hphp / runtime / vm / jit / region - selection . h " <nl> mmm a / hphp / runtime / vm / jit / ir . h <nl> ppp b / hphp / runtime / vm / jit / ir . h <nl> <nl> # include " hphp / runtime / vm / jit / abi - x64 . h " <nl> # include " hphp / runtime / vm / jit / types . h " <nl> # include " hphp / runtime / vm / jit / translator - runtime . h " <nl> - # include " hphp / runtime / vm / jit / type - source . h " <nl> # include " hphp / runtime / vm / jit / type . h " <nl> # include " hphp / runtime / base / types . h " <nl> # include " hphp / runtime / vm / func . h " <nl> struct MInstrEffects { <nl> <nl> typedef folly : : Range < TCA > TcaRange ; <nl> <nl> - / * <nl> - * GuardConstraints holds state that is collected during initial IR generation <nl> - * and needed by the guard relaxation pass . <nl> - * / <nl> - struct GuardConstraints { <nl> - / * <nl> - * Maps guard instructions ( GuardLoc , CheckLoc , GuardStk , etc . . . ) to <nl> - * TypeConstraints . The TypeConstraints for a guard start out fully generic <nl> - * and are tightened appropriately when a value ' s type is used . <nl> - * / <nl> - jit : : hash_map < const IRInstruction * , TypeConstraint > guards ; <nl> - <nl> - / * <nl> - * Maps certain instructions dealing with locals to the source of the <nl> - * local ' s type coming into the instruction : usually either a guard or the <nl> - * last known value of the local . <nl> - * / <nl> - jit : : hash_map < const IRInstruction * , TypeSourceSet > typeSrcs ; <nl> - <nl> - / * <nl> - * Maps AssertLoc / CheckLoc instructions to the type of the local coming into <nl> - * the instruction . It is needed to compute the type of the local after the <nl> - * guard . <nl> - * / <nl> - jit : : hash_map < const IRInstruction * , Type > prevTypes ; <nl> - } ; <nl> - <nl> / * <nl> * Counts the number of cells a SpillStack will logically push . ( Not <nl> * including the number it pops . ) That is , for each SSATmp in the <nl> mmm a / hphp / runtime / vm / jit / print . cpp <nl> ppp b / hphp / runtime / vm / jit / print . cpp <nl> <nl> | license @ php . net so we can mail you a copy immediately . | <nl> + mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - + <nl> * / <nl> + <nl> # include " hphp / runtime / vm / jit / print . h " <nl> + <nl> # include < vector > <nl> <nl> - # include " hphp / util / text - color . h " <nl> # include " hphp / util / abi - cxx . h " <nl> - # include " hphp / runtime / vm / jit / containers . h " <nl> + # include " hphp / util / text - color . h " <nl> + # include " hphp / util / text - util . h " <nl> # include " hphp / runtime / base / stats . h " <nl> - # include " hphp / runtime / vm / jit / ir . h " <nl> - # include " hphp / runtime / vm / jit / layout . h " <nl> # include " hphp / runtime / vm / jit / block . h " <nl> # include " hphp / runtime / vm / jit / code - gen . h " <nl> + # include " hphp / runtime / vm / jit / containers . h " <nl> + # include " hphp / runtime / vm / jit / guard - constraints . h " <nl> + # include " hphp / runtime / vm / jit / ir . h " <nl> + # include " hphp / runtime / vm / jit / layout . h " <nl> # include " hphp / runtime / vm / jit / mc - generator . h " <nl> - # include " hphp / util / text - util . h " <nl> <nl> namespace HPHP { namespace jit { <nl> <nl> mmm a / hphp / runtime / vm / jit / print . h <nl> ppp b / hphp / runtime / vm / jit / print . h <nl> <nl> <nl> namespace HPHP { namespace jit { <nl> <nl> + struct AsmInfo ; <nl> + struct Block ; <nl> + struct GuardConstraints ; <nl> struct IRInstruction ; <nl> class SSATmp ; <nl> - struct Block ; <nl> - struct AsmInfo ; <nl> <nl> / / IRInstruction <nl> void printInstr ( std : : ostream & ostream , const IRInstruction * , <nl>
Move GuardConstraints to its own header
facebook/hhvm
0117563c2096e5e9bbf05a45583e9a719e8ad46b
2014-09-26T03:30:22Z
mmm a / tools / swift - reflection - dump / swift - reflection - dump . cpp <nl> ppp b / tools / swift - reflection - dump / swift - reflection - dump . cpp <nl> static void reportError ( std : : error_code EC ) { <nl> exit ( EXIT_FAILURE ) ; <nl> } <nl> <nl> + using NativeRuntime = External < RuntimeTarget < sizeof ( uintptr_t ) > > ; <nl> using NativeReflectionContext = <nl> - swift : : reflection : : ReflectionContext < External < RuntimeTarget < sizeof ( uintptr_t ) > > > ; <nl> + swift : : reflection : : ReflectionContext < NativeRuntime > ; <nl> <nl> using ReadBytesResult = swift : : remote : : MemoryReader : : ReadBytesResult ; <nl> <nl>
[ reflection - dump ] Extract NativeRuntime out into its own using directive .
apple/swift
b4ff6ef9b53dcdb7db19acf8f411a278e5e5e90c
2019-06-19T22:16:17Z
mmm a / script / bootstrap . py <nl> ppp b / script / bootstrap . py <nl> def parse_args ( ) : <nl> help = ' The static library path of libchromiumcontent . ' ) <nl> parser . add_argument ( ' - - defines ' , default = ' ' , <nl> help = ' The build variables passed to gyp ' ) <nl> + parser . add_argument ( ' - - cc_wrapper ' , <nl> + help = ' Sets cc_wrapper for build . E . g . $ ( which sccache ) ' ) <nl> return parser . parse_args ( ) <nl> <nl> <nl> def args_to_defines ( args ) : <nl> if args . clang_dir : <nl> defines + = ' make_clang_dir = ' + args . clang_dir <nl> defines + = ' clang_use_chrome_plugins = 0 ' <nl> + if args . cc_wrapper is not None : <nl> + defines + = ' cc_wrapper = ' + args . cc_wrapper <nl> return defines <nl> <nl> <nl> mmm a / toolchain . gypi <nl> ppp b / toolchain . gypi <nl> <nl> # Set this to true when building with Clang . <nl> ' clang % ' : 1 , <nl> <nl> + # Set this to the absolute path to sccache when building with sccache <nl> + ' cc_wrapper % ' : ' ' , <nl> + <nl> # Path to mips64el toolchain . <nl> ' make_mips64_dir % ' : ' vendor / gcc - 4 . 8 . 3 - d197 - n64 - loongson / usr ' , <nl> <nl> <nl> ] , <nl> } , <nl> ' conditions ' : [ <nl> + # Setup cc_wrapper <nl> + [ ' cc_wrapper ! = " " ' , { <nl> + ' make_global_settings ' : [ <nl> + [ ' CC_wrapper ' , ' < ( cc_wrapper ) ' ] , <nl> + [ ' CXX_wrapper ' , ' < ( cc_wrapper ) ' ] , <nl> + [ ' CC . host_wrapper ' , ' < ( cc_wrapper ) ' ] , <nl> + [ ' CXX . host_wrapper ' , ' < ( cc_wrapper ) ' ] <nl> + ] , <nl> + } ] , <nl> # Setup building with clang . <nl> [ ' clang = = 1 ' , { <nl> ' make_global_settings ' : [ <nl>
Add sccache option to bootstrap ( )
electron/electron
c1381ac598d35c97d5b49128ad3eed0966a9ef1b
2018-04-30T15:03:43Z
new file mode 100644 <nl> index 00000000000 . . 3d155cbe4ed <nl> mmm / dev / null <nl> ppp b / ports / openvdb / AddLinkageAndToolsChoice . patch <nl> <nl> pppmmm a / CMakeLists . txt <nl> ppp + b / CMakeLists . txt <nl> + PROJECT ( OpenVDB ) <nl> + <nl> + ENABLE_TESTING ( ) <nl> + <nl> + + OPTION ( OPENVDB_BUILD_TOOLS " Build OpenVDB utilities " ON ) <nl> + + OPTION ( OPENVDB_STATIC " Build statically linked library " ON ) <nl> + + OPTION ( OPENVDB_SHARED " Build dynamically linked library " ON ) <nl> + OPTION ( OPENVDB_BUILD_UNITTESTS " Build the OpenVDB unit tests " ON ) <nl> + OPTION ( OPENVDB_BUILD_DOCS " Build the OpenVDB documentation " OFF ) <nl> + OPTION ( OPENVDB_BUILD_PYTHON_MODULE " Build the pyopenvdb Python module " ON ) <nl> pppmmm a / openvdb / CMakeLists . txt <nl> ppp + b / openvdb / CMakeLists . txt <nl> + <nl> + # <nl> + PROJECT ( OpenVDBCore ) <nl> + <nl> + + IF ( OPENVDB_BUILD_TOOLS ) <nl> + IF ( USE_GLFW3 ) <nl> + FIND_PACKAGE ( GLFW3 REQUIRED ) <nl> + SET ( OPENVDB_USE_GLFW_FLAG " - DOPENVDB_USE_GLFW_3 " ) <nl> + ELSE ( ) <nl> + SET ( GLFW_LINK_LIBRARY $ { GLFW_glfw_LIBRARY } ) <nl> + SET ( GLFW_INCLUDE_DIRECTORY $ { GLFW_INCLUDE_DIR } CACHE STRING " GLFW include directory " ) <nl> + ENDIF ( ) <nl> + + ENDIF ( OPENVDB_BUILD_TOOLS ) <nl> + <nl> + IF ( WIN32 ) <nl> + + IF ( OPENVDB_BUILD_TOOLS ) <nl> + FIND_PACKAGE ( GLEW REQUIRED ) <nl> + + ENDIF ( OPENVDB_BUILD_TOOLS ) <nl> + ELSE ( ) <nl> + FIND_PACKAGE ( Threads REQUIRED ) <nl> + ENDIF ( ) <nl> + SET ( OPENVDB_PATCH_VERSION_NUMBER $ { _openvdb_patch_version_number } CACHE STRING <nl> + # MESSAGE ( " OPENVDB_MINOR_VERSION_NUMBER = $ { OPENVDB_MINOR_VERSION_NUMBER } " ) <nl> + # MESSAGE ( " OPENVDB_PATCH_VERSION_NUMBER = $ { OPENVDB_PATCH_VERSION_NUMBER } " ) <nl> + <nl> + - FIND_PACKAGE ( Boost $ { MINIMUM_BOOST_VERSION } REQUIRED COMPONENTS iostreams system thread $ { OPENVDB_BOOST_PYTHON_LIBRARY_COMPONENT_NAME } ) <nl> + + FIND_PACKAGE ( Boost $ { MINIMUM_BOOST_VERSION } REQUIRED COMPONENTS iostreams system thread date_time $ { OPENVDB_BOOST_PYTHON_LIBRARY_COMPONENT_NAME } ) <nl> + IF ( WIN32 AND OPENVDB_DISABLE_BOOST_IMPLICIT_LINKING ) <nl> + ADD_DEFINITIONS ( - DBOOST_ALL_NO_LIB ) <nl> + ENDIF ( ) <nl> + FIND_PACKAGE ( TBB REQUIRED ) <nl> + FIND_PACKAGE ( ZLIB REQUIRED ) <nl> + FIND_PACKAGE ( ILMBase REQUIRED ) <nl> + FIND_PACKAGE ( OpenEXR REQUIRED ) <nl> + + IF ( OPENVDB_BUILD_TOOLS ) <nl> + FIND_PACKAGE ( OpenGL REQUIRED ) <nl> + + ENDIF ( ) <nl> + IF ( OPENVDB_BUILD_DOCS ) <nl> + FIND_PACKAGE ( Doxygen REQUIRED ) <nl> + ENDIF ( ) <nl> + INCLUDE_DIRECTORIES ( SYSTEM $ { BLOSC_INCLUDE_DIR } ) <nl> + INCLUDE_DIRECTORIES ( SYSTEM $ { CPPUNIT_INCLUDE_DIR } ) <nl> + <nl> + IF ( WIN32 ) <nl> + - ADD_DEFINITIONS ( - D_WIN32 - DNOMINMAX - DHALF_EXPORTS - DOPENVDB_DLL ) <nl> + + ADD_DEFINITIONS ( - D_WIN32 - DNOMINMAX ) <nl> + + IF ( OPENVDB_SHARED ) <nl> + + ADD_DEFINITIONS ( - DOPENVDB_DLL ) <nl> + + ENDIF ( ) <nl> + ELSE ( ) <nl> + ADD_DEFINITIONS ( - pthread - fPIC ) <nl> + ENDIF ( ) <nl> + SET ( OPENVDB_LIBRARY_SOURCE_FILES <nl> + <nl> + SET_SOURCE_FILES_PROPERTIES ( $ { OPENVDB_LIBRARY_SOURCE_FILES } <nl> + PROPERTIES <nl> + - COMPILE_FLAGS " - DOPENVDB_PRIVATE - DOPENVDB_USE_BLOSC $ { OPENVDB_USE_GLFW_FLAG } " <nl> + + COMPILE_FLAGS " - DOPENVDB_PRIVATE - DOPENVDB_USE_BLOSC $ { OPENVDB_USE_GLFW_FLAG } / bigobj " <nl> + ) <nl> + - <nl> + + IF ( OPENVDB_STATIC ) <nl> + ADD_LIBRARY ( openvdb_static STATIC <nl> + $ { OPENVDB_LIBRARY_SOURCE_FILES } <nl> + ) <nl> + + ENDIF ( ) <nl> + + IF ( OPENVDB_SHARED ) <nl> + ADD_LIBRARY ( openvdb_shared SHARED <nl> + $ { OPENVDB_LIBRARY_SOURCE_FILES } <nl> + ) <nl> + + ENDIF ( ) <nl> + <nl> + + IF ( OPENVDB_STATIC ) <nl> + TARGET_LINK_LIBRARIES ( openvdb_static <nl> + $ { Boost_IOSTREAMS_LIBRARY } <nl> + $ { Boost_SYSTEM_LIBRARY } <nl> + TARGET_LINK_LIBRARIES ( openvdb_static <nl> + $ { ZLIB_LIBRARY } <nl> + $ { BLOSC_blosc_LIBRARY } <nl> + ) <nl> + + ENDIF ( ) <nl> + + IF ( OPENVDB_SHARED ) <nl> + TARGET_LINK_LIBRARIES ( openvdb_shared <nl> + $ { Boost_IOSTREAMS_LIBRARY } <nl> + $ { Boost_SYSTEM_LIBRARY } <nl> + TARGET_LINK_LIBRARIES ( openvdb_shared <nl> + $ { ZLIB_LIBRARY } <nl> + $ { BLOSC_blosc_LIBRARY } <nl> + ) <nl> + + ENDIF ( ) <nl> + <nl> + + IF ( OPENVDB_STATIC ) <nl> + IF ( WIN32 ) <nl> + SET_TARGET_PROPERTIES ( openvdb_static <nl> + PROPERTIES OUTPUT_NAME libopenvdb <nl> + ELSE ( ) <nl> + PROPERTIES OUTPUT_NAME openvdb <nl> + ) <nl> + ENDIF ( ) <nl> + + ENDIF ( ) <nl> + <nl> + + IF ( OPENVDB_SHARED ) <nl> + SET_TARGET_PROPERTIES ( <nl> + openvdb_shared <nl> + PROPERTIES <nl> + SET_TARGET_PROPERTIES ( <nl> + SOVERSION $ { OPENVDB_MAJOR_VERSION_NUMBER } . $ { OPENVDB_MINOR_VERSION_NUMBER } <nl> + VERSION $ { OPENVDB_MAJOR_VERSION_NUMBER } . $ { OPENVDB_MINOR_VERSION_NUMBER } . $ { OPENVDB_PATCH_VERSION_NUMBER } <nl> + ) <nl> + + ENDIF ( ) <nl> + <nl> + SET ( VDB_PRINT_SOURCE_FILES cmd / openvdb_print / main . cc ) <nl> + SET_SOURCE_FILES_PROPERTIES ( $ { VDB_PRINT_SOURCE_FILES } <nl> + PROPERTIES <nl> + - COMPILE_FLAGS " - DOPENVDB_USE_BLOSC $ { OPENVDB_USE_GLFW_FLAG } " <nl> + + COMPILE_FLAGS " - DOPENVDB_USE_BLOSC $ { OPENVDB_USE_GLFW_FLAG } / bigobj " <nl> + ) <nl> + <nl> + + IF ( OPENVDB_BUILD_TOOLS ) <nl> + ADD_EXECUTABLE ( vdb_print <nl> + $ { VDB_PRINT_SOURCE_FILES } <nl> + ) <nl> + TARGET_LINK_LIBRARIES ( vdb_print <nl> + SET ( VDB_RENDER_SOURCE_FILES cmd / openvdb_render / main . cc ) <nl> + SET_SOURCE_FILES_PROPERTIES ( $ { VDB_RENDER_SOURCE_FILES } <nl> + PROPERTIES <nl> + - COMPILE_FLAGS " - DOPENVDB_USE_BLOSC $ { OPENVDB_USE_GLFW_FLAG } " <nl> + + COMPILE_FLAGS " - DOPENVDB_USE_BLOSC $ { OPENVDB_USE_GLFW_FLAG } / bigobj " <nl> + ) <nl> + ADD_EXECUTABLE ( vdb_render <nl> + $ { VDB_RENDER_SOURCE_FILES } <nl> + SET ( VDB_VIEW_SOURCE_FILES <nl> + ) <nl> + SET_SOURCE_FILES_PROPERTIES ( $ { VDB_VIEW_SOURCE_FILES } <nl> + PROPERTIES <nl> + - COMPILE_FLAGS " - DOPENVDB_USE_BLOSC $ { OPENVDB_USE_GLFW_FLAG } - DGL_GLEXT_PROTOTYPES = 1 " <nl> + + COMPILE_FLAGS " - DOPENVDB_USE_BLOSC $ { OPENVDB_USE_GLFW_FLAG } - DGL_GLEXT_PROTOTYPES = 1 / bigobj " <nl> + ) <nl> + - IF ( NOT WIN32 ) <nl> + ADD_EXECUTABLE ( vdb_view <nl> + $ { VDB_VIEW_SOURCE_FILES } <nl> + ) <nl> + <nl> + TARGET_LINK_LIBRARIES ( vdb_view <nl> + openvdb_shared <nl> + - $ { Boost_THREAD_LIBRARY } <nl> + + $ { Boost_LIBRARIES } <nl> + $ { OPENGL_gl_LIBRARY } <nl> + $ { OPENGL_glu_LIBRARY } <nl> + - $ { COCOA_LIBRARY } <nl> + - $ { IOKIT_LIBRARY } <nl> + - $ { COREVIDEO_LIBRARY } <nl> + + # $ { COCOA_LIBRARY } <nl> + + # $ { IOKIT_LIBRARY } <nl> + + # $ { COREVIDEO_LIBRARY } <nl> + $ { GLFW_LINK_LIBRARY } <nl> + $ { GLFW_DEPENDENT_LIBRARIES } <nl> + $ { GLEW_GLEW_LIBRARY } <nl> + ) <nl> + - ENDIF ( ) <nl> + + <nl> + + ENDIF ( OPENVDB_BUILD_TOOLS ) <nl> + <nl> + SET ( UNITTEST_SOURCE_FILES <nl> + unittest / main . cc <nl> + IF ( OPENVDB_BUILD_DOCS ) <nl> + <nl> + ENDIF ( ) <nl> + <nl> + + IF ( OPENVDB_BUILD_TOOLS ) <nl> + # Installation <nl> + - IF ( NOT WIN32 ) <nl> + + # IF ( NOT WIN32 ) <nl> + INSTALL ( TARGETS <nl> + vdb_view <nl> + DESTINATION <nl> + bin <nl> + ) <nl> + - ENDIF ( ) <nl> + + # ENDIF ( ) <nl> + INSTALL ( TARGETS <nl> + vdb_print <nl> + vdb_render <nl> + DESTINATION <nl> + bin <nl> + ) <nl> + + ENDIF ( OPENVDB_BUILD_TOOLS ) <nl> + <nl> + + IF ( OPENVDB_STATIC ) <nl> + INSTALL ( TARGETS <nl> + openvdb_static <nl> + DESTINATION <nl> + lib <nl> + ) <nl> + + ENDIF ( ) <nl> + <nl> + + IF ( OPENVDB_SHARED ) <nl> + IF ( WIN32 ) <nl> + INSTALL ( TARGETS <nl> + openvdb_shared <nl> + ELSE ( ) <nl> + lib <nl> + ) <nl> + ENDIF ( ) <nl> + + ENDIF ( OPENVDB_SHARED ) <nl> + <nl> + INSTALL ( DIRECTORY $ { PROJECT_SOURCE_DIR } DESTINATION include <nl> + FILES_MATCHING PATTERN " * . h " <nl> new file mode 100644 <nl> index 00000000000 . . cfcbfac6f2c <nl> mmm / dev / null <nl> ppp b / ports / openvdb / CONTROL <nl> <nl> + Source : openvdb <nl> + Version : 5 . 0 . 0 <nl> + Build - Depends : boost , ilmbase , openexr , tbb , blosc <nl> + Description : Sparse volume data structure and tools <nl> + <nl> + Feature : tools <nl> + Description : OpenVDB utilities : view , print and render <nl> + Build - Depends : glew , glfw3 <nl> \ No newline at end of file <nl> new file mode 100644 <nl> index 00000000000 . . bfa29c46c38 <nl> mmm / dev / null <nl> ppp b / ports / openvdb / UseGLEWOnWindowsForViewer . patch <nl> <nl> pppmmm a / openvdb / viewer / ClipBox . h <nl> ppp + b / openvdb / viewer / ClipBox . h <nl> + <nl> + # if defined ( __APPLE__ ) | | defined ( MACOSX ) <nl> + # include < OpenGL / gl . h > <nl> + # include < OpenGL / glu . h > <nl> + + # elif defined ( WIN32 ) <nl> + + # include < GL / glew . h > <nl> + # else <nl> + # include < GL / gl . h > <nl> + # include < GL / glu . h > <nl> pppmmm a / openvdb / viewer / Font . h <nl> ppp + b / openvdb / viewer / Font . h <nl> + <nl> + # if defined ( __APPLE__ ) | | defined ( MACOSX ) <nl> + # include < OpenGL / gl . h > <nl> + # include < OpenGL / glu . h > <nl> + + # elif defined ( WIN32 ) <nl> + + # include < GL / glew . h > <nl> + # else <nl> + # include < GL / gl . h > <nl> + # include < GL / glu . h > <nl> pppmmm a / openvdb / viewer / RenderModules . h <nl> ppp + b / openvdb / viewer / RenderModules . h <nl> + <nl> + # if defined ( __APPLE__ ) | | defined ( MACOSX ) <nl> + # include < OpenGL / gl . h > <nl> + # include < OpenGL / glu . h > <nl> + + # elif defined ( WIN32 ) <nl> + + # include < GL / glew . h > <nl> + # else <nl> + # include < GL / gl . h > <nl> + # include < GL / glu . h > <nl> pppmmm a / openvdb / viewer / Viewer . cc <nl> ppp + b / openvdb / viewer / Viewer . cc <nl> + ViewerImpl : : open ( int width , int height ) <nl> + std : : shared_ptr < GLFWwindow > curWindow ( <nl> + glfwGetCurrentContext ( ) , glfwMakeContextCurrent ) ; <nl> + glfwMakeContextCurrent ( mWindow ) ; <nl> + - BitmapFont13 : : initialize ( ) ; <nl> + + BitmapFont13 : : initialize ( ) ; <nl> + + # ifdef WIN32 <nl> + + if ( glewInit ( ) = = GLEW_OK ) { <nl> + + OPENVDB_LOG_DEBUG_RUNTIME ( " initialized GLEW from thread " <nl> + + < < boost : : this_thread : : get_id ( ) ) ; <nl> + + } else { <nl> + + OPENVDB_LOG_ERROR ( " GLEW initialization failed " ) ; <nl> + + } <nl> + + # endif <nl> + } <nl> + } <nl> + mCamera - > setWindow ( mWindow ) ; <nl> new file mode 100644 <nl> index 00000000000 . . a21e82240b1 <nl> mmm / dev / null <nl> ppp b / ports / openvdb / portfile . cmake <nl> <nl> + include ( vcpkg_common_functions ) <nl> + <nl> + vcpkg_from_github ( <nl> + OUT_SOURCE_PATH SOURCE_PATH <nl> + REPO dreamworksanimation / openvdb <nl> + REF v5 . 0 . 0 <nl> + SHA512 8916d54683d81144114e57f8332be43b7547e6da5d194f6147bcefd4ee9e8e7ec817f27b65adb129dfd149e6b308f4bab30591ee953ee2c319636491bf051a2b <nl> + HEAD_REF master <nl> + ) <nl> + <nl> + vcpkg_apply_patches ( <nl> + SOURCE_PATH $ { SOURCE_PATH } <nl> + PATCHES <nl> + $ { CMAKE_CURRENT_LIST_DIR } / UseGLEWOnWindowsForViewer . patch <nl> + $ { CMAKE_CURRENT_LIST_DIR } / AddLinkageAndToolsChoice . patch <nl> + ) <nl> + <nl> + if ( VCPKG_LIBRARY_LINKAGE STREQUAL static ) <nl> + set ( OPENVDB_STATIC ON ) <nl> + set ( OPENVDB_SHARED OFF ) <nl> + else ( ) <nl> + set ( OPENVDB_STATIC OFF ) <nl> + set ( OPENVDB_SHARED ON ) <nl> + endif ( ) <nl> + <nl> + if ( " tools " IN_LIST FEATURES ) <nl> + set ( OPENVDB_BUILD_TOOLS ON ) <nl> + set ( OPENVDB_SHARED ON ) # tools require shared version of the library <nl> + else ( ) <nl> + set ( OPENVDB_BUILD_TOOLS OFF ) <nl> + endif ( ) <nl> + <nl> + file ( TO_NATIVE_PATH " $ { VCPKG_ROOT_DIR } / installed / $ { TARGET_TRIPLET } " INSTALL_LOCATION ) <nl> + <nl> + file ( TO_NATIVE_PATH " $ { INSTALL_LOCATION } / include " INCLUDE_LOCATION ) <nl> + file ( TO_NATIVE_PATH " $ { INSTALL_LOCATION } / lib / " LIB_LOCATION ) <nl> + file ( TO_NATIVE_PATH " $ { INSTALL_LOCATION } / debug / lib / " LIB_LOCATION_DEBUG ) <nl> + <nl> + file ( TO_NATIVE_PATH " $ { LIB_LOCATION } / zlib . lib " ZLIB_LIBRARY ) <nl> + file ( TO_NATIVE_PATH " $ { LIB_LOCATION } / tbb . lib " Tbb_TBB_LIBRARY ) <nl> + file ( TO_NATIVE_PATH " $ { LIB_LOCATION } / tbbmalloc . lib " Tbb_TBBMALLOC_LIBRARY ) <nl> + file ( TO_NATIVE_PATH " $ { LIB_LOCATION_DEBUG } / tbb_debug . lib " Tbb_TBB_LIBRARY_DEBUG ) <nl> + file ( TO_NATIVE_PATH " $ { LIB_LOCATION_DEBUG } / tbbmalloc_debug . lib " Tbb_TBBMALLOC_LIBRARY_DEBUG ) <nl> + <nl> + file ( TO_NATIVE_PATH " $ { LIB_LOCATION } / Half . lib " Ilmbase_HALF_LIBRARY ) <nl> + file ( TO_NATIVE_PATH " $ { LIB_LOCATION } / Iex - 2_2 . lib " Ilmbase_IEX_LIBRARY ) <nl> + file ( TO_NATIVE_PATH " $ { LIB_LOCATION } / IlmThread - 2_2 . lib " Ilmbase_ILMTHREAD_LIBRARY ) <nl> + <nl> + if ( OPENVDB_STATIC ) <nl> + file ( TO_NATIVE_PATH " $ { LIB_LOCATION } / glfw3 . lib " GLFW3_LIBRARY ) <nl> + else ( ) <nl> + file ( TO_NATIVE_PATH " $ { LIB_LOCATION } / glfw3dll . lib " GLFW3_LIBRARY ) <nl> + endif ( ) <nl> + <nl> + <nl> + vcpkg_configure_cmake ( <nl> + SOURCE_PATH $ { SOURCE_PATH } <nl> + PREFER_NINJA <nl> + OPTIONS - DOPENVDB_BUILD_UNITTESTS = OFF <nl> + - DOPENVDB_BUILD_PYTHON_MODULE = OFF <nl> + - DOPENVDB_ENABLE_3_ABI_COMPATIBLE = OFF <nl> + - DUSE_GLFW3 = ON <nl> + - DGLFW3_USE_STATIC_LIBS = $ { OPENVDB_STATIC } <nl> + - DBlosc_USE_STATIC_LIBS = $ { OPENVDB_STATIC } <nl> + - DOpenexr_USE_STATIC_LIBS = $ { OPENVDB_STATIC } <nl> + - DIlmbase_USE_STATIC_LIBS = $ { OPENVDB_STATIC } <nl> + - DGLFW3_glfw_LIBRARY = $ { GLFW3_LIBRARY } <nl> + <nl> + - DIlmbase_HALF_LIBRARY = $ { Ilmbase_HALF_LIBRARY } <nl> + - DIlmbase_IEX_LIBRARY = $ { Ilmbase_IEX_LIBRARY } <nl> + - DIlmbase_ILMTHREAD_LIBRARY = $ { Ilmbase_ILMTHREAD_LIBRARY } <nl> + <nl> + - DOPENVDB_STATIC = $ { OPENVDB_STATIC } <nl> + - DOPENVDB_SHARED = $ { OPENVDB_SHARED } <nl> + - DOPENVDB_BUILD_TOOLS = $ { OPENVDB_BUILD_TOOLS } <nl> + <nl> + - DZLIB_INCLUDE_DIR = $ { INCLUDE_LOCATION } <nl> + - DTBB_INCLUDE_DIR = $ { INCLUDE_LOCATION } <nl> + - DZLIB_LIBRARY = $ { ZLIB_LIBRARY } <nl> + <nl> + - DGLFW3_LOCATION = $ { INSTALL_LOCATION } <nl> + - DGLEW_LOCATION = $ { INSTALL_LOCATION } <nl> + - DILMBASE_LOCATION = $ { INSTALL_LOCATION } <nl> + - DOPENEXR_LOCATION = $ { INSTALL_LOCATION } <nl> + - DTBB_LOCATION = $ { INSTALL_LOCATION } <nl> + - DBLOSC_LOCATION = $ { INSTALL_LOCATION } <nl> + OPTIONS_RELEASE <nl> + - DTBB_LIBRARY_PATH = $ { LIB_LOCATION } <nl> + - DTbb_TBB_LIBRARY = $ { Tbb_TBB_LIBRARY } <nl> + - DTbb_TBBMALLOC_LIBRARY = $ { Tbb_TBBMALLOC_LIBRARY } <nl> + OPTIONS_DEBUG <nl> + - DTBB_LIBRARY_PATH = $ { LIB_LOCATION_DEBUG } <nl> + - DTbb_TBB_LIBRARY = $ { Tbb_TBB_LIBRARY_DEBUG } <nl> + - DTbb_TBBMALLOC_LIBRARY = $ { Tbb_TBBMALLOC_LIBRARY_DEBUG } <nl> + ) <nl> + <nl> + vcpkg_install_cmake ( ) <nl> + <nl> + vcpkg_copy_pdbs ( ) <nl> + <nl> + file ( REMOVE_RECURSE $ { CURRENT_PACKAGES_DIR } / debug / include ) <nl> + <nl> + if ( OPENVDB_BUILD_TOOLS ) <nl> + # copy tools to tools / openvdb directory <nl> + file ( MAKE_DIRECTORY $ { CURRENT_PACKAGES_DIR } / tools / $ { PORT } / ) <nl> + file ( RENAME $ { CURRENT_PACKAGES_DIR } / bin / vdb_print . exe $ { CURRENT_PACKAGES_DIR } / tools / $ { PORT } / vdb_print . exe ) <nl> + file ( RENAME $ { CURRENT_PACKAGES_DIR } / bin / vdb_render . exe $ { CURRENT_PACKAGES_DIR } / tools / $ { PORT } / vdb_render . exe ) <nl> + file ( RENAME $ { CURRENT_PACKAGES_DIR } / bin / vdb_view . exe $ { CURRENT_PACKAGES_DIR } / tools / $ { PORT } / vdb_view . exe ) <nl> + vcpkg_copy_tool_dependencies ( $ { CURRENT_PACKAGES_DIR } / tools / $ { PORT } ) <nl> + <nl> + # remove debug versions of tools <nl> + file ( REMOVE $ { CURRENT_PACKAGES_DIR } / debug / bin / vdb_render . exe ) <nl> + file ( REMOVE $ { CURRENT_PACKAGES_DIR } / debug / bin / vdb_print . exe ) <nl> + file ( REMOVE $ { CURRENT_PACKAGES_DIR } / debug / bin / vdb_view . exe ) <nl> + endif ( ) <nl> + <nl> + # Handle copyright <nl> + file ( INSTALL $ { SOURCE_PATH } / openvdb / COPYRIGHT DESTINATION $ { CURRENT_PACKAGES_DIR } / share / openvdb RENAME copyright ) <nl>
new port : openvdb
microsoft/vcpkg
7c6fb6081b461a8d546a76ea38bd3f0300111458
2017-11-21T18:23:38Z
mmm a / system / settings / settings . xml <nl> ppp b / system / settings / settings . xml <nl> <nl> < dependencies > <nl> < dependency type = " update " setting = " lookandfeel . skin " / > <nl> < / dependencies > <nl> - < control type = " spinner " format = " string " delayed = " true " / > <nl> + < control type = " list " format = " string " / > <nl> < / setting > <nl> < setting id = " lookandfeel . skincolors " type = " string " parent = " lookandfeel . skin " label = " 14078 " help = " 36106 " > <nl> < level > 1 < / level > <nl> <nl> < dependencies > <nl> < dependency type = " update " setting = " lookandfeel . skin " / > <nl> < / dependencies > <nl> - < control type = " spinner " format = " string " delayed = " true " / > <nl> + < control type = " list " format = " string " / > <nl> < / setting > <nl> < setting id = " lookandfeel . font " type = " string " parent = " lookandfeel . skin " label = " 13303 " help = " 36107 " > <nl> < level > 1 < / level > <nl> <nl> < dependencies > <nl> < dependency type = " update " setting = " lookandfeel . skin " / > <nl> < / dependencies > <nl> - < control type = " spinner " format = " string " delayed = " true " / > <nl> + < control type = " list " format = " string " / > <nl> < / setting > <nl> < setting id = " lookandfeel . skinzoom " type = " integer " parent = " lookandfeel . skin " label = " 20109 " help = " 36108 " > <nl> < level > 2 < / level > <nl> <nl> < dependencies > <nl> < dependency type = " update " setting = " locale . country " / > <nl> < / dependencies > <nl> - < control type = " spinner " format = " string " / > <nl> + < control type = " list " format = " string " / > <nl> < / setting > <nl> < / group > <nl> < group id = " 4 " > <nl>
Merge pull request from MartijnKaijser / theme_list
xbmc/xbmc
5dc5ccc4864a2a40c3919ba1f5dabf50f69d152b
2015-08-16T14:20:11Z
mmm a / src / core_io . h <nl> ppp b / src / core_io . h <nl> class CTransaction ; <nl> struct CMutableTransaction ; <nl> class uint256 ; <nl> class UniValue ; <nl> + class CTxUndo ; <nl> <nl> / / core_read . cpp <nl> CScript ParseScript ( const std : : string & s ) ; <nl> std : : string EncodeHexTx ( const CTransaction & tx , const int serializeFlags = 0 ) ; <nl> std : : string SighashToStr ( unsigned char sighash_type ) ; <nl> void ScriptPubKeyToUniv ( const CScript & scriptPubKey , UniValue & out , bool fIncludeHex ) ; <nl> void ScriptToUniv ( const CScript & script , UniValue & out , bool include_address ) ; <nl> - void TxToUniv ( const CTransaction & tx , const uint256 & hashBlock , UniValue & entry , bool include_hex = true , int serialize_flags = 0 ) ; <nl> + void TxToUniv ( const CTransaction & tx , const uint256 & hashBlock , UniValue & entry , bool include_hex = true , int serialize_flags = 0 , const CTxUndo * txundo = nullptr ) ; <nl> <nl> # endif / / BITCOIN_CORE_IO_H <nl> mmm a / src / core_write . cpp <nl> ppp b / src / core_write . cpp <nl> <nl> # include < script / standard . h > <nl> # include < serialize . h > <nl> # include < streams . h > <nl> + # include < undo . h > <nl> # include < univalue . h > <nl> + # include < util / check . h > <nl> # include < util / system . h > <nl> # include < util / strencodings . h > <nl> <nl> void ScriptPubKeyToUniv ( const CScript & scriptPubKey , <nl> out . pushKV ( " addresses " , a ) ; <nl> } <nl> <nl> - void TxToUniv ( const CTransaction & tx , const uint256 & hashBlock , UniValue & entry , bool include_hex , int serialize_flags ) <nl> + void TxToUniv ( const CTransaction & tx , const uint256 & hashBlock , UniValue & entry , bool include_hex , int serialize_flags , const CTxUndo * txundo ) <nl> { <nl> entry . pushKV ( " txid " , tx . GetHash ( ) . GetHex ( ) ) ; <nl> entry . pushKV ( " hash " , tx . GetWitnessHash ( ) . GetHex ( ) ) ; <nl> void TxToUniv ( const CTransaction & tx , const uint256 & hashBlock , UniValue & entry , <nl> entry . pushKV ( " weight " , GetTransactionWeight ( tx ) ) ; <nl> entry . pushKV ( " locktime " , ( int64_t ) tx . nLockTime ) ; <nl> <nl> - UniValue vin ( UniValue : : VARR ) ; <nl> + UniValue vin { UniValue : : VARR } ; <nl> + <nl> + / / If available , use Undo data to calculate the fee . Note that txundo = = nullptr <nl> + / / for coinbase transactions and for transactions where undo data is unavailable . <nl> + const bool calculate_fee = txundo ! = nullptr ; <nl> + CAmount amt_total_in = 0 ; <nl> + CAmount amt_total_out = 0 ; <nl> + <nl> for ( unsigned int i = 0 ; i < tx . vin . size ( ) ; i + + ) { <nl> const CTxIn & txin = tx . vin [ i ] ; <nl> UniValue in ( UniValue : : VOBJ ) ; <nl> - if ( tx . IsCoinBase ( ) ) <nl> + if ( tx . IsCoinBase ( ) ) { <nl> in . pushKV ( " coinbase " , HexStr ( txin . scriptSig ) ) ; <nl> - else { <nl> + } else { <nl> in . pushKV ( " txid " , txin . prevout . hash . GetHex ( ) ) ; <nl> in . pushKV ( " vout " , ( int64_t ) txin . prevout . n ) ; <nl> UniValue o ( UniValue : : VOBJ ) ; <nl> void TxToUniv ( const CTransaction & tx , const uint256 & hashBlock , UniValue & entry , <nl> } <nl> in . pushKV ( " txinwitness " , txinwitness ) ; <nl> } <nl> + if ( calculate_fee ) { <nl> + const CTxOut & prev_txout = txundo - > vprevout [ i ] . out ; <nl> + amt_total_in + = prev_txout . nValue ; <nl> + } <nl> in . pushKV ( " sequence " , ( int64_t ) txin . nSequence ) ; <nl> vin . push_back ( in ) ; <nl> } <nl> void TxToUniv ( const CTransaction & tx , const uint256 & hashBlock , UniValue & entry , <nl> ScriptPubKeyToUniv ( txout . scriptPubKey , o , true ) ; <nl> out . pushKV ( " scriptPubKey " , o ) ; <nl> vout . push_back ( out ) ; <nl> + <nl> + if ( calculate_fee ) { <nl> + amt_total_out + = txout . nValue ; <nl> + } <nl> } <nl> entry . pushKV ( " vout " , vout ) ; <nl> <nl> + if ( calculate_fee ) { <nl> + const CAmount fee = amt_total_in - amt_total_out ; <nl> + CHECK_NONFATAL ( MoneyRange ( fee ) ) ; <nl> + entry . pushKV ( " fee " , ValueFromAmount ( fee ) ) ; <nl> + } <nl> + <nl> if ( ! hashBlock . IsNull ( ) ) <nl> entry . pushKV ( " blockhash " , hashBlock . GetHex ( ) ) ; <nl> <nl> mmm a / src / rpc / blockchain . cpp <nl> ppp b / src / rpc / blockchain . cpp <nl> UniValue blockToJSON ( const CBlock & block , const CBlockIndex * tip , const CBlockIn <nl> result . pushKV ( " versionHex " , strprintf ( " % 08x " , block . nVersion ) ) ; <nl> result . pushKV ( " merkleroot " , block . hashMerkleRoot . GetHex ( ) ) ; <nl> UniValue txs ( UniValue : : VARR ) ; <nl> - for ( const auto & tx : block . vtx ) <nl> - { <nl> - if ( txDetails ) <nl> - { <nl> + if ( txDetails ) { <nl> + CBlockUndo blockUndo ; <nl> + const bool have_undo = ! IsBlockPruned ( blockindex ) & & UndoReadFromDisk ( blockUndo , blockindex ) ; <nl> + for ( size_t i = 0 ; i < block . vtx . size ( ) ; + + i ) { <nl> + const CTransactionRef & tx = block . vtx . at ( i ) ; <nl> + / / coinbase transaction ( i = = 0 ) doesn ' t have undo data <nl> + const CTxUndo * txundo = ( have_undo & & i ) ? & blockUndo . vtxundo . at ( i - 1 ) : nullptr ; <nl> UniValue objTx ( UniValue : : VOBJ ) ; <nl> - TxToUniv ( * tx , uint256 ( ) , objTx , true , RPCSerializationFlags ( ) ) ; <nl> + TxToUniv ( * tx , uint256 ( ) , objTx , true , RPCSerializationFlags ( ) , txundo ) ; <nl> txs . push_back ( objTx ) ; <nl> } <nl> - else <nl> + } else { <nl> + for ( const CTransactionRef & tx : block . vtx ) { <nl> txs . push_back ( tx - > GetHash ( ) . GetHex ( ) ) ; <nl> + } <nl> } <nl> result . pushKV ( " tx " , txs ) ; <nl> result . pushKV ( " time " , block . GetBlockTime ( ) ) ; <nl> static RPCHelpMan getblock ( ) <nl> { RPCResult : : Type : : OBJ , " " , " " , <nl> { <nl> { RPCResult : : Type : : ELISION , " " , " The transactions in the format of the getrawtransaction RPC . Different from verbosity = 1 \ " tx \ " result " } , <nl> + { RPCResult : : Type : : NUM , " fee " , " The transaction fee in " + CURRENCY_UNIT + " , omitted if block undo data is not available " } , <nl> } } , <nl> } } , <nl> } } , <nl> mmm a / test / functional / rpc_blockchain . py <nl> ppp b / test / functional / rpc_blockchain . py <nl> <nl> <nl> from decimal import Decimal <nl> import http . client <nl> + import os <nl> import subprocess <nl> <nl> from test_framework . blocktools import ( <nl> <nl> assert_raises_rpc_error , <nl> assert_is_hex_string , <nl> assert_is_hash_string , <nl> + get_datadir_path , <nl> ) <nl> + from test_framework . wallet import MiniWallet <nl> <nl> <nl> class BlockchainTest ( BitcoinTestFramework ) : <nl> def run_test ( self ) : <nl> self . _test_getnetworkhashps ( ) <nl> self . _test_stopatheight ( ) <nl> self . _test_waitforblockheight ( ) <nl> + self . _test_getblock ( ) <nl> assert self . nodes [ 0 ] . verifychain ( 4 , 0 ) <nl> <nl> def mine_chain ( self ) : <nl> def assert_waitforheight ( height , timeout = 2 ) : <nl> assert_waitforheight ( current_height ) <nl> assert_waitforheight ( current_height + 1 ) <nl> <nl> + def _test_getblock ( self ) : <nl> + node = self . nodes [ 0 ] <nl> + <nl> + miniwallet = MiniWallet ( node ) <nl> + miniwallet . generate ( 5 ) <nl> + node . generate ( 100 ) <nl> + <nl> + fee_per_byte = Decimal ( ' 0 . 00000010 ' ) <nl> + fee_per_kb = 1000 * fee_per_byte <nl> + <nl> + miniwallet . send_self_transfer ( fee_rate = fee_per_kb , from_node = node ) <nl> + blockhash = node . generate ( 1 ) [ 0 ] <nl> + <nl> + self . log . info ( " Test that getblock with verbosity 1 doesn ' t include fee " ) <nl> + block = node . getblock ( blockhash , 1 ) <nl> + assert ' fee ' not in block [ ' tx ' ] [ 1 ] <nl> + <nl> + self . log . info ( ' Test that getblock with verbosity 2 includes expected fee ' ) <nl> + block = node . getblock ( blockhash , 2 ) <nl> + tx = block [ ' tx ' ] [ 1 ] <nl> + assert ' fee ' in tx <nl> + assert_equal ( tx [ ' fee ' ] , tx [ ' vsize ' ] * fee_per_byte ) <nl> + <nl> + self . log . info ( " Test that getblock with verbosity 2 still works with pruned Undo data " ) <nl> + datadir = get_datadir_path ( self . options . tmpdir , 0 ) <nl> + <nl> + def move_block_file ( old , new ) : <nl> + old_path = os . path . join ( datadir , self . chain , ' blocks ' , old ) <nl> + new_path = os . path . join ( datadir , self . chain , ' blocks ' , new ) <nl> + os . rename ( old_path , new_path ) <nl> + <nl> + # Move instead of deleting so we can restore chain state afterwards <nl> + move_block_file ( ' rev00000 . dat ' , ' rev_wrong ' ) <nl> + <nl> + block = node . getblock ( blockhash , 2 ) <nl> + assert ' fee ' not in block [ ' tx ' ] [ 1 ] <nl> + <nl> + # Restore chain state <nl> + move_block_file ( ' rev_wrong ' , ' rev00000 . dat ' ) <nl> + <nl> <nl> if __name__ = = ' __main__ ' : <nl> BlockchainTest ( ) . main ( ) <nl>
Merge : rpc : calculate fees in getblock using BlockUndo data
bitcoin/bitcoin
f656165e9c0d09e654efabd56e6581638e35c26c
2020-12-24T14:32:10Z
mmm a / googletest / test / gtest_test_utils . py <nl> ppp b / googletest / test / gtest_test_utils . py <nl> def _ReplaceEnvDict ( dest , src ) : <nl> else : # os . WIFEXITED ( ret_code ) should return True here . <nl> self . _return_code = os . WEXITSTATUS ( ret_code ) <nl> <nl> - if self . _return_code < 0 : <nl> + if bool ( self . _return_code & 0x80000000 ) : <nl> self . terminated_by_signal = True <nl> self . exited = False <nl> - self . signal = - self . _return_code <nl> + self . signal = ( ~ self . _return_code & 0x7fffffff ) + 1 <nl> else : <nl> self . terminated_by_signal = False <nl> self . exited = True <nl>
Googletest export
google/googletest
73979ee1b9892c6fe11c7f4ab5358040c3108622
2020-12-02T23:23:46Z
mmm a / hphp / hack / src / parser / coroutine / coroutine_lowerer . ml <nl> ppp b / hphp / hack / src / parser / coroutine / coroutine_lowerer . ml <nl> let remove_strict_mode hh_decl = <nl> if matches_decl name <nl> then Rewriter . Result . Keep <nl> else <nl> - let new_suffix = Token . with_trailing_text single_space name in <nl> + let new_suffix = Token . with_trailing_text newline name in <nl> let markup_suffix_name = <nl> Syntax . synthesize_from suffix_name ( Token new_suffix ) in <nl> let new_node = <nl> mmm a / hphp / hack / src / parser / coroutine / coroutine_syntax . ml <nl> ppp b / hphp / hack / src / parser / coroutine / coroutine_syntax . ml <nl> let make_syntax syntax = <nl> <nl> let single_space = " " <nl> <nl> + let newline = " \ n " <nl> + <nl> let make_token_syntax ? text token_kind = <nl> let text = Option . value text ~ default : ( TokenKind . to_string token_kind ) in <nl> make_syntax @ @ <nl>
Add a newline after the < ? hh declaration during rewriting
facebook/hhvm
db21bfafda2e3fa3f03c93604f01cf822b0417fc
2018-07-05T12:27:30Z
mmm a / atom / browser / api / atom_api_desktop_capturer . cc <nl> ppp b / atom / browser / api / atom_api_desktop_capturer . cc <nl> void DesktopCapturer : : OnSourceThumbnailChanged ( int index ) { <nl> <nl> bool DesktopCapturer : : OnRefreshFinished ( ) { <nl> Emit ( " finished " , media_list_ - > GetSources ( ) ) ; <nl> - media_list_ . reset ( ) ; <nl> return false ; <nl> } <nl> <nl> mmm a / spec / api - desktop - capturer - spec . js <nl> ppp b / spec / api - desktop - capturer - spec . js <nl> describe ( ' desktopCapturer ' , function ( ) { <nl> desktopCapturer . getSources ( { types : [ ' window ' , ' screen ' ] } , callback ) <nl> desktopCapturer . getSources ( { types : [ ' window ' , ' screen ' ] } , callback ) <nl> } ) <nl> + <nl> + it ( ' responds to subsequest calls of different options ' , function ( done ) { <nl> + var callCount = 0 <nl> + var callback = function ( error , sources ) { <nl> + callCount + + <nl> + assert . equal ( error , null ) <nl> + if ( callCount = = = 2 ) done ( ) <nl> + } <nl> + <nl> + desktopCapturer . getSources ( { types : [ ' window ' ] } , callback ) <nl> + desktopCapturer . getSources ( { types : [ ' screen ' ] } , callback ) <nl> + } ) <nl> } ) <nl>
Merge pull request from deepak1556 / desktopcapture_api_patch
electron/electron
850bc2d44319289d04ec64dde542dc00b5ff64bc
2016-04-28T11:14:58Z
mmm a / arangod / Aql / Collections . h <nl> ppp b / arangod / Aql / Collections . h <nl> <nl> <nl> # include " Basics / Common . h " <nl> # include " Aql / Collection . h " <nl> + # include " Utils / Exception . h " <nl> <nl> struct TRI_vocbase_s ; <nl> <nl> namespace triagens { <nl> auto it = _collections . find ( name ) ; <nl> <nl> if ( it = = _collections . end ( ) ) { <nl> + if ( _collections . size ( ) > = MaxCollections ) { <nl> + THROW_ARANGO_EXCEPTION ( TRI_ERROR_QUERY_TOO_MANY_COLLECTIONS ) ; <nl> + } <nl> + <nl> auto collection = new Collection ( name , _vocbase , accessType ) ; <nl> try { <nl> _collections . emplace ( std : : make_pair ( name , collection ) ) ; <nl> namespace triagens { <nl> struct TRI_vocbase_s * _vocbase ; <nl> <nl> std : : map < std : : string , Collection * > _collections ; <nl> + <nl> + static size_t const MaxCollections = 32 ; <nl> } ; <nl> <nl> } <nl> mmm a / arangod / Aql / Parser . cpp <nl> ppp b / arangod / Aql / Parser . cpp <nl> bool Parser : : configureWriteQuery ( QueryType type , <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> QueryResult Parser : : parse ( ) { <nl> + char const * q = queryString ( ) ; <nl> + if ( q = = nullptr | | * q = = ' \ 0 ' ) { <nl> + THROW_ARANGO_EXCEPTION ( TRI_ERROR_QUERY_EMPTY ) ; <nl> + } <nl> + <nl> / / start main scope <nl> auto scopes = _ast - > scopes ( ) ; <nl> scopes - > start ( AQL_SCOPE_MAIN ) ; <nl> mmm a / arangod / V8Server / v8 - vocbase . cpp <nl> ppp b / arangod / V8Server / v8 - vocbase . cpp <nl> static v8 : : Handle < v8 : : Value > JS_ParseAql ( v8 : : Arguments const & argv ) { <nl> } <nl> <nl> v8 : : Handle < v8 : : Object > result = v8 : : Object : : New ( ) ; <nl> + result - > Set ( v8 : : String : : New ( " parsed " ) , v8 : : True ( ) ) ; <nl> <nl> { <nl> v8 : : Handle < v8 : : Array > collections = v8 : : Array : : New ( ) ; <nl> static v8 : : Handle < v8 : : Value > JS_ParseAql ( v8 : : Arguments const & argv ) { <nl> for ( auto it = parseResult . bindParameters . begin ( ) ; it ! = parseResult . bindParameters . end ( ) ; + + it ) { <nl> bindVars - > Set ( i + + , v8 : : String : : New ( ( * it ) . c_str ( ) ) ) ; <nl> } <nl> - result - > Set ( TRI_V8_STRING ( " bindVars " ) , bindVars ) ; <nl> + result - > Set ( TRI_V8_STRING ( " parameters " ) , bindVars ) ; <nl> } <nl> <nl> result - > Set ( TRI_V8_STRING ( " ast " ) , TRI_ObjectJson ( parseResult . json ) ) ; <nl> static v8 : : Handle < v8 : : Value > JS_ExplainAhuacatl ( v8 : : Arguments const & argv ) { <nl> return scope . Close ( result ) ; <nl> } <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief parses an AQL query and returns the parse result <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - static v8 : : Handle < v8 : : Value > JS_ParseAhuacatl ( v8 : : Arguments const & argv ) { <nl> - v8 : : HandleScope scope ; <nl> - v8 : : TryCatch tryCatch ; <nl> - <nl> - if ( argv . Length ( ) ! = 1 ) { <nl> - TRI_V8_EXCEPTION_USAGE ( scope , " AHUACATL_PARSE ( < querystring > ) " ) ; <nl> - } <nl> - <nl> - TRI_vocbase_t * vocbase = GetContextVocBase ( ) ; <nl> - <nl> - if ( vocbase = = 0 ) { <nl> - TRI_V8_EXCEPTION ( scope , TRI_ERROR_ARANGO_DATABASE_NOT_FOUND ) ; <nl> - } <nl> - <nl> - <nl> - / / get the query string <nl> - v8 : : Handle < v8 : : Value > queryArg = argv [ 0 ] ; <nl> - <nl> - if ( ! queryArg - > IsString ( ) ) { <nl> - TRI_V8_TYPE_ERROR ( scope , " expecting string for < querystring > " ) ; <nl> - } <nl> - <nl> - string queryString = TRI_ObjectToString ( queryArg ) ; <nl> - <nl> - AhuacatlGuard context ( vocbase , queryString , 0 ) ; <nl> - <nl> - if ( ! context . valid ( ) ) { <nl> - TRI_V8_EXCEPTION_MEMORY ( scope ) ; <nl> - } <nl> - <nl> - / / parse & validate <nl> - if ( ! TRI_ValidateQueryContextAql ( context . ptr ( ) ) ) { <nl> - v8 : : Handle < v8 : : Object > errorObject = CreateErrorObjectAhuacatl ( & ( context . ptr ( ) ) - > _error ) ; <nl> - return scope . Close ( v8 : : ThrowException ( errorObject ) ) ; <nl> - } <nl> - <nl> - / / setup result <nl> - v8 : : Handle < v8 : : Object > result = v8 : : Object : : New ( ) ; <nl> - <nl> - result - > Set ( v8 : : String : : New ( " parsed " ) , v8 : : True ( ) ) ; <nl> - <nl> - / / return the bind parameter names <nl> - result - > Set ( v8 : : String : : New ( " parameters " ) , TRI_ArrayAssociativePointer ( & ( context . ptr ( ) ) - > _parameters . _names ) ) ; <nl> - / / return the collection names <nl> - result - > Set ( v8 : : String : : New ( " collections " ) , TRI_ArrayAssociativePointer ( & ( context . ptr ( ) ) - > _collectionNames ) ) ; <nl> - context . free ( ) ; <nl> - <nl> - if ( tryCatch . HasCaught ( ) ) { <nl> - if ( tryCatch . CanContinue ( ) ) { <nl> - if ( tryCatch . Exception ( ) - > IsObject ( ) & & v8 : : Handle < v8 : : Array > : : Cast ( tryCatch . Exception ( ) ) - > HasOwnProperty ( v8 : : String : : New ( " errorNum " ) ) ) { <nl> - / / we already have an ArangoError object <nl> - return scope . Close ( v8 : : ThrowException ( tryCatch . Exception ( ) ) ) ; <nl> - } <nl> - <nl> - / / create a new error object <nl> - v8 : : Handle < v8 : : Object > errorObject = TRI_CreateErrorObject ( <nl> - __FILE__ , <nl> - __LINE__ , <nl> - TRI_ERROR_QUERY_SCRIPT , <nl> - TRI_ObjectToString ( tryCatch . Exception ( ) ) . c_str ( ) ) ; <nl> - return scope . Close ( v8 : : ThrowException ( errorObject ) ) ; <nl> - } <nl> - else { <nl> - TRI_v8_global_t * v8g = static_cast < TRI_v8_global_t * > ( v8 : : Isolate : : GetCurrent ( ) - > GetData ( ) ) ; <nl> - v8g - > _canceled = true ; <nl> - return scope . Close ( result ) ; <nl> - } <nl> - } <nl> - <nl> - return scope . Close ( result ) ; <nl> - } <nl> - <nl> - <nl> / / mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - <nl> / / - - SECTION - - TRI_VOCBASE_COL_T FUNCTIONS <nl> / / mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - <nl> void TRI_InitV8VocBridge ( v8 : : Handle < v8 : : Context > context , <nl> / / AQL functions . not intended to be used by end users <nl> TRI_AddGlobalFunctionVocbase ( context , " AHUACATL_RUN " , JS_RunAhuacatl , true ) ; <nl> TRI_AddGlobalFunctionVocbase ( context , " AHUACATL_EXPLAIN " , JS_ExplainAhuacatl , true ) ; <nl> - TRI_AddGlobalFunctionVocbase ( context , " AHUACATL_PARSE " , JS_ParseAhuacatl , true ) ; <nl> <nl> / / new AQL functions . not intended to be used directly by end users <nl> TRI_AddGlobalFunctionVocbase ( context , " AQL_EXECUTE " , JS_ExecuteAql , true ) ; <nl> mmm a / js / actions / api - query . js <nl> ppp b / js / actions / api - query . js <nl> <nl> / * jshint strict : false * / <nl> - / * global require * / <nl> + / * global require , AQL_PARSE * / <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief query actions <nl> <nl> <nl> var arangodb = require ( " org / arangodb " ) ; <nl> var actions = require ( " org / arangodb / actions " ) ; <nl> - <nl> var ArangoError = arangodb . ArangoError ; <nl> - var PARSE = require ( " internal " ) . AQL_PARSE ; <nl> <nl> / / mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - <nl> / / - - SECTION - - global variables <nl> function post_api_query ( req , res ) { <nl> return ; <nl> } <nl> <nl> - var result = PARSE ( json . query ) ; <nl> + var result = AQL_PARSE ( json . query ) ; <nl> <nl> if ( result instanceof ArangoError ) { <nl> actions . resultBad ( req , res , result . errorNum , result . errorMessage ) ; <nl> mmm a / js / server / bootstrap / module - internal . js <nl> ppp b / js / server / bootstrap / module - internal . js <nl> <nl> / * jshint - W051 : true * / <nl> / * global require , db , ArangoCollection , ArangoDatabase , ArangoCursor , ShapedJson , <nl> RELOAD_AUTH , SYS_DEFINE_ACTION , SYS_EXECUTE_GLOBAL_CONTEXT_FUNCTION , <nl> - AHUACATL_RUN , AHUACATL_PARSE , AHUACATL_EXPLAIN , WAL_FLUSH , WAL_PROPERTIES , <nl> + AHUACATL_RUN , AHUACATL_EXPLAIN , WAL_FLUSH , WAL_PROPERTIES , <nl> REPLICATION_LOGGER_STATE , REPLICATION_LOGGER_CONFIGURE , REPLICATION_SERVER_ID , <nl> REPLICATION_APPLIER_CONFIGURE , REPLICATION_APPLIER_START , REPLICATION_APPLIER_SHUTDOWN , <nl> REPLICATION_APPLIER_FORGET , REPLICATION_APPLIER_STATE , REPLICATION_SYNCHRONISE , <nl> <nl> internal . AQL_QUERY = AHUACATL_RUN ; <nl> delete AHUACATL_RUN ; <nl> <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - / / / @ brief parses an AQL query <nl> - / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> - <nl> - internal . AQL_PARSE = AHUACATL_PARSE ; <nl> - delete AHUACATL_PARSE ; <nl> - <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief explains an AQL query <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> mmm a / js / server / modules / org / arangodb / aql - helper . js <nl> ppp b / js / server / modules / org / arangodb / aql - helper . js <nl> <nl> / * jshint strict : false * / <nl> - / * global require , exports , assertTrue , assertEqual , fail , AQL_EXECUTE * / <nl> + / * global require , exports , assertTrue , assertEqual , fail , AQL_EXECUTE , AQL_PARSE * / <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief aql test helper functions <nl> function normalizeRow ( row , recursive ) { <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> function getParseResults ( query ) { <nl> - return internal . AQL_PARSE ( query ) ; <nl> + return AQL_PARSE ( query ) ; <nl> } <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> mmm a / js / server / modules / org / arangodb / arango - statement . js <nl> ppp b / js / server / modules / org / arangodb / arango - statement . js <nl> <nl> / * jshint strict : false * / <nl> - / * global require , exports , module * / <nl> + / * global require , exports , module , AQL_PARSE * / <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> / / / @ brief ArangoStatement <nl> var internal = require ( " internal " ) ; <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> <nl> ArangoStatement . prototype . parse = function ( ) { <nl> - var result = internal . AQL_PARSE ( this . _query ) ; <nl> + var result = AQL_PARSE ( this . _query ) ; <nl> <nl> return { <nl> bindVars : result . parameters , <nl>
removed " old " AQL function
arangodb/arangodb
672eec350e6c4ac26b5378048ca201fab5ff4372
2014-09-11T11:56:15Z
mmm a / db / pdfile . cpp <nl> ppp b / db / pdfile . cpp <nl> assert ( ! eloc . isNull ( ) ) ; <nl> objNew = b . obj ( ) ; <nl> } <nl> <nl> - { <nl> - / * xxx duplicate _id check . . . * / <nl> - BSONElement idOld ; <nl> - BSONElement idNew ; <nl> - objOld . getObjectID ( idOld ) ; <nl> - if ( objNew . getObjectID ( idNew ) ) { <nl> - / / / * <nl> - if ( idOld = = idNew ) <nl> - ; <nl> - else { <nl> - / / check if idNew would be a duplicate . very unusual that an _id would change , <nl> - / / so not worried about the bit of extra work here . <nl> - if ( d - > findIdIndex ( ) > = 0 ) { <nl> - BSONObj result ; <nl> - BSONObjBuilder b ; <nl> - b . append ( idNew ) ; <nl> - uassert ( " duplicate _id key on update " , <nl> - ! Helpers : : findOne ( ns , b . done ( ) , result ) ) ; <nl> - } <nl> - } <nl> - / / * / <nl> - } / * else { <nl> - if ( ! idOld . eoo ( ) ) { <nl> - / if the old copy had the _id , force it back into the updated version . insert ( ) adds <nl> - one so old should have it unless this is a special table like system . * or <nl> - local . oplog . * <nl> - / <nl> - addID = len ; <nl> - len + = idOld . size ( ) ; <nl> - } <nl> - } * / <nl> - } <nl> + / * duplicate key check . we descend the btree twice - once for this check , and once for the actual inserts , further <nl> + below . that is suboptimal , but it ' s pretty complicated to do it the other way without rollbacks . . . <nl> + * / <nl> + vector < IndexChanges > changes ; <nl> + getIndexChanges ( changes , * d , objNew , objOld ) ; <nl> + dupCheck ( changes , * d ) ; <nl> + <nl> if ( toupdate - > netLength ( ) < objNew . objsize ( ) ) { <nl> / / doesn ' t fit . reallocate mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm - - <nl> uassert ( " E10003 failing update : objects in a capped ns cannot grow " , ! ( d & & d - > capped ) ) ; <nl> assert ( ! eloc . isNull ( ) ) ; <nl> <nl> / * have any index keys changed ? * / <nl> if ( d - > nIndexes ) { <nl> - vector < IndexChanges > changes ; <nl> - getIndexChanges ( changes , * d , objNew , objOld ) ; <nl> for ( int x = 0 ; x < d - > nIndexes ; x + + ) { <nl> IndexDetails & idx = d - > indexes [ x ] ; <nl> - / / if ( addID & & idx . isIdIndex ( ) ) <nl> - / / continue ; <nl> for ( unsigned i = 0 ; i < changes [ x ] . removed . size ( ) ; i + + ) { <nl> try { <nl> idx . head . btree ( ) - > unindex ( idx . head , idx , * changes [ x ] . removed [ i ] , dl ) ; <nl> assert ( ! eloc . isNull ( ) ) ; <nl> memcpy ( toupdate - > data + 4 + idOld . size ( ) , ( ( char * ) buf ) + 4 , addID - 4 ) ; <nl> } else { * / <nl> memcpy ( toupdate - > data , objNew . objdata ( ) , objNew . objsize ( ) ) ; <nl> - / * } * / <nl> } <nl> <nl> int followupExtentSize ( int len , int lastExtentLen ) { <nl> mmm a / jstests / indexa . js <nl> ppp b / jstests / indexa . js <nl> <nl> + / / unique index constraint test for updates <nl> + / / case where object doesn ' t grow tested here <nl> <nl> t = db . indexa ; <nl> t . drop ( ) ; <nl> t . insert ( { ' x ' : ' A ' } ) ; <nl> t . insert ( { ' x ' : ' B ' } ) ; <nl> t . insert ( { ' x ' : ' A ' } ) ; <nl> <nl> - assert . eq ( 2 , t . count ( ) , " A " ) ; <nl> + assert . eq ( 2 , t . count ( ) , " indexa 1 " ) ; <nl> <nl> t . update ( { x : ' B ' } , { x : ' A ' } ) ; <nl> <nl> a = t . find ( ) . toArray ( ) ; <nl> u = a . map ( function ( z ) { return z . x } ) . unique ( ) ; <nl> + assert . eq ( 2 , t . count ( ) , " indexa 2 " ) ; <nl> <nl> - print ( " test commented out in indexa . js . . . " ) ; <nl> - / / assert ( a . length = = u . length , " unique index update is broken " ) ; <nl> + assert ( a . length = = u . length , " unique index update is broken " ) ; <nl> <nl> mmm a / jstests / indexb . js <nl> ppp b / jstests / indexb . js <nl> t . insert ( { a : 1 } ) ; <nl> x = { a : 2 } ; <nl> t . save ( x ) ; <nl> <nl> - print ( " test commented out indexb . js " ) ; <nl> - if ( 0 ) { <nl> + { <nl> <nl> - assert ( t . count ( ) = = 2 , " count wrong B " ) ; <nl> + assert ( t . count ( ) = = 2 , " count wrong B " ) ; <nl> <nl> - x . a = 1 ; <nl> - x . filler = " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa " ; <nl> - t . save ( x ) ; / / should fail , not unique . <nl> + x . a = 1 ; <nl> + x . filler = " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa " ; <nl> + t . save ( x ) ; / / should fail , not unique . <nl> <nl> - assert ( t . count ( ) = = 2 , " count wrong " ) ; <nl> - assert ( t . find ( { a : 1 } ) . count ( ) = = 1 , " bfail1 " ) ; <nl> - assert ( t . find ( { a : 2 } ) . count ( ) = = 1 , " bfail2 " ) ; <nl> + assert ( t . count ( ) = = 2 , " count wrong " ) ; <nl> + assert ( t . find ( { a : 1 } ) . count ( ) = = 1 , " bfail1 " ) ; <nl> + assert ( t . find ( { a : 2 } ) . count ( ) = = 1 , " bfail2 " ) ; <nl> <nl> } <nl> mmm a / jstests / uniqueness . js <nl> ppp b / jstests / uniqueness . js <nl> assert ( db . getLastError ( ) , 7 ) ; <nl> <nl> / * Check that if we update and remove _id , it gets added back by the DB * / <nl> <nl> - / * test when object grows * / <nl> + / * - test when object grows * / <nl> t . drop ( ) ; <nl> t . save ( { _id : ' Z ' } ) ; <nl> t . update ( { } , { k : 2 } ) ; <nl> assert ( t . findOne ( ) . _id = = ' Z ' , " uniqueness . js problem with adding back _id " ) ; <nl> <nl> - / * test when doesn ' t grow * / <nl> + / * - test when doesn ' t grow * / <nl> t . drop ( ) ; <nl> t . save ( { _id : ' Z ' , k : 3 } ) ; <nl> t . update ( { } , { k : 2 } ) ; <nl>
fix bug SERVER - 96 update that changes unique index field disregards unique constraint
mongodb/mongo
aaa1769381674b1ae8cf09005f5949f9a78c7141
2009-06-19T20:03:44Z
mmm a / AUTHORS <nl> ppp b / AUTHORS <nl> Developers : <nl> Fixed a bug that EventListeners can ' t be removed sometimes . <nl> Fixed a bug that the data size has to be specified when parsing XML using TinyXML . <nl> <nl> + Luis Parravicini ( luisparravicini ) <nl> + Fixed typos in create_project . py . <nl> + <nl> Retired Core Developers : <nl> WenSheng Yang <nl> Author of windows port , CCTextField , <nl>
Update AUTHORS [ ci skip ]
cocos2d/cocos2d-x
1f742b66756dabaf8e66f421741cb2a76259a0ad
2013-11-10T12:56:40Z
mmm a / src / core / lib / transport / hashtable . c <nl> ppp b / src / core / lib / transport / hashtable . c <nl> static void grpc_hash_table_add ( grpc_hash_table * table , grpc_mdstr * key , <nl> GPR_ASSERT ( value ! = NULL ) ; <nl> const size_t idx = <nl> grpc_hash_table_find_index ( table , key , true / * find_empty * / ) ; <nl> - / / This can happen if the table is full . <nl> - GPR_ASSERT ( idx ! = table - > num_entries ) ; <nl> + GPR_ASSERT ( idx ! = table - > num_entries ) ; / / Table should never be full . <nl> grpc_hash_table_entry * entry = & table - > entries [ idx ] ; <nl> entry - > key = GRPC_MDSTR_REF ( key ) ; <nl> entry - > value = vtable - > copy_value ( value ) ; <nl> mmm a / src / core / lib / transport / hashtable . h <nl> ppp b / src / core / lib / transport / hashtable . h <nl> <nl> * This implementation uses open addressing <nl> * ( https : / / en . wikipedia . org / wiki / Open_addressing ) with quadratic <nl> * probing ( https : / / en . wikipedia . org / wiki / Quadratic_probing ) . <nl> - * This means that the hash table is of fixed size and cannot contain <nl> - * more than that number of elements . <nl> * <nl> - * The keys are grpc_mdstr objects . The values are arbitrary pointers <nl> + * The keys are \ a grpc_mdstr objects . The values are arbitrary pointers <nl> * with a common vtable . <nl> * <nl> * Hash tables are intentionally immutable , to avoid the need for locking . <nl> int grpc_hash_table_unref ( grpc_hash_table * table ) ; <nl> Returns NULL if \ a key is not found . * / <nl> void * grpc_hash_table_get ( const grpc_hash_table * table , const grpc_mdstr * key ) ; <nl> <nl> - / * * Compares two hash tables . * / <nl> + / * * Compares two hash tables . <nl> + The sort order is stable but undefined . * / <nl> int grpc_hash_table_cmp ( const grpc_hash_table * table1 , <nl> const grpc_hash_table * table2 ) ; <nl> <nl>
Code review changes .
grpc/grpc
624997a24da31a7f4955701b37b9612a440b1296
2016-10-12T18:35:09Z
mmm a / src / classify / classify . cpp <nl> ppp b / src / classify / classify . cpp <nl> Classify : : Classify ( ) <nl> " Class Pruner CutoffStrength : " , this - > params ( ) ) , <nl> INT_MEMBER ( classify_integer_matcher_multiplier , 10 , <nl> " Integer Matcher Multiplier 0 - 255 : " , this - > params ( ) ) , <nl> - EnableLearning ( true ) , <nl> INT_MEMBER ( il1_adaption_test , 0 , <nl> " Don ' t adapt to i / I at beginning of word " , this - > params ( ) ) , <nl> BOOL_MEMBER ( classify_bln_numeric_mode , 0 , <nl> Classify : : Classify ( ) <nl> double_MEMBER ( speckle_rating_penalty , 10 . 0 , <nl> " Penalty to add to worst rating for noise " , this - > params ( ) ) , <nl> im_ ( & classify_debug_level ) , <nl> - shape_table_ ( nullptr ) , <nl> - dict_ ( this ) , <nl> - static_classifier_ ( nullptr ) { <nl> + dict_ ( this ) { <nl> using namespace std : : placeholders ; / / for _1 , _2 <nl> fontinfo_table_ . set_compare_callback ( std : : bind ( CompareFontInfo , _1 , _2 ) ) ; <nl> fontinfo_table_ . set_clear_callback ( std : : bind ( FontInfoDeleteCallback , _1 ) ) ; <nl> fontset_table_ . set_compare_callback ( std : : bind ( CompareFontSet , _1 , _2 ) ) ; <nl> fontset_table_ . set_clear_callback ( std : : bind ( FontSetDeleteCallback , _1 ) ) ; <nl> - AdaptedTemplates = nullptr ; <nl> - BackupAdaptedTemplates = nullptr ; <nl> - PreTrainedTemplates = nullptr ; <nl> - AllProtosOn = nullptr ; <nl> - AllConfigsOn = nullptr ; <nl> - AllConfigsOff = nullptr ; <nl> - TempProtoMask = nullptr ; <nl> - NormProtos = nullptr ; <nl> <nl> - NumAdaptationsFailed = 0 ; <nl> - <nl> - learn_debug_win_ = nullptr ; <nl> - learn_fragmented_word_debug_win_ = nullptr ; <nl> - learn_fragments_debug_win_ = nullptr ; <nl> InitFeatureDefs ( & feature_defs_ ) ; <nl> } <nl> <nl> mmm a / src / classify / classify . h <nl> ppp b / src / classify / classify . h <nl> class Classify : public CCStruct { <nl> " Penalty to add to worst rating for noise " ) ; <nl> <nl> / / Use class variables to hold onto built - in templates and adapted templates . <nl> - INT_TEMPLATES PreTrainedTemplates ; <nl> - ADAPT_TEMPLATES AdaptedTemplates ; <nl> + INT_TEMPLATES PreTrainedTemplates = nullptr ; <nl> + ADAPT_TEMPLATES AdaptedTemplates = nullptr ; <nl> / / The backup adapted templates are created from the previous page ( only ) <nl> / / so they are always ready and reasonably well trained if the primary <nl> / / adapted templates become full . <nl> - ADAPT_TEMPLATES BackupAdaptedTemplates ; <nl> + ADAPT_TEMPLATES BackupAdaptedTemplates = nullptr ; <nl> <nl> / / Create dummy proto and config masks for use with the built - in templates . <nl> - BIT_VECTOR AllProtosOn ; <nl> - BIT_VECTOR AllConfigsOn ; <nl> - BIT_VECTOR AllConfigsOff ; <nl> - BIT_VECTOR TempProtoMask ; <nl> + BIT_VECTOR AllProtosOn = nullptr ; <nl> + BIT_VECTOR AllConfigsOn = nullptr ; <nl> + BIT_VECTOR AllConfigsOff = nullptr ; <nl> + BIT_VECTOR TempProtoMask = nullptr ; <nl> / * normmatch . cpp * / <nl> - NORM_PROTOS * NormProtos ; <nl> + NORM_PROTOS * NormProtos = nullptr ; <nl> / * font detection * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * / <nl> UnicityTable < FontInfo > fontinfo_table_ ; <nl> / / Without shape training , each class_id , config pair represents a single <nl> class Classify : public CCStruct { <nl> / / ExpandShapesAndApplyCorrections . font_ids referenced by configs actually <nl> / / mean an index to the shape_table_ and the choices returned are * all * the <nl> / / shape_table_ entries at that index . <nl> - ShapeTable * shape_table_ ; <nl> + ShapeTable * shape_table_ = nullptr ; <nl> <nl> private : <nl> / / The currently active static classifier . <nl> - ShapeClassifier * static_classifier_ ; <nl> - ScrollView * learn_debug_win_ ; <nl> - ScrollView * learn_fragmented_word_debug_win_ ; <nl> - ScrollView * learn_fragments_debug_win_ ; <nl> + ShapeClassifier * static_classifier_ = nullptr ; <nl> + ScrollView * learn_debug_win_ = nullptr ; <nl> + ScrollView * learn_fragmented_word_debug_win_ = nullptr ; <nl> + ScrollView * learn_fragments_debug_win_ = nullptr ; <nl> <nl> / / Training data gathered here for all the images in a document . <nl> STRING tr_file_data_ ; <nl> class Classify : public CCStruct { <nl> GenericVector < uint16_t > shapetable_cutoffs_ ; <nl> <nl> / * variables used to hold performance statistics * / <nl> - int NumAdaptationsFailed ; <nl> + int NumAdaptationsFailed = 0 ; <nl> <nl> / / Expected number of features in the class pruner , used to penalize <nl> / / unknowns that have too few features ( like a c being classified as e ) so <nl> class Classify : public CCStruct { <nl> uint16_t BaselineCutoffs [ MAX_NUM_CLASSES ] ; <nl> <nl> public : <nl> - bool EnableLearning ; <nl> + bool EnableLearning = true ; <nl> } ; <nl> } / / namespace tesseract <nl> <nl>
Add more initial values for class Classify from constructor to header file
tesseract-ocr/tesseract
b466cead8eb1c445f546624fc74b1b85d2ad6d1b
2019-09-16T12:31:32Z
mmm a / lib / IRGen / GenEnum . cpp <nl> ppp b / lib / IRGen / GenEnum . cpp <nl> EnumImplStrategy : : get ( TypeConverter & TC , SILType type , EnumDecl * theEnum ) { <nl> / / fixed - size from this resilience scope . <nl> ResilienceExpansion layoutScope = <nl> TC . IGM . getResilienceExpansionForLayout ( theEnum ) ; <nl> + if ( TC . isCompletelyFragile ( ) ) { <nl> + / / If we forced completely fragile layout we need to check the <nl> + / / fixed - sized ' ness in the minimal scope . Otherwise , we get wrong answer for <nl> + / / private resilient enum types that have an resilient payload . <nl> + layoutScope = ResilienceExpansion : : Minimal ; <nl> + } <nl> <nl> for ( auto elt : theEnum - > getAllElements ( ) ) { <nl> numElements + + ; <nl> mmm a / test / IRGen / enum_resilience . swift <nl> ppp b / test / IRGen / enum_resilience . swift <nl> import resilient_struct <nl> / / ENUM_NOT_RES - NOT : @ " $ S14resilient_enum6MediumO6CanvasyA2CmFWC " = <nl> <nl> / / CHECK : % T15enum_resilience5ClassC = type < { % swift . refcounted } > <nl> + <nl> + / / Because the enum is resilient we cannot pack the tag into the pointer inside of the resilient payload . <nl> + / / CHECK : % T15enum_resilience9ContainerC5Multi33_59077B69D65A4A3BEE0C93708067D5F0LLO . 0 = type < { [ 8 x i8 ] , [ 1 x i8 ] } > <nl> + <nl> / / CHECK : % T15enum_resilience9ReferenceV = type < { % T15enum_resilience5ClassC * } > <nl> <nl> / / Public fixed layout struct contains a public resilient struct , <nl> private enum ProtGenEnumWithSize < T : Prot > { <nl> <nl> / / CHECK - LABEL : define linkonce_odr hidden % T15enum_resilience19ProtGenEnumWithSize33_59077B69D65A4A3BEE0C93708067D5F0LLO * @ " $ S15enum_resilience19ProtGenEnumWithSize33_59077B69D65A4A3BEE0C93708067D5F0LLOyxGAA0C0RzlWOh " ( % T15enum_resilience19ProtGenEnumWithSize <nl> / / CHECK : ret % T15enum_resilience19ProtGenEnumWithSize33_59077B69D65A4A3BEE0C93708067D5F0LLO * % 0 <nl> + <nl> + <nl> + public class Container { <nl> + private enum Multi { <nl> + case none <nl> + case some ( Container ) <nl> + case data ( ResilientRef ) <nl> + } <nl> + private var e : Multi <nl> + var i : Int <nl> + init ( ) { <nl> + e = . none <nl> + i = 0 <nl> + } <nl> + } <nl> mmm a / test / Inputs / resilient_struct . swift <nl> ppp b / test / Inputs / resilient_struct . swift <nl> public struct ResilientWeakRef { <nl> ref = r <nl> } <nl> } <nl> + <nl> + public struct ResilientRef { <nl> + public var r : Referent <nl> + } <nl> mmm a / test / Interpreter / enum_resilience . swift <nl> ppp b / test / Interpreter / enum_resilience . swift <nl> ResilientEnumTestSuite . test ( " ResilientEnumExtension " ) { <nl> expectEqual ( Base . self , ResilientMultiPayloadGenericEnumFixedSize < Base > . A . getTypeParameter ( ) ) <nl> } <nl> <nl> + public class Container { <nl> + private enum Multi { <nl> + case none <nl> + case some ( Container ) <nl> + case other ( ResilientRef ) <nl> + } <nl> + private var m : Multi <nl> + var i : Int <nl> + init ( ) { <nl> + m = . none <nl> + i = 0 <nl> + switch self . m { <nl> + case . none : <nl> + print ( " success " ) <nl> + case . some ( _ ) , . other ( _ ) : <nl> + assert ( false , " noooo ! " ) <nl> + } <nl> + } <nl> + } <nl> + <nl> + ResilientEnumTestSuite . test ( " ResilientPrivateEnumMember " ) { <nl> + _ = Container ( ) <nl> + } <nl> + <nl> runAllTests ( ) <nl>
IRGen : Fix multi - payload enum lowering
apple/swift
1772e770645ac0980b9108f19992fa75a760474f
2018-06-25T22:03:28Z
mmm a / stdlib / public / core / Codable . swift <nl> ppp b / stdlib / public / core / Codable . swift <nl> public extension KeyedEncodingContainerProtocol { <nl> <nl> / / Default implementations for decode ( _ : forKey : ) in terms of decodeIfPresent ( _ : forKey : ) <nl> public extension KeyedDecodingContainerProtocol { <nl> - public func decode ( _ type : Bool . Type , forKey key : Key ) throws - > Bool { <nl> - if let value = try decodeIfPresent ( Bool . self , forKey : key ) { <nl> - return value <nl> - } else if contains ( key ) { <nl> + @ _semantics ( " optimize . sil . specialize . generic . never " ) <nl> + @ _semantics ( " optimize . sil . specialize . generic . partial . never " ) <nl> + @ inline ( never ) <nl> + internal func _errorInDecoding < T : Decodable > ( _ type : T . Type , forKey key : Key ) - > DecodingError { <nl> + if contains ( key ) { <nl> var path = codingPath <nl> path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + return DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> var path = codingPath <nl> path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + return DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + } <nl> + } <nl> + <nl> + public func decode ( _ type : Bool . Type , forKey key : Key ) throws - > Bool { <nl> + if let value = try decodeIfPresent ( Bool . self , forKey : key ) { <nl> + return value <nl> + } else { <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> <nl> public func decode ( _ type : Int . Type , forKey key : Key ) throws - > Int { <nl> if let value = try decodeIfPresent ( Int . self , forKey : key ) { <nl> return value <nl> - } else if contains ( key ) { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> <nl> public func decode ( _ type : Int8 . Type , forKey key : Key ) throws - > Int8 { <nl> if let value = try decodeIfPresent ( Int8 . self , forKey : key ) { <nl> return value <nl> - } else if contains ( key ) { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> <nl> public func decode ( _ type : Int16 . Type , forKey key : Key ) throws - > Int16 { <nl> if let value = try decodeIfPresent ( Int16 . self , forKey : key ) { <nl> return value <nl> - } else if contains ( key ) { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> <nl> public func decode ( _ type : Int32 . Type , forKey key : Key ) throws - > Int32 { <nl> if let value = try decodeIfPresent ( Int32 . self , forKey : key ) { <nl> return value <nl> - } else if contains ( key ) { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> <nl> public func decode ( _ type : Int64 . Type , forKey key : Key ) throws - > Int64 { <nl> if let value = try decodeIfPresent ( Int64 . self , forKey : key ) { <nl> return value <nl> - } else if contains ( key ) { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> <nl> public func decode ( _ type : UInt . Type , forKey key : Key ) throws - > UInt { <nl> if let value = try decodeIfPresent ( UInt . self , forKey : key ) { <nl> return value <nl> - } else if contains ( key ) { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> <nl> public func decode ( _ type : UInt8 . Type , forKey key : Key ) throws - > UInt8 { <nl> if let value = try decodeIfPresent ( UInt8 . self , forKey : key ) { <nl> return value <nl> - } else if contains ( key ) { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> <nl> public func decode ( _ type : UInt16 . Type , forKey key : Key ) throws - > UInt16 { <nl> if let value = try decodeIfPresent ( UInt16 . self , forKey : key ) { <nl> return value <nl> - } else if contains ( key ) { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> <nl> public func decode ( _ type : UInt32 . Type , forKey key : Key ) throws - > UInt32 { <nl> if let value = try decodeIfPresent ( UInt32 . self , forKey : key ) { <nl> return value <nl> - } else if contains ( key ) { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> <nl> public func decode ( _ type : UInt64 . Type , forKey key : Key ) throws - > UInt64 { <nl> if let value = try decodeIfPresent ( UInt64 . self , forKey : key ) { <nl> return value <nl> - } else if contains ( key ) { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> <nl> public func decode ( _ type : Float . Type , forKey key : Key ) throws - > Float { <nl> if let value = try decodeIfPresent ( Float . self , forKey : key ) { <nl> return value <nl> - } else if contains ( key ) { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> <nl> public func decode ( _ type : Double . Type , forKey key : Key ) throws - > Double { <nl> if let value = try decodeIfPresent ( Double . self , forKey : key ) { <nl> return value <nl> - } else if contains ( key ) { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> <nl> public func decode ( _ type : String . Type , forKey key : Key ) throws - > String { <nl> if let value = try decodeIfPresent ( String . self , forKey : key ) { <nl> return value <nl> - } else if contains ( key ) { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> <nl> public func decode < T : Decodable > ( _ type : T . Type , forKey key : Key ) throws - > T { <nl> if let value = try decodeIfPresent ( T . self , forKey : key ) { <nl> return value <nl> - } else if contains ( key ) { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : path , debugDescription : " Found null value when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> } else { <nl> - var path = codingPath <nl> - path . append ( key ) <nl> - throw DecodingError . keyNotFound ( key , DecodingError . Context ( codingPath : path , debugDescription : " Key not found when expecting non - optional type \ ( type ) for coding key \ " \ ( key ) \ " " ) ) <nl> + throw _errorInDecoding ( type , forKey : key ) <nl> } <nl> } <nl> } <nl> public extension UnkeyedEncodingContainer { <nl> <nl> / / Default implementations for decode ( _ : ) in terms of decodeIfPresent ( _ : ) <nl> public extension UnkeyedDecodingContainer { <nl> + @ _semantics ( " optimize . sil . specialize . generic . never " ) <nl> + @ _semantics ( " optimize . sil . specialize . generic . partial . never " ) <nl> + @ inline ( never ) <nl> + internal func _errorInDecoding < T : Decodable > ( _ type : T . Type ) - > DecodingError { <nl> + if ! isAtEnd { <nl> + return DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> + } else { <nl> + return DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + } <nl> + } <nl> + <nl> mutating func decode ( _ type : Bool . Type ) throws - > Bool { <nl> if let value = try decodeIfPresent ( Bool . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> <nl> mutating func decode ( _ type : Int . Type ) throws - > Int { <nl> if let value = try decodeIfPresent ( Int . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> <nl> mutating func decode ( _ type : Int8 . Type ) throws - > Int8 { <nl> if let value = try decodeIfPresent ( Int8 . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> <nl> mutating func decode ( _ type : Int16 . Type ) throws - > Int16 { <nl> if let value = try decodeIfPresent ( Int16 . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> <nl> mutating func decode ( _ type : Int32 . Type ) throws - > Int32 { <nl> if let value = try decodeIfPresent ( Int32 . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> <nl> mutating func decode ( _ type : Int64 . Type ) throws - > Int64 { <nl> if let value = try decodeIfPresent ( Int64 . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> <nl> mutating func decode ( _ type : UInt . Type ) throws - > UInt { <nl> if let value = try decodeIfPresent ( UInt . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> <nl> mutating func decode ( _ type : UInt8 . Type ) throws - > UInt8 { <nl> if let value = try decodeIfPresent ( UInt8 . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> <nl> mutating func decode ( _ type : UInt16 . Type ) throws - > UInt16 { <nl> if let value = try decodeIfPresent ( UInt16 . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> <nl> mutating func decode ( _ type : UInt32 . Type ) throws - > UInt32 { <nl> if let value = try decodeIfPresent ( UInt32 . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> <nl> mutating func decode ( _ type : UInt64 . Type ) throws - > UInt64 { <nl> if let value = try decodeIfPresent ( UInt64 . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> <nl> mutating func decode ( _ type : Float . Type ) throws - > Float { <nl> if let value = try decodeIfPresent ( Float . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> <nl> mutating func decode ( _ type : Double . Type ) throws - > Double { <nl> if let value = try decodeIfPresent ( Double . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> <nl> mutating func decode ( _ type : String . Type ) throws - > String { <nl> if let value = try decodeIfPresent ( String . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> <nl> mutating func decode < T : Decodable > ( _ type : T . Type ) throws - > T { <nl> if let value = try decodeIfPresent ( T . self ) { <nl> return value <nl> - } else if ! isAtEnd { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " Found null value when expecting non - optional type \ ( type ) " ) ) <nl> } else { <nl> - throw DecodingError . valueNotFound ( type , DecodingError . Context ( codingPath : codingPath , debugDescription : " No remaining elements when expecting non - optional type \ ( type ) " ) ) <nl> + throw _errorInDecoding ( type ) <nl> } <nl> } <nl> } <nl>
Merge pull request from swiftix / inliner - improvements2
apple/swift
ff1e770e6f1df0f6d10ee5962be5f34c37ff3cc7
2017-06-06T04:36:42Z
mmm a / lib / IDE / CodeCompletion . cpp <nl> ppp b / lib / IDE / CodeCompletion . cpp <nl> class CompletionOverrideLookup : public swift : : VisibleDeclConsumer { <nl> <nl> / / Implement swift : : VisibleDeclConsumer . <nl> void foundDecl ( ValueDecl * D , DeclVisibilityKind Reason ) override { <nl> + if ( Reason = = DeclVisibilityKind : : MemberOfCurrentNominal ) <nl> + return ; <nl> + <nl> if ( D - > getAttrs ( ) . hasAttribute < FinalAttr > ( ) ) <nl> return ; <nl> <nl>
Code completion for overrides : don ' t suggest to override members of the current
apple/swift
164b5829eab8057e0cabaf93431212a21e4cb1f6
2014-04-25T14:46:58Z
mmm a / include / struct . h <nl> ppp b / include / struct . h <nl> __global__ void zero_tails ( SNodeAllocator < t > * allocator ) { <nl> <nl> template < typename T > <nl> __host__ void SNodeAllocator < T > : : clear ( int flags ) { <nl> + cudaDeviceSynchronize ( ) ; <nl> int blockDim = 256 ; / / least_pot_bound ( sizeof ( data_type ) / sizeof ( int ) ) ; <nl> # if defined ( TL_DEBUG ) <nl> printf ( " tail % d size % d blockDim % d \ n " , resident_tail , sizeof ( data_type ) , <nl> mmm a / src / backends / gpu . cpp <nl> ppp b / src / backends / gpu . cpp <nl> class GPUIRCodeGen : public IRVisitor { <nl> emit ( " } } " ) ; <nl> <nl> emit ( " extern \ " C \ " void { } ( Context context ) { { \ n " , codegen - > func_name ) ; <nl> + / / always sync here since CPU list gen needs the latest data structure <nl> + emit ( " cudaDeviceSynchronize ( ) ; " ) ; <nl> emit ( " auto root = ( { } * ) context . buffers [ 0 ] ; " , <nl> current_program - > snode_root - > node_type_name ) ; <nl> emit ( " { { " ) ; <nl> class GPUIRCodeGen : public IRVisitor { <nl> emit ( " cudaEventRecord ( start ) ; " ) ; <nl> } <nl> emit ( " { } _kernel < < < gridDim , blockDim > > > ( context ) ; " , codegen - > func_name ) ; <nl> + emit ( " cudaDeviceSynchronize ( ) ; " ) ; <nl> if ( debug ) { <nl> emit ( " cudaEventRecord ( stop ) ; " ) ; <nl> emit ( " cudaEventSynchronize ( stop ) ; " ) ; <nl> class GPUIRCodeGen : public IRVisitor { <nl> emit ( " auto root = ( { } * ) context . buffers [ 0 ] ; " , <nl> codegen - > prog - > snode_root - > node_type_name ) ; <nl> <nl> - emit ( " auto leaves = ( SNodeMeta * ) ( context . leaves ) ; " , <nl> + emit ( <nl> + " auto leaves = ( SNodeMeta " <nl> + " * ) ( Managers : : get_allocator < { } > ( ) - > resident_pool ) ; " , <nl> + leaf - > parent - > node_type_name ) ; <nl> + emit ( " auto num_leaves = Managers : : get_allocator < { } > ( ) - > resident_tail ; " , <nl> leaf - > parent - > node_type_name ) ; <nl> - emit ( " auto num_leaves = context . num_leaves ; " ) ; <nl> - emit ( " auto leaf_loop = blockIdx . x / { } ; " , block_division ) ; <nl> - emit ( " if ( leaf_loop > = num_leaves | | ! leaves [ leaf_loop ] . active ) return ; " ) ; <nl> + emit ( <nl> + " for ( int bid = blockIdx . x ; bid < num_leaves * { } ; bid + = gridDim . x ) " <nl> + " { { " , <nl> + block_division ) ; <nl> + emit ( " auto leaf_loop = bid / { } ; " , block_division ) ; <nl> + emit ( " if ( leaf_loop > = num_leaves | | ! leaves [ leaf_loop ] . active ) continue ; " ) ; <nl> <nl> emit ( " auto list_element = ( { } : : child_type * ) leaves [ leaf_loop ] . ptr ; " , <nl> leaf - > parent - > node_type_name ) ; <nl> class GPUIRCodeGen : public IRVisitor { <nl> emit ( " auto { } _cache = list_element - > get { } ( ) ; " , leaf - > node_type_name , chid , <nl> leaf - > node_type_name ) ; <nl> if ( leaf - > type = = SNodeType : : dynamic ) { <nl> - emit ( " if ( blockIdx . x % { } * { } > = { } _cache - > get_n ( ) ) return ; " , <nl> + emit ( " if ( bid % { } * { } > = { } _cache - > get_n ( ) ) continue ; " , <nl> block_division , ( 1 < < leaf - > total_num_bits ) / block_division , <nl> leaf - > node_type_name ) ; <nl> } <nl> class GPUIRCodeGen : public IRVisitor { <nl> emit ( " auto { } = leaves [ leaf_loop ] . indices [ { } ] ; " , <nl> loopgen . index_name_global ( leaf - > parent , i ) , i ) ; <nl> } <nl> - emit ( " auto { } = { } * ( blockIdx . x % { } ) + threadIdx . x ; " , <nl> + emit ( " auto { } = { } * ( bid % { } ) + threadIdx . x ; " , <nl> loopgen . loop_variable ( leaf ) , <nl> ( 1 < < leaf - > total_num_bits ) / block_division , block_division ) ; <nl> <nl> class GPUIRCodeGen : public IRVisitor { <nl> } <nl> } <nl> <nl> - emit ( " } } " ) ; <nl> + emit ( " } } " ) ; / / end for <nl> + emit ( " } } " ) ; / / end kernel <nl> <nl> emit ( " extern \ " C \ " void { } ( Context context ) { { \ n " , codegen - > func_name ) ; <nl> emit ( " auto root = ( { } * ) context . buffers [ 0 ] ; " , <nl> class GPUIRCodeGen : public IRVisitor { <nl> } <nl> } <nl> emit ( " gpu_runtime_init ( ) ; " ) ; <nl> - emit ( " context . num_leaves = Managers : : get_allocator < { } > ( ) - > resident_tail ; " , <nl> - leaf - > parent - > node_type_name ) ; <nl> - <nl> - emit ( " context . leaves = Managers : : get_allocator < { } > ( ) - > resident_pool ; " , <nl> - leaf - > parent - > node_type_name ) ; <nl> - <nl> emit ( <nl> - " int gridDim = context . num_leaves * { } , blockDim = ( { } : : get_max_n ( ) " <nl> + " int gridDim = 12800 , blockDim = ( { } : : get_max_n ( ) " <nl> " + { } - 1 ) / { } ; " , <nl> - block_division , leaf - > node_type_name , block_division , block_division ) ; <nl> + leaf - > node_type_name , block_division , block_division ) ; <nl> if ( debug ) { <nl> emit ( <nl> R " ( printf ( " kernel { } < < < % d , % d > > > " , gridDim , blockDim ) ; ) " , <nl>
grid - stride loop
taichi-dev/taichi
2dddbdd488121296b78886665808f4fd59a917e1
2019-04-21T03:44:08Z
mmm a / patches / common / chromium / . patches <nl> ppp b / patches / common / chromium / . patches <nl> color_chooser_win . patch <nl> fix_disable_usage_of_abort_report_np_in_mas_builds . patch <nl> fix_disable_usage_of_pthread_fchdir_np_and_pthread_chdir_np_in_mas . patch <nl> fix_disable_usage_of_setapplicationisdaemon_and . patch <nl> + fixme_disable_field - trial_descriptor_dcheck . patch <nl> new file mode 100644 <nl> index 000000000000 . . b28538dc8f10 <nl> mmm / dev / null <nl> ppp b / patches / common / chromium / fixme_disable_field - trial_descriptor_dcheck . patch <nl> <nl> + From 0000000000000000000000000000000000000000 Mon Sep 17 00 : 00 : 00 2001 <nl> + From : Jeremy Apthorp < nornagon @ nornagon . net > <nl> + Date : Thu , 21 Feb 2019 17 : 17 : 51 - 0800 <nl> + Subject : FIXME : disable field - trial descriptor DCHECK <nl> + <nl> + <nl> pppmmm a / content / browser / child_process_launcher_helper_posix . cc <nl> ppp + b / content / browser / child_process_launcher_helper_posix . cc <nl> + std : : unique_ptr < PosixFileDescriptorInfo > CreateDefaultPosixFilesToMap ( <nl> + / / Mac shared memory doesn ' t use file descriptors . <nl> + # if ! defined ( OS_MACOSX ) <nl> + int fd = base : : FieldTrialList : : GetFieldTrialDescriptor ( ) ; <nl> + - DCHECK_NE ( fd , - 1 ) ; <nl> + - files_to_register - > Share ( service_manager : : kFieldTrialDescriptor , fd ) ; <nl> + + / / DCHECK_NE ( fd , - 1 ) ; <nl> + + if ( fd > = 0 ) <nl> + + files_to_register - > Share ( service_manager : : kFieldTrialDescriptor , fd ) ; <nl> + # endif <nl> + <nl> + DCHECK ( mojo_channel_remote_endpoint . is_valid ( ) ) ; <nl>
FIXME : disable field - trial descriptor DCHECK
electron/electron
d47ed72d174087a1c4f200b3f585c932da532ef9
2019-03-08T23:05:54Z
mmm a / . github / ISSUE_TEMPLATE . md <nl> ppp b / . github / ISSUE_TEMPLATE . md <nl> <nl> < ! - - <nl> Please keep in mind yuzu is EXPERIMENTAL SOFTWARE . <nl> <nl> - Please read the FAQ : https : / / yuzu - emu . org / wiki / faq / <nl> + Please read the FAQ : <nl> + https : / / yuzu - emu . org / wiki / faq / <nl> <nl> - When submitting an issue , please do the following : <nl> + THIS IS NOT A SUPPORT FORUM , FOR SUPPORT GO TO : <nl> + https : / / community . citra - emu . org / <nl> <nl> - - Provide the version ( commit hash ) of yuzu you are using . <nl> - - Provide sufficient detail for the issue to be reproduced . <nl> - - Provide : <nl> + If the FAQ does not answer your question , please go to : <nl> + https : / / community . citra - emu . org / <nl> + <nl> + When submitting an issue , please check the following : <nl> + <nl> + - You have read the above . <nl> + - You have provided the version ( commit hash ) of yuzu you are using . <nl> + - You have provided sufficient detail for the issue to be reproduced . <nl> + - You have provided system specs ( if relevant ) . <nl> + - Please also provide : <nl> + - For any issues , a log file <nl> - For crashes , a backtrace . <nl> - For graphical issues , comparison screenshots with real hardware . <nl> - For emulation inaccuracies , a test - case ( if able ) . <nl> + <nl> - - > <nl> <nl> <nl>
Merge pull request from FearlessTobi / patch - 3
yuzu-emu/yuzu
d5a4707f659010061dd07a2a7af4e1c88a8796ae
2019-01-22T21:00:17Z
mmm a / src / compiler / js - native - context - specialization . cc <nl> ppp b / src / compiler / js - native - context - specialization . cc <nl> Reduction JSNativeContextSpecialization : : ReduceJSStoreNamedOwn ( Node * node ) { <nl> AccessMode : : kStoreInLiteral ) ; <nl> } <nl> <nl> + Reduction JSNativeContextSpecialization : : ReduceElementAccessOnString ( <nl> + Node * node , Node * index , Node * value , AccessMode access_mode , <nl> + KeyedAccessLoadMode load_mode ) { <nl> + Node * receiver = NodeProperties : : GetValueInput ( node , 0 ) ; <nl> + Node * effect = NodeProperties : : GetEffectInput ( node ) ; <nl> + Node * control = NodeProperties : : GetControlInput ( node ) ; <nl> + <nl> + / / Strings are immutable in JavaScript . <nl> + if ( access_mode = = AccessMode : : kStore ) return NoChange ( ) ; <nl> + <nl> + / / Ensure that the { receiver } is actually a String . <nl> + receiver = effect = graph ( ) - > NewNode ( <nl> + simplified ( ) - > CheckString ( VectorSlotPair ( ) ) , receiver , effect , control ) ; <nl> + <nl> + / / Determine the { receiver } length . <nl> + Node * length = graph ( ) - > NewNode ( simplified ( ) - > StringLength ( ) , receiver ) ; <nl> + <nl> + / / Load the single character string from { receiver } or yield undefined <nl> + / / if the { index } is out of bounds ( depending on the { load_mode } ) . <nl> + value = BuildIndexedStringLoad ( receiver , index , length , & effect , & control , <nl> + load_mode ) ; <nl> + <nl> + ReplaceWithValue ( node , value , effect , control ) ; <nl> + return Replace ( value ) ; <nl> + } <nl> + <nl> Reduction JSNativeContextSpecialization : : ReduceElementAccess ( <nl> Node * node , Node * index , Node * value , MapHandles const & receiver_maps , <nl> AccessMode access_mode , KeyedAccessLoadMode load_mode , <nl> Reduction JSNativeContextSpecialization : : ReduceElementAccess ( <nl> Node * control = NodeProperties : : GetControlInput ( node ) ; <nl> Node * frame_state = NodeProperties : : FindFrameStateBefore ( node ) ; <nl> <nl> - / / Check for keyed access to strings . <nl> if ( HasOnlyStringMaps ( receiver_maps ) ) { <nl> - / / Strings are immutable in JavaScript . <nl> - if ( access_mode = = AccessMode : : kStore ) return NoChange ( ) ; <nl> + return ReduceElementAccessOnString ( node , index , value , access_mode , <nl> + load_mode ) ; <nl> + } <nl> <nl> - / / Ensure that the { receiver } is actually a String . <nl> - receiver = effect = graph ( ) - > NewNode ( <nl> - simplified ( ) - > CheckString ( VectorSlotPair ( ) ) , receiver , effect , control ) ; <nl> + / / Compute element access infos for the receiver maps . <nl> + AccessInfoFactory access_info_factory ( <nl> + broker ( ) , dependencies ( ) , native_context ( ) . object ( ) , graph ( ) - > zone ( ) ) ; <nl> + ZoneVector < ElementAccessInfo > access_infos ( zone ( ) ) ; <nl> + if ( ! access_info_factory . ComputeElementAccessInfos ( receiver_maps , access_mode , <nl> + & access_infos ) ) { <nl> + return NoChange ( ) ; <nl> + } <nl> <nl> - / / Determine the { receiver } length . <nl> - Node * length = graph ( ) - > NewNode ( simplified ( ) - > StringLength ( ) , receiver ) ; <nl> + / / Nothing to do if we have no non - deprecated maps . <nl> + if ( access_infos . empty ( ) ) { <nl> + return ReduceSoftDeoptimize ( <nl> + node , DeoptimizeReason : : kInsufficientTypeFeedbackForGenericKeyedAccess ) ; <nl> + } <nl> <nl> - / / Load the single character string from { receiver } or yield undefined <nl> - / / if the { index } is out of bounds ( depending on the { load_mode } ) . <nl> - value = BuildIndexedStringLoad ( receiver , index , length , & effect , & control , <nl> - load_mode ) ; <nl> - } else { <nl> - / / Compute element access infos for the receiver maps . <nl> - AccessInfoFactory access_info_factory ( <nl> - broker ( ) , dependencies ( ) , native_context ( ) . object ( ) , graph ( ) - > zone ( ) ) ; <nl> - ZoneVector < ElementAccessInfo > access_infos ( zone ( ) ) ; <nl> - if ( ! access_info_factory . ComputeElementAccessInfos ( <nl> - receiver_maps , access_mode , & access_infos ) ) { <nl> - return NoChange ( ) ; <nl> + / / For holey stores or growing stores , we need to check that the prototype <nl> + / / chain contains no setters for elements , and we need to guard those checks <nl> + / / via code dependencies on the relevant prototype maps . <nl> + if ( access_mode = = AccessMode : : kStore ) { <nl> + / / TODO ( turbofan ) : We could have a fast path here , that checks for the <nl> + / / common case of Array or Object prototype only and therefore avoids <nl> + / / the zone allocation of this vector . <nl> + ZoneVector < Handle < Map > > prototype_maps ( zone ( ) ) ; <nl> + for ( ElementAccessInfo const & access_info : access_infos ) { <nl> + for ( Handle < Map > receiver_map : access_info . receiver_maps ( ) ) { <nl> + / / If the { receiver_map } has a prototype and its elements backing <nl> + / / store is either holey , or we have a potentially growing store , <nl> + / / then we need to check that all prototypes have stable maps with <nl> + / / fast elements ( and we need to guard against changes to that below ) . <nl> + if ( IsHoleyOrDictionaryElementsKind ( receiver_map - > elements_kind ( ) ) | | <nl> + IsGrowStoreMode ( store_mode ) ) { <nl> + / / Make sure all prototypes are stable and have fast elements . <nl> + for ( Handle < Map > map = receiver_map ; ; ) { <nl> + Handle < Object > map_prototype ( map - > prototype ( ) , isolate ( ) ) ; <nl> + if ( map_prototype - > IsNull ( isolate ( ) ) ) break ; <nl> + if ( ! map_prototype - > IsJSObject ( ) ) return NoChange ( ) ; <nl> + map = <nl> + handle ( Handle < JSObject > : : cast ( map_prototype ) - > map ( ) , isolate ( ) ) ; <nl> + if ( ! map - > is_stable ( ) ) return NoChange ( ) ; <nl> + if ( ! IsFastElementsKind ( map - > elements_kind ( ) ) ) return NoChange ( ) ; <nl> + prototype_maps . push_back ( map ) ; <nl> + } <nl> + } <nl> + } <nl> } <nl> <nl> - / / Nothing to do if we have no non - deprecated maps . <nl> - if ( access_infos . empty ( ) ) { <nl> - return ReduceSoftDeoptimize ( <nl> - node , <nl> - DeoptimizeReason : : kInsufficientTypeFeedbackForGenericKeyedAccess ) ; <nl> + / / Install dependencies on the relevant prototype maps . <nl> + for ( Handle < Map > prototype_map : prototype_maps ) { <nl> + dependencies ( ) - > DependOnStableMap ( MapRef ( broker ( ) , prototype_map ) ) ; <nl> } <nl> + } <nl> <nl> - / / For holey stores or growing stores , we need to check that the prototype <nl> - / / chain contains no setters for elements , and we need to guard those checks <nl> - / / via code dependencies on the relevant prototype maps . <nl> - if ( access_mode = = AccessMode : : kStore ) { <nl> - / / TODO ( turbofan ) : We could have a fast path here , that checks for the <nl> - / / common case of Array or Object prototype only and therefore avoids <nl> - / / the zone allocation of this vector . <nl> - ZoneVector < Handle < Map > > prototype_maps ( zone ( ) ) ; <nl> - for ( ElementAccessInfo const & access_info : access_infos ) { <nl> - for ( Handle < Map > receiver_map : access_info . receiver_maps ( ) ) { <nl> - / / If the { receiver_map } has a prototype and its elements backing <nl> - / / store is either holey , or we have a potentially growing store , <nl> - / / then we need to check that all prototypes have stable maps with <nl> - / / fast elements ( and we need to guard against changes to that below ) . <nl> - if ( IsHoleyOrDictionaryElementsKind ( receiver_map - > elements_kind ( ) ) | | <nl> - IsGrowStoreMode ( store_mode ) ) { <nl> - / / Make sure all prototypes are stable and have fast elements . <nl> - for ( Handle < Map > map = receiver_map ; ; ) { <nl> - Handle < Object > map_prototype ( map - > prototype ( ) , isolate ( ) ) ; <nl> - if ( map_prototype - > IsNull ( isolate ( ) ) ) break ; <nl> - if ( ! map_prototype - > IsJSObject ( ) ) return NoChange ( ) ; <nl> - map = handle ( Handle < JSObject > : : cast ( map_prototype ) - > map ( ) , <nl> - isolate ( ) ) ; <nl> - if ( ! map - > is_stable ( ) ) return NoChange ( ) ; <nl> - if ( ! IsFastElementsKind ( map - > elements_kind ( ) ) ) return NoChange ( ) ; <nl> - prototype_maps . push_back ( map ) ; <nl> - } <nl> - } <nl> - } <nl> - } <nl> + / / Ensure that { receiver } is a heap object . <nl> + PropertyAccessBuilder access_builder ( jsgraph ( ) , broker ( ) , dependencies ( ) ) ; <nl> + receiver = access_builder . BuildCheckHeapObject ( receiver , & effect , control ) ; <nl> <nl> - / / Install dependencies on the relevant prototype maps . <nl> - for ( Handle < Map > prototype_map : prototype_maps ) { <nl> - dependencies ( ) - > DependOnStableMap ( MapRef ( broker ( ) , prototype_map ) ) ; <nl> - } <nl> + / / Check for the monomorphic case . <nl> + if ( access_infos . size ( ) = = 1 ) { <nl> + ElementAccessInfo access_info = access_infos . front ( ) ; <nl> + <nl> + / / Perform possible elements kind transitions . <nl> + Handle < Map > const transition_target = access_info . receiver_maps ( ) . front ( ) ; <nl> + for ( auto transition_source : access_info . transition_sources ( ) ) { <nl> + DCHECK_EQ ( access_info . receiver_maps ( ) . size ( ) , 1 ) ; <nl> + effect = graph ( ) - > NewNode ( <nl> + simplified ( ) - > TransitionElementsKind ( ElementsTransition ( <nl> + IsSimpleMapChangeTransition ( transition_source - > elements_kind ( ) , <nl> + transition_target - > elements_kind ( ) ) <nl> + ? ElementsTransition : : kFastTransition <nl> + : ElementsTransition : : kSlowTransition , <nl> + transition_source , transition_target ) ) , <nl> + receiver , effect , control ) ; <nl> } <nl> <nl> - / / Ensure that { receiver } is a heap object . <nl> - PropertyAccessBuilder access_builder ( jsgraph ( ) , broker ( ) , dependencies ( ) ) ; <nl> - receiver = access_builder . BuildCheckHeapObject ( receiver , & effect , control ) ; <nl> + / / TODO ( turbofan ) : The effect / control linearization will not find a <nl> + / / FrameState after the StoreField or Call that is generated for the <nl> + / / elements kind transition above . This is because those operators <nl> + / / don ' t have the kNoWrite flag on it , even though they are not <nl> + / / observable by JavaScript . <nl> + effect = <nl> + graph ( ) - > NewNode ( common ( ) - > Checkpoint ( ) , frame_state , effect , control ) ; <nl> + <nl> + / / Perform map check on the { receiver } . <nl> + access_builder . BuildCheckMaps ( receiver , & effect , control , <nl> + access_info . receiver_maps ( ) ) ; <nl> <nl> - / / Check for the monomorphic case . <nl> - if ( access_infos . size ( ) = = 1 ) { <nl> - ElementAccessInfo access_info = access_infos . front ( ) ; <nl> + / / Access the actual element . <nl> + ValueEffectControl continuation = <nl> + BuildElementAccess ( receiver , index , value , effect , control , access_info , <nl> + access_mode , load_mode , store_mode ) ; <nl> + value = continuation . value ( ) ; <nl> + effect = continuation . effect ( ) ; <nl> + control = continuation . control ( ) ; <nl> + } else { <nl> + / / The final states for every polymorphic branch . We join them with <nl> + / / Merge + Phi + EffectPhi at the bottom . <nl> + ZoneVector < Node * > values ( zone ( ) ) ; <nl> + ZoneVector < Node * > effects ( zone ( ) ) ; <nl> + ZoneVector < Node * > controls ( zone ( ) ) ; <nl> + <nl> + / / Generate code for the various different element access patterns . <nl> + Node * fallthrough_control = control ; <nl> + for ( size_t j = 0 ; j < access_infos . size ( ) ; + + j ) { <nl> + ElementAccessInfo const & access_info = access_infos [ j ] ; <nl> + Node * this_receiver = receiver ; <nl> + Node * this_value = value ; <nl> + Node * this_index = index ; <nl> + Node * this_effect = effect ; <nl> + Node * this_control = fallthrough_control ; <nl> <nl> / / Perform possible elements kind transitions . <nl> Handle < Map > const transition_target = access_info . receiver_maps ( ) . front ( ) ; <nl> for ( auto transition_source : access_info . transition_sources ( ) ) { <nl> DCHECK_EQ ( access_info . receiver_maps ( ) . size ( ) , 1 ) ; <nl> - effect = graph ( ) - > NewNode ( <nl> + this_effect = graph ( ) - > NewNode ( <nl> simplified ( ) - > TransitionElementsKind ( ElementsTransition ( <nl> IsSimpleMapChangeTransition ( transition_source - > elements_kind ( ) , <nl> transition_target - > elements_kind ( ) ) <nl> ? ElementsTransition : : kFastTransition <nl> : ElementsTransition : : kSlowTransition , <nl> transition_source , transition_target ) ) , <nl> - receiver , effect , control ) ; <nl> + receiver , this_effect , this_control ) ; <nl> } <nl> <nl> - / / TODO ( turbofan ) : The effect / control linearization will not find a <nl> - / / FrameState after the StoreField or Call that is generated for the <nl> - / / elements kind transition above . This is because those operators <nl> - / / don ' t have the kNoWrite flag on it , even though they are not <nl> - / / observable by JavaScript . <nl> - effect = graph ( ) - > NewNode ( common ( ) - > Checkpoint ( ) , frame_state , effect , <nl> - control ) ; <nl> - <nl> - / / Perform map check on the { receiver } . <nl> - access_builder . BuildCheckMaps ( receiver , & effect , control , <nl> - access_info . receiver_maps ( ) ) ; <nl> - <nl> - / / Access the actual element . <nl> - ValueEffectControl continuation = <nl> - BuildElementAccess ( receiver , index , value , effect , control , <nl> - access_info , access_mode , load_mode , store_mode ) ; <nl> - value = continuation . value ( ) ; <nl> - effect = continuation . effect ( ) ; <nl> - control = continuation . control ( ) ; <nl> - } else { <nl> - / / The final states for every polymorphic branch . We join them with <nl> - / / Merge + Phi + EffectPhi at the bottom . <nl> - ZoneVector < Node * > values ( zone ( ) ) ; <nl> - ZoneVector < Node * > effects ( zone ( ) ) ; <nl> - ZoneVector < Node * > controls ( zone ( ) ) ; <nl> - <nl> - / / Generate code for the various different element access patterns . <nl> - Node * fallthrough_control = control ; <nl> - for ( size_t j = 0 ; j < access_infos . size ( ) ; + + j ) { <nl> - ElementAccessInfo const & access_info = access_infos [ j ] ; <nl> - Node * this_receiver = receiver ; <nl> - Node * this_value = value ; <nl> - Node * this_index = index ; <nl> - Node * this_effect = effect ; <nl> - Node * this_control = fallthrough_control ; <nl> - <nl> - / / Perform possible elements kind transitions . <nl> - Handle < Map > const transition_target = <nl> - access_info . receiver_maps ( ) . front ( ) ; <nl> - for ( auto transition_source : access_info . transition_sources ( ) ) { <nl> - DCHECK_EQ ( access_info . receiver_maps ( ) . size ( ) , 1 ) ; <nl> - this_effect = graph ( ) - > NewNode ( <nl> - simplified ( ) - > TransitionElementsKind ( <nl> - ElementsTransition ( IsSimpleMapChangeTransition ( <nl> - transition_source - > elements_kind ( ) , <nl> - transition_target - > elements_kind ( ) ) <nl> - ? ElementsTransition : : kFastTransition <nl> - : ElementsTransition : : kSlowTransition , <nl> - transition_source , transition_target ) ) , <nl> - receiver , this_effect , this_control ) ; <nl> - } <nl> - <nl> - / / Perform map check ( s ) on { receiver } . <nl> - MapHandles const & receiver_maps = access_info . receiver_maps ( ) ; <nl> - if ( j = = access_infos . size ( ) - 1 ) { <nl> - / / Last map check on the fallthrough control path , do a <nl> - / / conditional eager deoptimization exit here . <nl> - access_builder . BuildCheckMaps ( receiver , & this_effect , this_control , <nl> - receiver_maps ) ; <nl> - fallthrough_control = nullptr ; <nl> - } else { <nl> - / / Explicitly branch on the { receiver_maps } . <nl> - ZoneHandleSet < Map > maps ; <nl> - for ( Handle < Map > map : receiver_maps ) { <nl> - maps . insert ( map , graph ( ) - > zone ( ) ) ; <nl> - } <nl> - Node * check = this_effect = <nl> - graph ( ) - > NewNode ( simplified ( ) - > CompareMaps ( maps ) , receiver , <nl> - this_effect , fallthrough_control ) ; <nl> - Node * branch = <nl> - graph ( ) - > NewNode ( common ( ) - > Branch ( ) , check , fallthrough_control ) ; <nl> - fallthrough_control = graph ( ) - > NewNode ( common ( ) - > IfFalse ( ) , branch ) ; <nl> - this_control = graph ( ) - > NewNode ( common ( ) - > IfTrue ( ) , branch ) ; <nl> - <nl> - / / Introduce a MapGuard to learn from this on the effect chain . <nl> - this_effect = graph ( ) - > NewNode ( simplified ( ) - > MapGuard ( maps ) , receiver , <nl> - this_effect , this_control ) ; <nl> + / / Perform map check ( s ) on { receiver } . <nl> + MapHandles const & receiver_maps = access_info . receiver_maps ( ) ; <nl> + if ( j = = access_infos . size ( ) - 1 ) { <nl> + / / Last map check on the fallthrough control path , do a <nl> + / / conditional eager deoptimization exit here . <nl> + access_builder . BuildCheckMaps ( receiver , & this_effect , this_control , <nl> + receiver_maps ) ; <nl> + fallthrough_control = nullptr ; <nl> + } else { <nl> + / / Explicitly branch on the { receiver_maps } . <nl> + ZoneHandleSet < Map > maps ; <nl> + for ( Handle < Map > map : receiver_maps ) { <nl> + maps . insert ( map , graph ( ) - > zone ( ) ) ; <nl> } <nl> + Node * check = this_effect = <nl> + graph ( ) - > NewNode ( simplified ( ) - > CompareMaps ( maps ) , receiver , <nl> + this_effect , fallthrough_control ) ; <nl> + Node * branch = <nl> + graph ( ) - > NewNode ( common ( ) - > Branch ( ) , check , fallthrough_control ) ; <nl> + fallthrough_control = graph ( ) - > NewNode ( common ( ) - > IfFalse ( ) , branch ) ; <nl> + this_control = graph ( ) - > NewNode ( common ( ) - > IfTrue ( ) , branch ) ; <nl> <nl> - / / Access the actual element . <nl> - ValueEffectControl continuation = BuildElementAccess ( <nl> - this_receiver , this_index , this_value , this_effect , this_control , <nl> - access_info , access_mode , load_mode , store_mode ) ; <nl> - values . push_back ( continuation . value ( ) ) ; <nl> - effects . push_back ( continuation . effect ( ) ) ; <nl> - controls . push_back ( continuation . control ( ) ) ; <nl> + / / Introduce a MapGuard to learn from this on the effect chain . <nl> + this_effect = graph ( ) - > NewNode ( simplified ( ) - > MapGuard ( maps ) , receiver , <nl> + this_effect , this_control ) ; <nl> } <nl> <nl> - DCHECK_NULL ( fallthrough_control ) ; <nl> + / / Access the actual element . <nl> + ValueEffectControl continuation = BuildElementAccess ( <nl> + this_receiver , this_index , this_value , this_effect , this_control , <nl> + access_info , access_mode , load_mode , store_mode ) ; <nl> + values . push_back ( continuation . value ( ) ) ; <nl> + effects . push_back ( continuation . effect ( ) ) ; <nl> + controls . push_back ( continuation . control ( ) ) ; <nl> + } <nl> <nl> - / / Generate the final merge point for all ( polymorphic ) branches . <nl> - int const control_count = static_cast < int > ( controls . size ( ) ) ; <nl> - if ( control_count = = 0 ) { <nl> - value = effect = control = jsgraph ( ) - > Dead ( ) ; <nl> - } else if ( control_count = = 1 ) { <nl> - value = values . front ( ) ; <nl> - effect = effects . front ( ) ; <nl> - control = controls . front ( ) ; <nl> - } else { <nl> - control = graph ( ) - > NewNode ( common ( ) - > Merge ( control_count ) , <nl> - control_count , & controls . front ( ) ) ; <nl> - values . push_back ( control ) ; <nl> - value = graph ( ) - > NewNode ( <nl> - common ( ) - > Phi ( MachineRepresentation : : kTagged , control_count ) , <nl> - control_count + 1 , & values . front ( ) ) ; <nl> - effects . push_back ( control ) ; <nl> - effect = graph ( ) - > NewNode ( common ( ) - > EffectPhi ( control_count ) , <nl> - control_count + 1 , & effects . front ( ) ) ; <nl> - } <nl> + DCHECK_NULL ( fallthrough_control ) ; <nl> + <nl> + / / Generate the final merge point for all ( polymorphic ) branches . <nl> + int const control_count = static_cast < int > ( controls . size ( ) ) ; <nl> + if ( control_count = = 0 ) { <nl> + value = effect = control = jsgraph ( ) - > Dead ( ) ; <nl> + } else if ( control_count = = 1 ) { <nl> + value = values . front ( ) ; <nl> + effect = effects . front ( ) ; <nl> + control = controls . front ( ) ; <nl> + } else { <nl> + control = graph ( ) - > NewNode ( common ( ) - > Merge ( control_count ) , control_count , <nl> + & controls . front ( ) ) ; <nl> + values . push_back ( control ) ; <nl> + value = graph ( ) - > NewNode ( <nl> + common ( ) - > Phi ( MachineRepresentation : : kTagged , control_count ) , <nl> + control_count + 1 , & values . front ( ) ) ; <nl> + effects . push_back ( control ) ; <nl> + effect = graph ( ) - > NewNode ( common ( ) - > EffectPhi ( control_count ) , <nl> + control_count + 1 , & effects . front ( ) ) ; <nl> } <nl> } <nl> <nl> mmm a / src / compiler / js - native - context - specialization . h <nl> ppp b / src / compiler / js - native - context - specialization . h <nl> class V8_EXPORT_PRIVATE JSNativeContextSpecialization final <nl> Reduction ReduceKeyedLoadFromHeapConstant ( Node * node , Node * index , <nl> FeedbackNexus const & nexus , <nl> KeyedAccessLoadMode load_mode ) ; <nl> + Reduction ReduceElementAccessOnString ( Node * node , Node * index , Node * value , <nl> + AccessMode access_mode , <nl> + KeyedAccessLoadMode load_mode ) ; <nl> <nl> Reduction ReduceSoftDeoptimize ( Node * node , DeoptimizeReason reason ) ; <nl> Reduction ReduceJSToString ( Node * node ) ; <nl>
[ turbofan ] Move a special case out of ReduceElementAccess
v8/v8
9d98af91e634390ba856fdd7e4f33dbea0c88582
2019-02-19T19:29:25Z
mmm a / buildscripts / packager - enterprise . py <nl> ppp b / buildscripts / packager - enterprise . py <nl> def write_rpm_macros_file ( path , topdir , release_dist ) : <nl> try : <nl> f . write ( " % % _topdir % s \ n " % topdir ) <nl> f . write ( " % % dist . % s \ n " % release_dist ) <nl> - f . write ( " % % % _use_internal_dependency_generator 0 \ n " ) <nl> + f . write ( " % _use_internal_dependency_generator 0 \ n " ) <nl> finally : <nl> f . close ( ) <nl> <nl>
SERVER - 12753 Remove extra % % in enterprise rpm macros file
mongodb/mongo
f6c94b9b45cc200addd2ac98afcb1cde77a03dc5
2014-03-06T23:41:25Z
new file mode 100644 <nl> index 000000000000 . . 5f39f8bd9553 <nl> mmm / dev / null <nl> ppp b / LICENSE <nl> <nl> + Copyright ( c ) 2014 Cheng Zhao . <nl> + <nl> + Permission is hereby granted , free of charge , to any person obtaining <nl> + a copy of this software and associated documentation files ( the <nl> + " Software " ) , to deal in the Software without restriction , including <nl> + without limitation the rights to use , copy , modify , merge , publish , <nl> + distribute , sublicense , and / or sell copies of the Software , and to <nl> + permit persons to whom the Software is furnished to do so , subject to <nl> + the following conditions : <nl> + <nl> + The above copyright notice and this permission notice shall be <nl> + included in all copies or substantial portions of the Software . <nl> + <nl> + THE SOFTWARE IS PROVIDED " AS IS " , WITHOUT WARRANTY OF ANY KIND , <nl> + EXPRESS OR IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF <nl> + MERCHANTABILITY , FITNESS FOR A PARTICULAR PURPOSE AND <nl> + NONINFRINGEMENT . IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE <nl> + LIABLE FOR ANY CLAIM , DAMAGES OR OTHER LIABILITY , WHETHER IN AN ACTION <nl> + OF CONTRACT , TORT OR OTHERWISE , ARISING FROM , OUT OF OR IN CONNECTION <nl> + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE . <nl> new file mode 100644 <nl> index 000000000000 . . 972bb2edb099 <nl> mmm / dev / null <nl> ppp b / LICENSE . chromium <nl> <nl> + / / Copyright 2014 The Chromium Authors . All rights reserved . <nl> + / / <nl> + / / Redistribution and use in source and binary forms , with or without <nl> + / / modification , are permitted provided that the following conditions are <nl> + / / met : <nl> + / / <nl> + / / * Redistributions of source code must retain the above copyright <nl> + / / notice , this list of conditions and the following disclaimer . <nl> + / / * Redistributions in binary form must reproduce the above <nl> + / / copyright notice , this list of conditions and the following disclaimer <nl> + / / in the documentation and / or other materials provided with the <nl> + / / distribution . <nl> + / / * Neither the name of Google Inc . nor the names of its <nl> + / / contributors may be used to endorse or promote products derived from <nl> + / / this software without specific prior written permission . <nl> + / / <nl> + / / THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS <nl> + / / " AS IS " AND ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT <nl> + / / LIMITED TO , THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR <nl> + / / A PARTICULAR PURPOSE ARE DISCLAIMED . IN NO EVENT SHALL THE COPYRIGHT <nl> + / / OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT , INDIRECT , INCIDENTAL , <nl> + / / SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING , BUT NOT <nl> + / / LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE , <nl> + / / DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON ANY <nl> + / / THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT <nl> + / / ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE <nl> + / / OF THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE . <nl> new file mode 100644 <nl> index 000000000000 . . 70351479a022 <nl> mmm / dev / null <nl> ppp b / native_mate / arguments . cc <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # include " native_mate / arguments . h " <nl> + <nl> + # include " base / strings / stringprintf . h " <nl> + # include " native_mate / converter . h " <nl> + <nl> + namespace mate { <nl> + <nl> + Arguments : : Arguments ( ) <nl> + : isolate_ ( NULL ) , <nl> + info_ ( NULL ) , <nl> + next_ ( 0 ) , <nl> + insufficient_arguments_ ( false ) { <nl> + } <nl> + <nl> + Arguments : : Arguments ( const MATE_METHOD_ARGS_TYPE & info ) <nl> + : isolate_ ( info . GetIsolate ( ) ) , <nl> + info_ ( & info ) , <nl> + next_ ( 0 ) , <nl> + insufficient_arguments_ ( false ) { <nl> + } <nl> + <nl> + Arguments : : ~ Arguments ( ) { <nl> + } <nl> + <nl> + v8 : : Handle < v8 : : Value > Arguments : : PeekNext ( ) const { <nl> + if ( next_ > = info_ - > Length ( ) ) <nl> + return v8 : : Handle < v8 : : Value > ( ) ; <nl> + return ( * info_ ) [ next_ ] ; <nl> + } <nl> + <nl> + void Arguments : : ThrowError ( ) const { <nl> + if ( insufficient_arguments_ ) <nl> + return ThrowTypeError ( " Insufficient number of arguments . " ) ; <nl> + <nl> + ThrowTypeError ( base : : StringPrintf ( <nl> + " Error processing argument % d . " , next_ - 1 ) ) ; <nl> + } <nl> + <nl> + void Arguments : : ThrowTypeError ( const std : : string & message ) const { <nl> + MATE_THROW_EXCEPTION ( isolate_ , v8 : : Exception : : TypeError ( <nl> + StringToV8 ( isolate_ , message ) ) ) ; <nl> + } <nl> + <nl> + } / / namespace mate <nl> new file mode 100644 <nl> index 000000000000 . . 054e03abf84c <nl> mmm / dev / null <nl> ppp b / native_mate / arguments . h <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # ifndef NATIVE_MATE_ARGUMENTS_H_ <nl> + # define NATIVE_MATE_ARGUMENTS_H_ <nl> + <nl> + # include " base / basictypes . h " <nl> + # include " native_mate / compat . h " <nl> + # include " native_mate / converter . h " <nl> + <nl> + namespace mate { <nl> + <nl> + / / Arguments is a wrapper around v8 : : FunctionCallbackInfo that integrates <nl> + / / with Converter to make it easier to marshall arguments and return values <nl> + / / between V8 and C + + . <nl> + class Arguments { <nl> + public : <nl> + Arguments ( ) ; <nl> + explicit Arguments ( const MATE_METHOD_ARGS_TYPE & info ) ; <nl> + ~ Arguments ( ) ; <nl> + <nl> + template < typename T > <nl> + bool GetHolder ( T * out ) { <nl> + return ConvertFromV8 ( isolate_ , info_ - > Holder ( ) , out ) ; <nl> + } <nl> + <nl> + template < typename T > <nl> + bool GetData ( T * out ) { <nl> + return ConvertFromV8 ( isolate_ , info_ - > Data ( ) , out ) ; <nl> + } <nl> + <nl> + template < typename T > <nl> + bool GetNext ( T * out ) { <nl> + if ( next_ > = info_ - > Length ( ) ) { <nl> + insufficient_arguments_ = true ; <nl> + return false ; <nl> + } <nl> + v8 : : Handle < v8 : : Value > val = ( * info_ ) [ next_ + + ] ; <nl> + return ConvertFromV8 ( isolate_ , val , out ) ; <nl> + } <nl> + <nl> + template < typename T > <nl> + bool GetRemaining ( std : : vector < T > * out ) { <nl> + if ( next_ > = info_ - > Length ( ) ) { <nl> + insufficient_arguments_ = true ; <nl> + return false ; <nl> + } <nl> + int remaining = info_ - > Length ( ) - next_ ; <nl> + out - > resize ( remaining ) ; <nl> + for ( int i = 0 ; i < remaining ; + + i ) { <nl> + v8 : : Handle < v8 : : Value > val = ( * info_ ) [ next_ + + ] ; <nl> + if ( ! ConvertFromV8 ( isolate_ , val , & out - > at ( i ) ) ) <nl> + return false ; <nl> + } <nl> + return true ; <nl> + } <nl> + <nl> + # if NODE_VERSION_AT_LEAST ( 0 , 11 , 0 ) <nl> + template < typename T > <nl> + void Return ( T val ) { <nl> + info_ - > GetReturnValue ( ) . Set ( ConvertToV8 ( isolate_ , val ) ) ; <nl> + } <nl> + # endif <nl> + <nl> + v8 : : Handle < v8 : : Value > PeekNext ( ) const ; <nl> + <nl> + void ThrowError ( ) const ; <nl> + void ThrowTypeError ( const std : : string & message ) const ; <nl> + <nl> + v8 : : Isolate * isolate ( ) const { return isolate_ ; } <nl> + <nl> + private : <nl> + v8 : : Isolate * isolate_ ; <nl> + const MATE_METHOD_ARGS_TYPE * info_ ; <nl> + int next_ ; <nl> + bool insufficient_arguments_ ; <nl> + } ; <nl> + <nl> + } / / namespace mate <nl> + <nl> + # endif / / NATIVE_MATE_ARGUMENTS_H_ <nl> new file mode 100644 <nl> index 000000000000 . . 5641613c42e2 <nl> mmm / dev / null <nl> ppp b / native_mate / compat . h <nl> <nl> + / / Copyright 2014 Cheng Zhao . All rights reserved . <nl> + / / Use of this source code is governed by MIT license that can be found in the <nl> + / / LICENSE file . <nl> + <nl> + # ifndef NATIVE_MATE_COMPAT_H_ <nl> + # define NATIVE_MATE_COMPAT_H_ <nl> + <nl> + # include " node_version . h " <nl> + <nl> + # if ( NODE_MODULE_VERSION > 0x000B ) / / Node 0 . 11 + <nl> + <nl> + # define MATE_HANDLE_SCOPE ( isolate ) v8 : : HandleScope handle_scope ( isolate ) <nl> + <nl> + # define MATE_METHOD_ARGS_TYPE v8 : : FunctionCallbackInfo < v8 : : Value > <nl> + # define MATE_METHOD_RETURN_TYPE void <nl> + <nl> + # define MATE_METHOD_RETURN_VALUE ( value ) return info . GetReturnValue ( ) . Set ( value ) <nl> + # define MATE_METHOD_RETURN_UNDEFINED ( ) return <nl> + # define MATE_METHOD_RETURN_NULL ( ) return info . GetReturnValue ( ) . SetNull ( ) <nl> + # define MATE_METHOD_RETURN ( value ) args . Return ( value ) <nl> + <nl> + # define MATE_STRING_NEW_FROM_UTF8 ( isolate , data , length ) \ <nl> + v8 : : String : : NewFromUtf8 ( isolate , data , v8 : : String : : kNormalString , length ) <nl> + # define MATE_STRING_NEW_SYMBOL ( isolate , data , length ) \ <nl> + v8 : : String : : NewFromUtf8 ( isolate , data , v8 : : String : : kInternalizedString , length ) <nl> + <nl> + # define MATE_SET_INTERNAL_FIELD_POINTER ( object , index , value ) \ <nl> + object - > SetAlignedPointerInInternalField ( index , value ) <nl> + # define MATE_GET_INTERNAL_FIELD_POINTER ( object , index ) \ <nl> + object - > GetAlignedPointerFromInternalField ( index ) <nl> + <nl> + # define MATE_PERSISTENT_INIT ( isolate , handle , value ) \ <nl> + handle ( isolate , value ) <nl> + # define MATE_PERSISTENT_ASSIGN ( type , isolate , handle , value ) \ <nl> + handle . Reset ( isolate , value ) <nl> + # define MATE_PERSISTENT_RESET ( handle ) \ <nl> + handle . Reset ( ) <nl> + # define MATE_PERSISTENT_TO_LOCAL ( type , isolate , handle ) \ <nl> + v8 : : Local < type > : : New ( isolate , handle ) <nl> + # define MATE_PERSISTENT_SET_WEAK ( handle , parameter , callback ) \ <nl> + handle . SetWeak ( parameter , callback ) <nl> + <nl> + # define MATE_WEAK_CALLBACK ( name , v8_type , c_type ) \ <nl> + void name ( const v8 : : WeakCallbackData < v8_type , c_type > & data ) <nl> + # define MATE_WEAK_CALLBACK_INIT ( c_type ) \ <nl> + c_type * self = data . GetParameter ( ) <nl> + <nl> + # else / / Node 0 . 8 and 0 . 10 <nl> + <nl> + # define MATE_HANDLE_SCOPE ( isolate ) v8 : : HandleScope handle_scope <nl> + <nl> + # define MATE_METHOD_ARGS_TYPE v8 : : Arguments <nl> + # define MATE_METHOD_RETURN_TYPE v8 : : Handle < v8 : : Value > <nl> + <nl> + # define MATE_METHOD_RETURN_VALUE ( value ) return value <nl> + # define MATE_METHOD_RETURN_UNDEFINED ( ) return v8 : : Undefined ( ) <nl> + # define MATE_METHOD_RETURN_NULL ( ) return v8 : : Null ( ) <nl> + # define MATE_METHOD_RETURN ( value ) \ <nl> + MATE_METHOD_RETURN_VALUE ( ConvertToV8 ( args . isolate ( ) , value ) ) <nl> + <nl> + # define MATE_STRING_NEW_FROM_UTF8 ( isolate , data , length ) \ <nl> + v8 : : String : : New ( data , length ) <nl> + # define MATE_STRING_NEW_SYMBOL ( isolate , data , length ) \ <nl> + v8 : : String : : NewSymbol ( data , length ) <nl> + <nl> + # define MATE_SET_INTERNAL_FIELD_POINTER ( object , index , value ) \ <nl> + object - > SetPointerInInternalField ( index , value ) <nl> + # define MATE_GET_INTERNAL_FIELD_POINTER ( object , index ) \ <nl> + object - > GetPointerFromInternalField ( index ) <nl> + <nl> + # define MATE_PERSISTENT_INIT ( isolate , handle , value ) \ <nl> + handle ( value ) <nl> + # define MATE_PERSISTENT_ASSIGN ( type , isolate , handle , value ) \ <nl> + handle = v8 : : Persistent < type > : : New ( value ) <nl> + # define MATE_PERSISTENT_RESET ( handle ) \ <nl> + handle . Dispose ( ) ; \ <nl> + handle . Clear ( ) <nl> + # define MATE_PERSISTENT_TO_LOCAL ( type , isolate , handle ) \ <nl> + v8 : : Local < type > : : New ( handle ) <nl> + # define MATE_PERSISTENT_SET_WEAK ( handle , parameter , callback ) \ <nl> + handle . MakeWeak ( parameter , callback ) <nl> + <nl> + # define MATE_WEAK_CALLBACK ( name , v8_type , c_type ) \ <nl> + void name ( v8 : : Persistent < v8 : : Value > object , void * parameter ) <nl> + # define MATE_WEAK_CALLBACK_INIT ( c_type ) \ <nl> + c_type * self = static_cast < c_type * > ( parameter ) <nl> + <nl> + # endif / / ( NODE_MODULE_VERSION > 0x000B ) <nl> + <nl> + <nl> + / / Generally we should not provide utility macros , but this just makes things <nl> + / / much more comfortable so we keep it . <nl> + # define MATE_METHOD ( name ) \ <nl> + MATE_METHOD_RETURN_TYPE name ( const MATE_METHOD_ARGS_TYPE & info ) <nl> + <nl> + / / In lastest V8 ThrowException would need to pass isolate , be prepared for it . <nl> + # define MATE_THROW_EXCEPTION ( isolate , value ) \ <nl> + v8 : : ThrowException ( value ) <nl> + <nl> + # endif / / NATIVE_MATE_COMPAT_H_ <nl> new file mode 100644 <nl> index 000000000000 . . 4750e5a30a1d <nl> mmm / dev / null <nl> ppp b / native_mate / converter . cc <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # include " native_mate / converter . h " <nl> + <nl> + # include " native_mate / compat . h " <nl> + # include " v8 / include / v8 . h " <nl> + <nl> + using v8 : : Boolean ; <nl> + using v8 : : External ; <nl> + using v8 : : Function ; <nl> + using v8 : : Handle ; <nl> + using v8 : : Integer ; <nl> + using v8 : : Isolate ; <nl> + using v8 : : Number ; <nl> + using v8 : : Object ; <nl> + using v8 : : String ; <nl> + using v8 : : Value ; <nl> + <nl> + namespace mate { <nl> + <nl> + Handle < Value > Converter < bool > : : ToV8 ( Isolate * isolate , bool val ) { <nl> + return Boolean : : New ( val ) ; <nl> + } <nl> + <nl> + bool Converter < bool > : : FromV8 ( Isolate * isolate , Handle < Value > val , bool * out ) { <nl> + * out = val - > BooleanValue ( ) ; <nl> + return true ; <nl> + } <nl> + <nl> + Handle < Value > Converter < int32_t > : : ToV8 ( Isolate * isolate , int32_t val ) { <nl> + return Integer : : New ( val ) ; <nl> + } <nl> + <nl> + bool Converter < int32_t > : : FromV8 ( Isolate * isolate , Handle < Value > val , <nl> + int32_t * out ) { <nl> + if ( ! val - > IsInt32 ( ) ) <nl> + return false ; <nl> + * out = val - > Int32Value ( ) ; <nl> + return true ; <nl> + } <nl> + <nl> + Handle < Value > Converter < uint32_t > : : ToV8 ( Isolate * isolate , uint32_t val ) { <nl> + return Integer : : NewFromUnsigned ( val ) ; <nl> + } <nl> + <nl> + bool Converter < uint32_t > : : FromV8 ( Isolate * isolate , Handle < Value > val , <nl> + uint32_t * out ) { <nl> + if ( ! val - > IsUint32 ( ) ) <nl> + return false ; <nl> + * out = val - > Uint32Value ( ) ; <nl> + return true ; <nl> + } <nl> + <nl> + Handle < Value > Converter < int64_t > : : ToV8 ( Isolate * isolate , int64_t val ) { <nl> + return Number : : New ( static_cast < double > ( val ) ) ; <nl> + } <nl> + <nl> + bool Converter < int64_t > : : FromV8 ( Isolate * isolate , Handle < Value > val , <nl> + int64_t * out ) { <nl> + if ( ! val - > IsNumber ( ) ) <nl> + return false ; <nl> + / / Even though IntegerValue returns int64_t , JavaScript cannot represent <nl> + / / the full precision of int64_t , which means some rounding might occur . <nl> + * out = val - > IntegerValue ( ) ; <nl> + return true ; <nl> + } <nl> + <nl> + Handle < Value > Converter < uint64_t > : : ToV8 ( Isolate * isolate , uint64_t val ) { <nl> + return Number : : New ( static_cast < double > ( val ) ) ; <nl> + } <nl> + <nl> + bool Converter < uint64_t > : : FromV8 ( Isolate * isolate , Handle < Value > val , <nl> + uint64_t * out ) { <nl> + if ( ! val - > IsNumber ( ) ) <nl> + return false ; <nl> + * out = static_cast < uint64_t > ( val - > IntegerValue ( ) ) ; <nl> + return true ; <nl> + } <nl> + <nl> + Handle < Value > Converter < float > : : ToV8 ( Isolate * isolate , float val ) { <nl> + return Number : : New ( val ) ; <nl> + } <nl> + <nl> + bool Converter < float > : : FromV8 ( Isolate * isolate , Handle < Value > val , <nl> + float * out ) { <nl> + if ( ! val - > IsNumber ( ) ) <nl> + return false ; <nl> + * out = static_cast < float > ( val - > NumberValue ( ) ) ; <nl> + return true ; <nl> + } <nl> + <nl> + Handle < Value > Converter < double > : : ToV8 ( Isolate * isolate , double val ) { <nl> + return Number : : New ( val ) ; <nl> + } <nl> + <nl> + bool Converter < double > : : FromV8 ( Isolate * isolate , Handle < Value > val , <nl> + double * out ) { <nl> + if ( ! val - > IsNumber ( ) ) <nl> + return false ; <nl> + * out = val - > NumberValue ( ) ; <nl> + return true ; <nl> + } <nl> + <nl> + Handle < Value > Converter < base : : StringPiece > : : ToV8 ( <nl> + Isolate * isolate , const base : : StringPiece & val ) { <nl> + return MATE_STRING_NEW_FROM_UTF8 ( isolate , val . data ( ) , <nl> + static_cast < uint32_t > ( val . length ( ) ) ) ; <nl> + } <nl> + <nl> + Handle < Value > Converter < std : : string > : : ToV8 ( Isolate * isolate , <nl> + const std : : string & val ) { <nl> + return Converter < base : : StringPiece > : : ToV8 ( isolate , val ) ; <nl> + } <nl> + <nl> + bool Converter < std : : string > : : FromV8 ( Isolate * isolate , Handle < Value > val , <nl> + std : : string * out ) { <nl> + if ( ! val - > IsString ( ) ) <nl> + return false ; <nl> + Handle < String > str = Handle < String > : : Cast ( val ) ; <nl> + int length = str - > Utf8Length ( ) ; <nl> + out - > resize ( length ) ; <nl> + str - > WriteUtf8 ( & ( * out ) [ 0 ] , length , NULL , String : : NO_NULL_TERMINATION ) ; <nl> + return true ; <nl> + } <nl> + <nl> + bool Converter < Handle < Function > > : : FromV8 ( Isolate * isolate , Handle < Value > val , <nl> + Handle < Function > * out ) { <nl> + if ( ! val - > IsFunction ( ) ) <nl> + return false ; <nl> + * out = Handle < Function > : : Cast ( val ) ; <nl> + return true ; <nl> + } <nl> + <nl> + Handle < Value > Converter < Handle < Object > > : : ToV8 ( Isolate * isolate , <nl> + Handle < Object > val ) { <nl> + return val ; <nl> + } <nl> + <nl> + bool Converter < Handle < Object > > : : FromV8 ( Isolate * isolate , Handle < Value > val , <nl> + Handle < Object > * out ) { <nl> + if ( ! val - > IsObject ( ) ) <nl> + return false ; <nl> + * out = Handle < Object > : : Cast ( val ) ; <nl> + return true ; <nl> + } <nl> + <nl> + Handle < Value > Converter < Handle < External > > : : ToV8 ( Isolate * isolate , <nl> + Handle < External > val ) { <nl> + return val ; <nl> + } <nl> + <nl> + bool Converter < Handle < External > > : : FromV8 ( Isolate * isolate , <nl> + v8 : : Handle < Value > val , <nl> + Handle < External > * out ) { <nl> + if ( ! val - > IsExternal ( ) ) <nl> + return false ; <nl> + * out = Handle < External > : : Cast ( val ) ; <nl> + return true ; <nl> + } <nl> + <nl> + Handle < Value > Converter < Handle < Value > > : : ToV8 ( Isolate * isolate , <nl> + Handle < Value > val ) { <nl> + return val ; <nl> + } <nl> + <nl> + bool Converter < Handle < Value > > : : FromV8 ( Isolate * isolate , Handle < Value > val , <nl> + Handle < Value > * out ) { <nl> + * out = val ; <nl> + return true ; <nl> + } <nl> + <nl> + v8 : : Handle < v8 : : String > StringToSymbol ( v8 : : Isolate * isolate , <nl> + const base : : StringPiece & val ) { <nl> + return MATE_STRING_NEW_SYMBOL ( isolate , <nl> + val . data ( ) , <nl> + static_cast < uint32_t > ( val . length ( ) ) ) ; <nl> + } <nl> + <nl> + std : : string V8ToString ( v8 : : Handle < v8 : : Value > value ) { <nl> + if ( value . IsEmpty ( ) ) <nl> + return std : : string ( ) ; <nl> + std : : string result ; <nl> + if ( ! ConvertFromV8 ( NULL , value , & result ) ) <nl> + return std : : string ( ) ; <nl> + return result ; <nl> + } <nl> + <nl> + } / / namespace mate <nl> new file mode 100644 <nl> index 000000000000 . . 44b7d4a882bd <nl> mmm / dev / null <nl> ppp b / native_mate / converter . h <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # ifndef NATIVE_MATE_CONVERTER_H_ <nl> + # define NATIVE_MATE_CONVERTER_H_ <nl> + <nl> + # include < string > <nl> + # include < vector > <nl> + <nl> + # include " base / strings / string_piece . h " <nl> + # include " v8 / include / v8 . h " <nl> + <nl> + namespace mate { <nl> + <nl> + template < typename T , typename Enable = void > <nl> + struct Converter { } ; <nl> + <nl> + template < > <nl> + struct Converter < bool > { <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + bool val ) ; <nl> + static bool FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + bool * out ) ; <nl> + } ; <nl> + <nl> + template < > <nl> + struct Converter < int32_t > { <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + int32_t val ) ; <nl> + static bool FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + int32_t * out ) ; <nl> + } ; <nl> + <nl> + template < > <nl> + struct Converter < uint32_t > { <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + uint32_t val ) ; <nl> + static bool FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + uint32_t * out ) ; <nl> + } ; <nl> + <nl> + template < > <nl> + struct Converter < int64_t > { <nl> + / / Warning : JavaScript cannot represent 64 integers precisely . <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + int64_t val ) ; <nl> + static bool FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + int64_t * out ) ; <nl> + } ; <nl> + <nl> + template < > <nl> + struct Converter < uint64_t > { <nl> + / / Warning : JavaScript cannot represent 64 integers precisely . <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + uint64_t val ) ; <nl> + static bool FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + uint64_t * out ) ; <nl> + } ; <nl> + <nl> + template < > <nl> + struct Converter < float > { <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + float val ) ; <nl> + static bool FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + float * out ) ; <nl> + } ; <nl> + <nl> + template < > <nl> + struct Converter < double > { <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + double val ) ; <nl> + static bool FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + double * out ) ; <nl> + } ; <nl> + <nl> + template < > <nl> + struct Converter < base : : StringPiece > { <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + const base : : StringPiece & val ) ; <nl> + / / No conversion out is possible because StringPiece does not contain storage . <nl> + } ; <nl> + <nl> + template < > <nl> + struct Converter < std : : string > { <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + const std : : string & val ) ; <nl> + static bool FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + std : : string * out ) ; <nl> + } ; <nl> + <nl> + template < > <nl> + struct Converter < v8 : : Handle < v8 : : Function > > { <nl> + static bool FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + v8 : : Handle < v8 : : Function > * out ) ; <nl> + } ; <nl> + <nl> + template < > <nl> + struct Converter < v8 : : Handle < v8 : : Object > > { <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Object > val ) ; <nl> + static bool FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + v8 : : Handle < v8 : : Object > * out ) ; <nl> + } ; <nl> + <nl> + template < > <nl> + struct Converter < v8 : : Handle < v8 : : External > > { <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : External > val ) ; <nl> + static bool FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + v8 : : Handle < v8 : : External > * out ) ; <nl> + } ; <nl> + <nl> + template < > <nl> + struct Converter < v8 : : Handle < v8 : : Value > > { <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val ) ; <nl> + static bool FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + v8 : : Handle < v8 : : Value > * out ) ; <nl> + } ; <nl> + <nl> + template < typename T > <nl> + struct Converter < std : : vector < T > > { <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + const std : : vector < T > & val ) { <nl> + v8 : : Handle < v8 : : Array > result ( <nl> + v8 : : Array : : New ( static_cast < int > ( val . size ( ) ) ) ) ; <nl> + for ( size_t i = 0 ; i < val . size ( ) ; + + i ) { <nl> + result - > Set ( static_cast < int > ( i ) , Converter < T > : : ToV8 ( isolate , val [ i ] ) ) ; <nl> + } <nl> + return result ; <nl> + } <nl> + <nl> + static bool FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + std : : vector < T > * out ) { <nl> + if ( ! val - > IsArray ( ) ) <nl> + return false ; <nl> + <nl> + std : : vector < T > result ; <nl> + v8 : : Handle < v8 : : Array > array ( v8 : : Handle < v8 : : Array > : : Cast ( val ) ) ; <nl> + uint32_t length = array - > Length ( ) ; <nl> + for ( uint32_t i = 0 ; i < length ; + + i ) { <nl> + T item ; <nl> + if ( ! Converter < T > : : FromV8 ( isolate , array - > Get ( i ) , & item ) ) <nl> + return false ; <nl> + result . push_back ( item ) ; <nl> + } <nl> + <nl> + out - > swap ( result ) ; <nl> + return true ; <nl> + } <nl> + } ; <nl> + <nl> + / / Convenience functions that deduce T . <nl> + template < typename T > <nl> + v8 : : Handle < v8 : : Value > ConvertToV8 ( v8 : : Isolate * isolate , <nl> + T input ) { <nl> + return Converter < T > : : ToV8 ( isolate , input ) ; <nl> + } <nl> + <nl> + inline v8 : : Handle < v8 : : String > StringToV8 ( <nl> + v8 : : Isolate * isolate , <nl> + const base : : StringPiece & input ) { <nl> + return ConvertToV8 ( isolate , input ) . As < v8 : : String > ( ) ; <nl> + } <nl> + <nl> + v8 : : Handle < v8 : : String > StringToSymbol ( v8 : : Isolate * isolate , <nl> + const base : : StringPiece & val ) ; <nl> + <nl> + template < typename T > <nl> + bool ConvertFromV8 ( v8 : : Isolate * isolate , v8 : : Handle < v8 : : Value > input , <nl> + T * result ) { <nl> + return Converter < T > : : FromV8 ( isolate , input , result ) ; <nl> + } <nl> + <nl> + std : : string V8ToString ( v8 : : Handle < v8 : : Value > value ) ; <nl> + <nl> + } / / namespace mate <nl> + <nl> + # endif / / NATIVE_MATE_CONVERTER_H_ <nl> new file mode 100644 <nl> index 000000000000 . . 1504f683f0a7 <nl> mmm / dev / null <nl> ppp b / native_mate / dictionary . cc <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # include " native_mate / dictionary . h " <nl> + <nl> + namespace mate { <nl> + <nl> + Dictionary : : Dictionary ( v8 : : Isolate * isolate ) <nl> + : isolate_ ( isolate ) { <nl> + } <nl> + <nl> + Dictionary : : Dictionary ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Object > object ) <nl> + : isolate_ ( isolate ) , <nl> + object_ ( object ) { <nl> + } <nl> + <nl> + Dictionary : : ~ Dictionary ( ) { <nl> + } <nl> + <nl> + Dictionary Dictionary : : CreateEmpty ( v8 : : Isolate * isolate ) { <nl> + Dictionary dictionary ( isolate ) ; <nl> + dictionary . object_ = v8 : : Object : : New ( ) ; <nl> + return dictionary ; <nl> + } <nl> + <nl> + v8 : : Handle < v8 : : Value > Converter < Dictionary > : : ToV8 ( v8 : : Isolate * isolate , <nl> + Dictionary val ) { <nl> + return val . object_ ; <nl> + } <nl> + <nl> + bool Converter < Dictionary > : : FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + Dictionary * out ) { <nl> + if ( ! val - > IsObject ( ) ) <nl> + return false ; <nl> + * out = Dictionary ( isolate , v8 : : Handle < v8 : : Object > : : Cast ( val ) ) ; <nl> + return true ; <nl> + } <nl> + <nl> + } / / namespace mate <nl> new file mode 100644 <nl> index 000000000000 . . 469746653f40 <nl> mmm / dev / null <nl> ppp b / native_mate / dictionary . h <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # ifndef NATIVE_MATE_DICTIONARY_H_ <nl> + # define NATIVE_MATE_DICTIONARY_H_ <nl> + <nl> + # include " native_mate / converter . h " <nl> + <nl> + namespace mate { <nl> + <nl> + / / Dictionary is useful when writing bindings for a function that either <nl> + / / receives an arbitrary JavaScript object as an argument or returns an <nl> + / / arbitrary JavaScript object as a result . For example , Dictionary is useful <nl> + / / when you might use the | dictionary | type in WebIDL : <nl> + / / <nl> + / / http : / / heycam . github . io / webidl / # idl - dictionaries <nl> + / / <nl> + / / WARNING : You cannot retain a Dictionary object in the heap . The underlying <nl> + / / storage for Dictionary is tied to the closest enclosing <nl> + / / v8 : : HandleScope . Generally speaking , you should store a Dictionary <nl> + / / on the stack . <nl> + / / <nl> + class Dictionary { <nl> + public : <nl> + explicit Dictionary ( v8 : : Isolate * isolate ) ; <nl> + Dictionary ( v8 : : Isolate * isolate , v8 : : Handle < v8 : : Object > object ) ; <nl> + ~ Dictionary ( ) ; <nl> + <nl> + static Dictionary CreateEmpty ( v8 : : Isolate * isolate ) ; <nl> + <nl> + template < typename T > <nl> + bool Get ( const std : : string & key , T * out ) { <nl> + v8 : : Handle < v8 : : Value > val = object_ - > Get ( StringToV8 ( isolate_ , key ) ) ; <nl> + return ConvertFromV8 ( isolate_ , val , out ) ; <nl> + } <nl> + <nl> + template < typename T > <nl> + bool Set ( const std : : string & key , T val ) { <nl> + return object_ - > Set ( StringToV8 ( isolate_ , key ) , ConvertToV8 ( isolate_ , val ) ) ; <nl> + } <nl> + <nl> + v8 : : Isolate * isolate ( ) const { return isolate_ ; } <nl> + <nl> + private : <nl> + friend struct Converter < Dictionary > ; <nl> + <nl> + / / TODO ( aa ) : Remove this . Instead , get via FromV8 ( ) , Set ( ) , and Get ( ) . <nl> + v8 : : Isolate * isolate_ ; <nl> + v8 : : Handle < v8 : : Object > object_ ; <nl> + } ; <nl> + <nl> + template < > <nl> + struct Converter < Dictionary > { <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + Dictionary val ) ; <nl> + static bool FromV8 ( v8 : : Isolate * isolate , <nl> + v8 : : Handle < v8 : : Value > val , <nl> + Dictionary * out ) ; <nl> + } ; <nl> + <nl> + } / / namespace mate <nl> + <nl> + # endif / / NATIVE_MATE_DICTIONARY_H_ <nl> new file mode 100644 <nl> index 000000000000 . . 711c04150a40 <nl> mmm / dev / null <nl> ppp b / native_mate / function_template . cc <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # include " native_mate / function_template . h " <nl> + <nl> + namespace mate { <nl> + <nl> + namespace internal { <nl> + <nl> + CallbackHolderBase : : CallbackHolderBase ( v8 : : Isolate * isolate ) <nl> + : MATE_PERSISTENT_INIT ( isolate , v8_ref_ , v8 : : External : : New ( isolate ) ) { <nl> + MATE_PERSISTENT_SET_WEAK ( v8_ref_ , this , & CallbackHolderBase : : WeakCallback ) ; <nl> + } <nl> + <nl> + CallbackHolderBase : : ~ CallbackHolderBase ( ) { <nl> + DCHECK ( v8_ref_ . IsEmpty ( ) ) ; <nl> + } <nl> + <nl> + v8 : : Handle < v8 : : External > CallbackHolderBase : : GetHandle ( v8 : : Isolate * isolate ) { <nl> + return MATE_PERSISTENT_TO_LOCAL ( v8 : : External , isolate , v8_ref_ ) ; <nl> + } <nl> + <nl> + / / static <nl> + MATE_WEAK_CALLBACK ( CallbackHolderBase : : WeakCallback , <nl> + v8 : : External , <nl> + CallbackHolderBase ) { <nl> + MATE_WEAK_CALLBACK_INIT ( CallbackHolderBase ) ; <nl> + MATE_PERSISTENT_RESET ( self - > v8_ref_ ) ; <nl> + delete self ; <nl> + } <nl> + <nl> + } / / namespace internal <nl> + <nl> + } / / namespace mate <nl> new file mode 100644 <nl> index 000000000000 . . 2dd5ba5cc4f9 <nl> mmm / dev / null <nl> ppp b / native_mate / function_template . h <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # ifndef NATIVE_MATE_FUNCTION_TEMPLATE_H_ <nl> + # define NATIVE_MATE_FUNCTION_TEMPLATE_H_ <nl> + <nl> + # include " base / callback . h " <nl> + # include " base / logging . h " <nl> + # include " native_mate / arguments . h " <nl> + # include " native_mate / converter . h " <nl> + # include " v8 / include / v8 . h " <nl> + <nl> + namespace mate { <nl> + <nl> + class PerIsolateData ; <nl> + <nl> + enum CreateFunctionTemplateFlags { <nl> + HolderIsFirstArgument = 1 < < 0 , <nl> + } ; <nl> + <nl> + namespace internal { <nl> + <nl> + template < typename T > <nl> + struct CallbackParamTraits { <nl> + typedef T LocalType ; <nl> + } ; <nl> + template < typename T > <nl> + struct CallbackParamTraits < const T & > { <nl> + typedef T LocalType ; <nl> + } ; <nl> + template < typename T > <nl> + struct CallbackParamTraits < const T * > { <nl> + typedef T * LocalType ; <nl> + } ; <nl> + <nl> + <nl> + / / CallbackHolder and CallbackHolderBase are used to pass a base : : Callback from <nl> + / / CreateFunctionTemplate through v8 ( via v8 : : FunctionTemplate ) to <nl> + / / DispatchToCallback , where it is invoked . <nl> + <nl> + / / This simple base class is used so that we can share a single object template <nl> + / / among every CallbackHolder instance . <nl> + class CallbackHolderBase { <nl> + public : <nl> + v8 : : Handle < v8 : : External > GetHandle ( v8 : : Isolate * isolate ) ; <nl> + <nl> + protected : <nl> + explicit CallbackHolderBase ( v8 : : Isolate * isolate ) ; <nl> + virtual ~ CallbackHolderBase ( ) ; <nl> + <nl> + private : <nl> + static MATE_WEAK_CALLBACK ( WeakCallback , v8 : : External , CallbackHolderBase ) ; <nl> + <nl> + v8 : : Persistent < v8 : : External > v8_ref_ ; <nl> + <nl> + DISALLOW_COPY_AND_ASSIGN ( CallbackHolderBase ) ; <nl> + } ; <nl> + <nl> + template < typename Sig > <nl> + class CallbackHolder : public CallbackHolderBase { <nl> + public : <nl> + CallbackHolder ( v8 : : Isolate * isolate , <nl> + const base : : Callback < Sig > & callback , <nl> + int flags ) <nl> + : CallbackHolderBase ( isolate ) , callback ( callback ) , flags ( flags ) { } <nl> + base : : Callback < Sig > callback ; <nl> + int flags ; <nl> + private : <nl> + virtual ~ CallbackHolder ( ) { } <nl> + <nl> + DISALLOW_COPY_AND_ASSIGN ( CallbackHolder ) ; <nl> + } ; <nl> + <nl> + <nl> + / / This set of templates invokes a base : : Callback , converts the return type to a <nl> + / / JavaScript value , and returns that value to script via the provided <nl> + / / mate : : Arguments object . <nl> + / / <nl> + / / In C + + , you can declare the function foo ( void ) , but you can ' t pass a void <nl> + / / expression to foo . As a result , we must specialize the case of Callbacks that <nl> + / / have the void return type . <nl> + template < typename R , typename P1 = void , typename P2 = void , <nl> + typename P3 = void , typename P4 = void , typename P5 = void , <nl> + typename P6 = void > <nl> + struct Invoker { <nl> + inline static MATE_METHOD_RETURN_TYPE Go ( <nl> + Arguments & args , <nl> + const base : : Callback < R ( P1 , P2 , P3 , P4 , P5 , P6 ) > & callback , <nl> + const P1 & a1 , <nl> + const P2 & a2 , <nl> + const P3 & a3 , <nl> + const P4 & a4 , <nl> + const P5 & a5 , <nl> + const P6 & a6 ) { <nl> + MATE_METHOD_RETURN ( callback . Run ( a1 , a2 , a3 , a4 , a5 , a6 ) ) ; <nl> + } <nl> + } ; <nl> + template < typename P1 , typename P2 , typename P3 , typename P4 , typename P5 , <nl> + typename P6 > <nl> + struct Invoker < void , P1 , P2 , P3 , P4 , P5 , P6 > { <nl> + inline static MATE_METHOD_RETURN_TYPE Go ( <nl> + Arguments & args , <nl> + const base : : Callback < void ( P1 , P2 , P3 , P4 , P5 , P6 ) > & callback , <nl> + const P1 & a1 , <nl> + const P2 & a2 , <nl> + const P3 & a3 , <nl> + const P4 & a4 , <nl> + const P5 & a5 , <nl> + const P6 & a6 ) { <nl> + callback . Run ( a1 , a2 , a3 , a4 , a5 , a6 ) ; <nl> + MATE_METHOD_RETURN_UNDEFINED ( ) ; <nl> + } <nl> + } ; <nl> + <nl> + template < typename R , typename P1 , typename P2 , typename P3 , typename P4 , <nl> + typename P5 > <nl> + struct Invoker < R , P1 , P2 , P3 , P4 , P5 , void > { <nl> + inline static MATE_METHOD_RETURN_TYPE Go ( <nl> + Arguments & args , <nl> + const base : : Callback < R ( P1 , P2 , P3 , P4 , P5 ) > & callback , <nl> + const P1 & a1 , <nl> + const P2 & a2 , <nl> + const P3 & a3 , <nl> + const P4 & a4 , <nl> + const P5 & a5 ) { <nl> + MATE_METHOD_RETURN ( callback . Run ( a1 , a2 , a3 , a4 , a5 ) ) ; <nl> + } <nl> + } ; <nl> + template < typename P1 , typename P2 , typename P3 , typename P4 , typename P5 > <nl> + struct Invoker < void , P1 , P2 , P3 , P4 , P5 , void > { <nl> + inline static MATE_METHOD_RETURN_TYPE Go ( <nl> + Arguments & args , <nl> + const base : : Callback < void ( P1 , P2 , P3 , P4 , P5 ) > & callback , <nl> + const P1 & a1 , <nl> + const P2 & a2 , <nl> + const P3 & a3 , <nl> + const P4 & a4 , <nl> + const P5 & a5 ) { <nl> + callback . Run ( a1 , a2 , a3 , a4 , a5 ) ; <nl> + MATE_METHOD_RETURN_UNDEFINED ( ) ; <nl> + } <nl> + } ; <nl> + <nl> + template < typename R , typename P1 , typename P2 , typename P3 , typename P4 > <nl> + struct Invoker < R , P1 , P2 , P3 , P4 , void , void > { <nl> + inline static MATE_METHOD_RETURN_TYPE Go ( <nl> + Arguments & args , <nl> + const base : : Callback < R ( P1 , P2 , P3 , P4 ) > & callback , <nl> + const P1 & a1 , <nl> + const P2 & a2 , <nl> + const P3 & a3 , <nl> + const P4 & a4 ) { <nl> + MATE_METHOD_RETURN ( callback . Run ( a1 , a2 , a3 , a4 ) ) ; <nl> + } <nl> + } ; <nl> + template < typename P1 , typename P2 , typename P3 , typename P4 > <nl> + struct Invoker < void , P1 , P2 , P3 , P4 , void , void > { <nl> + inline static MATE_METHOD_RETURN_TYPE Go ( <nl> + Arguments & args , <nl> + const base : : Callback < void ( P1 , P2 , P3 , P4 ) > & callback , <nl> + const P1 & a1 , <nl> + const P2 & a2 , <nl> + const P3 & a3 , <nl> + const P4 & a4 ) { <nl> + callback . Run ( a1 , a2 , a3 , a4 ) ; <nl> + MATE_METHOD_RETURN_UNDEFINED ( ) ; <nl> + } <nl> + } ; <nl> + <nl> + template < typename R , typename P1 , typename P2 , typename P3 > <nl> + struct Invoker < R , P1 , P2 , P3 , void , void , void > { <nl> + inline static MATE_METHOD_RETURN_TYPE Go ( <nl> + Arguments & args , <nl> + const base : : Callback < R ( P1 , P2 , P3 ) > & callback , <nl> + const P1 & a1 , <nl> + const P2 & a2 , <nl> + const P3 & a3 ) { <nl> + MATE_METHOD_RETURN ( callback . Run ( a1 , a2 , a3 ) ) ; <nl> + } <nl> + } ; <nl> + template < typename P1 , typename P2 , typename P3 > <nl> + struct Invoker < void , P1 , P2 , P3 , void , void , void > { <nl> + inline static MATE_METHOD_RETURN_TYPE Go ( <nl> + Arguments & args , <nl> + const base : : Callback < void ( P1 , P2 , P3 ) > & callback , <nl> + const P1 & a1 , <nl> + const P2 & a2 , <nl> + const P3 & a3 ) { <nl> + callback . Run ( a1 , a2 , a3 ) ; <nl> + MATE_METHOD_RETURN_UNDEFINED ( ) ; <nl> + } <nl> + } ; <nl> + <nl> + template < typename R , typename P1 , typename P2 > <nl> + struct Invoker < R , P1 , P2 , void , void , void , void > { <nl> + inline static MATE_METHOD_RETURN_TYPE Go ( <nl> + Arguments & args , <nl> + const base : : Callback < R ( P1 , P2 ) > & callback , <nl> + const P1 & a1 , <nl> + const P2 & a2 ) { <nl> + MATE_METHOD_RETURN ( callback . Run ( a1 , a2 ) ) ; <nl> + } <nl> + } ; <nl> + template < typename P1 , typename P2 > <nl> + struct Invoker < void , P1 , P2 , void , void , void , void > { <nl> + inline static MATE_METHOD_RETURN_TYPE Go ( <nl> + Arguments & args , <nl> + const base : : Callback < void ( P1 , P2 ) > & callback , <nl> + const P1 & a1 , <nl> + const P2 & a2 ) { <nl> + callback . Run ( a1 , a2 ) ; <nl> + MATE_METHOD_RETURN_UNDEFINED ( ) ; <nl> + } <nl> + } ; <nl> + <nl> + template < typename R , typename P1 > <nl> + struct Invoker < R , P1 , void , void , void , void , void > { <nl> + inline static MATE_METHOD_RETURN_TYPE Go ( <nl> + Arguments & args , <nl> + const base : : Callback < R ( P1 ) > & callback , <nl> + const P1 & a1 ) { <nl> + MATE_METHOD_RETURN ( callback . Run ( a1 ) ) ; <nl> + } <nl> + } ; <nl> + template < typename P1 > <nl> + struct Invoker < void , P1 , void , void , void , void , void > { <nl> + inline static MATE_METHOD_RETURN_TYPE Go ( <nl> + Arguments & args , <nl> + const base : : Callback < void ( P1 ) > & callback , <nl> + const P1 & a1 ) { <nl> + MATE_METHOD_RETURN ( callback . Run ( a1 ) ) ; <nl> + } <nl> + } ; <nl> + <nl> + template < typename R > <nl> + struct Invoker < R , void , void , void , void , void , void > { <nl> + inline static MATE_METHOD_RETURN_TYPE Go ( <nl> + Arguments & args , <nl> + const base : : Callback < R ( ) > & callback ) { <nl> + MATE_METHOD_RETURN ( callback . Run ( ) ) ; <nl> + } <nl> + } ; <nl> + template < > <nl> + struct Invoker < void , void , void , void , void , void , void > { <nl> + inline static MATE_METHOD_RETURN_TYPE Go ( <nl> + Arguments & args , <nl> + const base : : Callback < void ( ) > & callback ) { <nl> + callback . Run ( ) ; <nl> + MATE_METHOD_RETURN_UNDEFINED ( ) ; <nl> + } <nl> + } ; <nl> + <nl> + <nl> + template < typename T > <nl> + bool GetNextArgument ( Arguments * args , int create_flags , bool is_first , <nl> + T * result ) { <nl> + if ( is_first & & ( create_flags & HolderIsFirstArgument ) ! = 0 ) { <nl> + return args - > GetHolder ( result ) ; <nl> + } else { <nl> + return args - > GetNext ( result ) ; <nl> + } <nl> + } <nl> + <nl> + / / For advanced use cases , we allow callers to request the unparsed Arguments <nl> + / / object and poke around in it directly . <nl> + inline bool GetNextArgument ( Arguments * args , int create_flags , bool is_first , <nl> + Arguments * result ) { <nl> + * result = * args ; <nl> + return true ; <nl> + } <nl> + inline bool GetNextArgument ( Arguments * args , int create_flags , bool is_first , <nl> + Arguments * * result ) { <nl> + * result = args ; <nl> + return true ; <nl> + } <nl> + <nl> + / / It ' s common for clients to just need the isolate , so we make that easy . <nl> + inline bool GetNextArgument ( Arguments * args , int create_flags , <nl> + bool is_first , v8 : : Isolate * * result ) { <nl> + * result = args - > isolate ( ) ; <nl> + return true ; <nl> + } <nl> + <nl> + <nl> + / / DispatchToCallback converts all the JavaScript arguments to C + + types and <nl> + / / invokes the base : : Callback . <nl> + template < typename Sig > <nl> + struct Dispatcher { <nl> + } ; <nl> + <nl> + template < typename R > <nl> + struct Dispatcher < R ( ) > { <nl> + static MATE_METHOD ( DispatchToCallback ) { <nl> + Arguments args ( info ) ; <nl> + v8 : : Handle < v8 : : External > v8_holder ; <nl> + CHECK ( args . GetData ( & v8_holder ) ) ; <nl> + CallbackHolderBase * holder_base = reinterpret_cast < CallbackHolderBase * > ( <nl> + v8_holder - > Value ( ) ) ; <nl> + <nl> + typedef CallbackHolder < R ( ) > HolderT ; <nl> + HolderT * holder = static_cast < HolderT * > ( holder_base ) ; <nl> + <nl> + return Invoker < R > : : Go ( args , holder - > callback ) ; <nl> + } <nl> + } ; <nl> + <nl> + template < typename R , typename P1 > <nl> + struct Dispatcher < R ( P1 ) > { <nl> + static MATE_METHOD ( DispatchToCallback ) { <nl> + Arguments args ( info ) ; <nl> + v8 : : Handle < v8 : : External > v8_holder ; <nl> + CHECK ( args . GetData ( & v8_holder ) ) ; <nl> + CallbackHolderBase * holder_base = reinterpret_cast < CallbackHolderBase * > ( <nl> + v8_holder - > Value ( ) ) ; <nl> + <nl> + typedef CallbackHolder < R ( P1 ) > HolderT ; <nl> + HolderT * holder = static_cast < HolderT * > ( holder_base ) ; <nl> + <nl> + typename CallbackParamTraits < P1 > : : LocalType a1 ; <nl> + if ( ! GetNextArgument ( args , holder - > flags , true , & a1 ) ) { <nl> + args . ThrowError ( ) ; <nl> + MATE_METHOD_RETURN_UNDEFINED ( ) ; <nl> + } <nl> + <nl> + return Invoker < R , P1 > : : Go ( args , holder - > callback , a1 ) ; <nl> + } <nl> + } ; <nl> + <nl> + template < typename R , typename P1 , typename P2 > <nl> + struct Dispatcher < R ( P1 , P2 ) > { <nl> + static MATE_METHOD ( DispatchToCallback ) { <nl> + Arguments args ( info ) ; <nl> + v8 : : Handle < v8 : : External > v8_holder ; <nl> + CHECK ( args . GetData ( & v8_holder ) ) ; <nl> + CallbackHolderBase * holder_base = reinterpret_cast < CallbackHolderBase * > ( <nl> + v8_holder - > Value ( ) ) ; <nl> + <nl> + typedef CallbackHolder < R ( P1 , P2 ) > HolderT ; <nl> + HolderT * holder = static_cast < HolderT * > ( holder_base ) ; <nl> + <nl> + typename CallbackParamTraits < P1 > : : LocalType a1 ; <nl> + typename CallbackParamTraits < P2 > : : LocalType a2 ; <nl> + if ( ! GetNextArgument ( args , holder - > flags , true , & a1 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a2 ) ) { <nl> + args . ThrowError ( ) ; <nl> + MATE_METHOD_RETURN_UNDEFINED ( ) ; <nl> + } <nl> + <nl> + return Invoker < R , P1 , P2 > : : Go ( args , holder - > callback , a1 , a2 ) ; <nl> + } <nl> + } ; <nl> + <nl> + template < typename R , typename P1 , typename P2 , typename P3 > <nl> + struct Dispatcher < R ( P1 , P2 , P3 ) > { <nl> + static MATE_METHOD ( DispatchToCallback ) { <nl> + Arguments args ( info ) ; <nl> + v8 : : Handle < v8 : : External > v8_holder ; <nl> + CHECK ( args . GetData ( & v8_holder ) ) ; <nl> + CallbackHolderBase * holder_base = reinterpret_cast < CallbackHolderBase * > ( <nl> + v8_holder - > Value ( ) ) ; <nl> + <nl> + typedef CallbackHolder < R ( P1 , P2 , P3 ) > HolderT ; <nl> + HolderT * holder = static_cast < HolderT * > ( holder_base ) ; <nl> + <nl> + typename CallbackParamTraits < P1 > : : LocalType a1 ; <nl> + typename CallbackParamTraits < P2 > : : LocalType a2 ; <nl> + typename CallbackParamTraits < P3 > : : LocalType a3 ; <nl> + if ( ! GetNextArgument ( args , holder - > flags , true , & a1 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a2 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a3 ) ) { <nl> + args . ThrowError ( ) ; <nl> + MATE_METHOD_RETURN_UNDEFINED ( ) ; <nl> + } <nl> + <nl> + return Invoker < R , P1 , P2 , P3 > : : Go ( args , holder - > callback , a1 , a2 , a3 ) ; <nl> + } <nl> + } ; <nl> + <nl> + template < typename R , typename P1 , typename P2 , typename P3 , typename P4 > <nl> + struct Dispatcher < R ( P1 , P2 , P3 , P4 ) > { <nl> + static MATE_METHOD ( DispatchToCallback ) { <nl> + Arguments args ( info ) ; <nl> + v8 : : Handle < v8 : : External > v8_holder ; <nl> + CHECK ( args . GetData ( & v8_holder ) ) ; <nl> + CallbackHolderBase * holder_base = reinterpret_cast < CallbackHolderBase * > ( <nl> + v8_holder - > Value ( ) ) ; <nl> + <nl> + typedef CallbackHolder < R ( P1 , P2 , P3 , P4 ) > HolderT ; <nl> + HolderT * holder = static_cast < HolderT * > ( holder_base ) ; <nl> + <nl> + typename CallbackParamTraits < P1 > : : LocalType a1 ; <nl> + typename CallbackParamTraits < P2 > : : LocalType a2 ; <nl> + typename CallbackParamTraits < P3 > : : LocalType a3 ; <nl> + typename CallbackParamTraits < P4 > : : LocalType a4 ; <nl> + if ( ! GetNextArgument ( args , holder - > flags , true , & a1 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a2 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a3 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a4 ) ) { <nl> + args . ThrowError ( ) ; <nl> + MATE_METHOD_RETURN_UNDEFINED ( ) ; <nl> + } <nl> + <nl> + return Invoker < R , P1 , P2 , P3 , P4 > : : Go ( args , holder - > callback , a1 , a2 , a3 , <nl> + a4 ) ; <nl> + } <nl> + } ; <nl> + <nl> + template < typename R , typename P1 , typename P2 , typename P3 , typename P4 , <nl> + typename P5 > <nl> + struct Dispatcher < R ( P1 , P2 , P3 , P4 , P5 ) > { <nl> + static MATE_METHOD ( DispatchToCallback ) { <nl> + Arguments args ( info ) ; <nl> + v8 : : Handle < v8 : : External > v8_holder ; <nl> + CHECK ( args . GetData ( & v8_holder ) ) ; <nl> + CallbackHolderBase * holder_base = reinterpret_cast < CallbackHolderBase * > ( <nl> + v8_holder - > Value ( ) ) ; <nl> + <nl> + typedef CallbackHolder < R ( P1 , P2 , P3 , P4 , P5 ) > HolderT ; <nl> + HolderT * holder = static_cast < HolderT * > ( holder_base ) ; <nl> + <nl> + typename CallbackParamTraits < P1 > : : LocalType a1 ; <nl> + typename CallbackParamTraits < P2 > : : LocalType a2 ; <nl> + typename CallbackParamTraits < P3 > : : LocalType a3 ; <nl> + typename CallbackParamTraits < P4 > : : LocalType a4 ; <nl> + typename CallbackParamTraits < P5 > : : LocalType a5 ; <nl> + if ( ! GetNextArgument ( args , holder - > flags , true , & a1 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a2 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a3 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a4 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a5 ) ) { <nl> + args . ThrowError ( ) ; <nl> + MATE_METHOD_RETURN_UNDEFINED ( ) ; <nl> + } <nl> + <nl> + return Invoker < R , P1 , P2 , P3 , P4 , P5 > : : Go ( args , holder - > callback , a1 , a2 , <nl> + a3 , a4 , a5 ) ; <nl> + } <nl> + } ; <nl> + <nl> + template < typename R , typename P1 , typename P2 , typename P3 , typename P4 , <nl> + typename P5 , typename P6 > <nl> + struct Dispatcher < R ( P1 , P2 , P3 , P4 , P5 , P6 ) > { <nl> + static MATE_METHOD ( DispatchToCallback ) { <nl> + Arguments args ( info ) ; <nl> + v8 : : Handle < v8 : : External > v8_holder ; <nl> + CHECK ( args . GetData ( & v8_holder ) ) ; <nl> + CallbackHolderBase * holder_base = reinterpret_cast < CallbackHolderBase * > ( <nl> + v8_holder - > Value ( ) ) ; <nl> + <nl> + typedef CallbackHolder < R ( P1 , P2 , P3 , P4 , P5 , P6 ) > HolderT ; <nl> + HolderT * holder = static_cast < HolderT * > ( holder_base ) ; <nl> + <nl> + typename CallbackParamTraits < P1 > : : LocalType a1 ; <nl> + typename CallbackParamTraits < P2 > : : LocalType a2 ; <nl> + typename CallbackParamTraits < P3 > : : LocalType a3 ; <nl> + typename CallbackParamTraits < P4 > : : LocalType a4 ; <nl> + typename CallbackParamTraits < P5 > : : LocalType a5 ; <nl> + typename CallbackParamTraits < P6 > : : LocalType a6 ; <nl> + if ( ! GetNextArgument ( args , holder - > flags , true , & a1 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a2 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a3 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a4 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a5 ) | | <nl> + ! GetNextArgument ( args , holder - > flags , false , & a6 ) ) { <nl> + args . ThrowError ( ) ; <nl> + MATE_METHOD_RETURN_UNDEFINED ( ) ; <nl> + } <nl> + <nl> + return Invoker < R , P1 , P2 , P3 , P4 , P5 , P6 > : : Go ( args , holder - > callback , a1 , <nl> + a2 , a3 , a4 , a5 , a6 ) ; <nl> + } <nl> + } ; <nl> + <nl> + } / / namespace internal <nl> + <nl> + <nl> + / / CreateFunctionTemplate creates a v8 : : FunctionTemplate that will create <nl> + / / JavaScript functions that execute a provided C + + function or base : : Callback . <nl> + / / JavaScript arguments are automatically converted via mate : : Converter , as is <nl> + / / the return value of the C + + function , if any . <nl> + template < typename Sig > <nl> + v8 : : Local < v8 : : FunctionTemplate > CreateFunctionTemplate ( <nl> + v8 : : Isolate * isolate , const base : : Callback < Sig > callback , <nl> + int callback_flags = 0 ) { <nl> + typedef internal : : CallbackHolder < Sig > HolderT ; <nl> + HolderT * holder = new HolderT ( isolate , callback , callback_flags ) ; <nl> + <nl> + return v8 : : FunctionTemplate : : New ( <nl> + isolate , <nl> + & internal : : Dispatcher < Sig > : : DispatchToCallback , <nl> + ConvertToV8 < v8 : : Handle < v8 : : External > > ( isolate , <nl> + holder - > GetHandle ( isolate ) ) ) ; <nl> + } <nl> + <nl> + } / / namespace mate <nl> + <nl> + # endif / / NATIVE_MATE_FUNCTION_TEMPLATE_H_ <nl> new file mode 100644 <nl> index 000000000000 . . f81b9d12509b <nl> mmm / dev / null <nl> ppp b / native_mate / handle . h <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # ifndef NATIVE_MATE_HANDLE_H_ <nl> + # define NATIVE_MATE_HANDLE_H_ <nl> + <nl> + # include " native_mate / converter . h " <nl> + <nl> + namespace mate { <nl> + <nl> + / / You can use mate : : Handle on the stack to retain a mate : : Wrappable object . <nl> + / / Currently we don ' t have a mechanism for retaining a mate : : Wrappable object <nl> + / / in the C + + heap because strong references from C + + to V8 can cause memory <nl> + / / leaks . <nl> + template < typename T > <nl> + class Handle { <nl> + public : <nl> + Handle ( ) : object_ ( NULL ) { } <nl> + <nl> + Handle ( v8 : : Handle < v8 : : Value > wrapper , T * object ) <nl> + : wrapper_ ( wrapper ) , <nl> + object_ ( object ) { <nl> + } <nl> + <nl> + bool IsEmpty ( ) const { return ! object_ ; } <nl> + <nl> + void Clear ( ) { <nl> + wrapper_ . Clear ( ) ; <nl> + object_ = NULL ; <nl> + } <nl> + <nl> + T * operator - > ( ) const { return object_ ; } <nl> + v8 : : Handle < v8 : : Value > ToV8 ( ) const { return wrapper_ ; } <nl> + T * get ( ) const { return object_ ; } <nl> + <nl> + private : <nl> + v8 : : Handle < v8 : : Value > wrapper_ ; <nl> + T * object_ ; <nl> + } ; <nl> + <nl> + template < typename T > <nl> + struct Converter < mate : : Handle < T > > { <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , <nl> + const mate : : Handle < T > & val ) { <nl> + return val . ToV8 ( ) ; <nl> + } <nl> + static bool FromV8 ( v8 : : Isolate * isolate , v8 : : Handle < v8 : : Value > val , <nl> + mate : : Handle < T > * out ) { <nl> + T * object = NULL ; <nl> + if ( ! Converter < T * > : : FromV8 ( isolate , val , & object ) ) { <nl> + return false ; <nl> + } <nl> + * out = mate : : Handle < T > ( val , object ) ; <nl> + return true ; <nl> + } <nl> + } ; <nl> + <nl> + / / This function is a convenient way to create a handle from a raw pointer <nl> + / / without having to write out the type of the object explicitly . <nl> + template < typename T > <nl> + mate : : Handle < T > CreateHandle ( v8 : : Isolate * isolate , T * object ) { <nl> + return mate : : Handle < T > ( object - > GetWrapper ( isolate ) , object ) ; <nl> + } <nl> + <nl> + } / / namespace mate <nl> + <nl> + # endif / / NATIVE_MATE_HANDLE_H_ <nl> new file mode 100644 <nl> index 000000000000 . . a8022158fb67 <nl> mmm / dev / null <nl> ppp b / native_mate / object_template_builder . cc <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # include " native_mate / object_template_builder . h " <nl> + <nl> + namespace mate { <nl> + <nl> + ObjectTemplateBuilder : : ObjectTemplateBuilder ( v8 : : Isolate * isolate ) <nl> + : isolate_ ( isolate ) , template_ ( v8 : : ObjectTemplate : : New ( ) ) { <nl> + template_ - > SetInternalFieldCount ( 1 ) ; <nl> + } <nl> + <nl> + ObjectTemplateBuilder : : ~ ObjectTemplateBuilder ( ) { <nl> + } <nl> + <nl> + ObjectTemplateBuilder & ObjectTemplateBuilder : : SetImpl ( <nl> + const base : : StringPiece & name , v8 : : Handle < v8 : : Data > val ) { <nl> + template_ - > Set ( StringToSymbol ( isolate_ , name ) , val ) ; <nl> + return * this ; <nl> + } <nl> + <nl> + ObjectTemplateBuilder & ObjectTemplateBuilder : : SetPropertyImpl ( <nl> + const base : : StringPiece & name , v8 : : Handle < v8 : : FunctionTemplate > getter , <nl> + v8 : : Handle < v8 : : FunctionTemplate > setter ) { <nl> + # if NODE_VERSION_AT_LEAST ( 0 , 11 , 0 ) <nl> + template_ - > SetAccessorProperty ( StringToSymbol ( isolate_ , name ) , getter , <nl> + setter ) ; <nl> + # endif <nl> + return * this ; <nl> + } <nl> + <nl> + v8 : : Local < v8 : : ObjectTemplate > ObjectTemplateBuilder : : Build ( ) { <nl> + v8 : : Local < v8 : : ObjectTemplate > result = template_ ; <nl> + template_ . Clear ( ) ; <nl> + return result ; <nl> + } <nl> + <nl> + } / / namespace mate <nl> new file mode 100644 <nl> index 000000000000 . . a0fad1569b51 <nl> mmm / dev / null <nl> ppp b / native_mate / object_template_builder . h <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # ifndef NATIVE_MATE_OBJECT_TEMPLATE_BUILDER_H_ <nl> + # define NATIVE_MATE_OBJECT_TEMPLATE_BUILDER_H_ <nl> + <nl> + # include " base / bind . h " <nl> + # include " base / callback . h " <nl> + # include " base / strings / string_piece . h " <nl> + # include " base / template_util . h " <nl> + # include " native_mate / converter . h " <nl> + # include " native_mate / function_template . h " <nl> + # include " v8 / include / v8 . h " <nl> + <nl> + namespace mate { <nl> + <nl> + namespace { <nl> + <nl> + / / Base template - used only for non - member function pointers . Other types <nl> + / / either go to one of the below specializations , or go here and fail to compile <nl> + / / because of base : : Bind ( ) . <nl> + template < typename T , typename Enable = void > <nl> + struct CallbackTraits { <nl> + static v8 : : Handle < v8 : : FunctionTemplate > CreateTemplate ( v8 : : Isolate * isolate , <nl> + T callback ) { <nl> + return CreateFunctionTemplate ( isolate , base : : Bind ( callback ) ) ; <nl> + } <nl> + } ; <nl> + <nl> + / / Specialization for base : : Callback . <nl> + template < typename T > <nl> + struct CallbackTraits < base : : Callback < T > > { <nl> + static v8 : : Handle < v8 : : FunctionTemplate > CreateTemplate ( <nl> + v8 : : Isolate * isolate , const base : : Callback < T > & callback ) { <nl> + return CreateFunctionTemplate ( isolate , callback ) ; <nl> + } <nl> + } ; <nl> + <nl> + / / Specialization for member function pointers . We need to handle this case <nl> + / / specially because the first parameter for callbacks to MFP should typically <nl> + / / come from the the JavaScript " this " object the function was called on , not <nl> + / / from the first normal parameter . <nl> + template < typename T > <nl> + struct CallbackTraits < T , typename base : : enable_if < <nl> + base : : is_member_function_pointer < T > : : value > : : type > { <nl> + static v8 : : Handle < v8 : : FunctionTemplate > CreateTemplate ( v8 : : Isolate * isolate , <nl> + T callback ) { <nl> + return CreateFunctionTemplate ( isolate , base : : Bind ( callback ) , <nl> + HolderIsFirstArgument ) ; <nl> + } <nl> + } ; <nl> + <nl> + / / This specialization allows people to construct function templates directly if <nl> + / / they need to do fancier stuff . <nl> + template < > <nl> + struct CallbackTraits < v8 : : Handle < v8 : : FunctionTemplate > > { <nl> + static v8 : : Handle < v8 : : FunctionTemplate > CreateTemplate ( <nl> + v8 : : Handle < v8 : : FunctionTemplate > templ ) { <nl> + return templ ; <nl> + } <nl> + } ; <nl> + <nl> + } / / namespace <nl> + <nl> + <nl> + / / ObjectTemplateBuilder provides a handy interface to creating <nl> + / / v8 : : ObjectTemplate instances with various sorts of properties . <nl> + class ObjectTemplateBuilder { <nl> + public : <nl> + explicit ObjectTemplateBuilder ( v8 : : Isolate * isolate ) ; <nl> + ~ ObjectTemplateBuilder ( ) ; <nl> + <nl> + / / It ' s against Google C + + style to return a non - const ref , but we take some <nl> + / / poetic license here in order that all calls to Set ( ) can be via the ' . ' <nl> + / / operator and line up nicely . <nl> + template < typename T > <nl> + ObjectTemplateBuilder & SetValue ( const base : : StringPiece & name , T val ) { <nl> + return SetImpl ( name , ConvertToV8 ( isolate_ , val ) ) ; <nl> + } <nl> + <nl> + / / In the following methods , T and U can be function pointer , member function <nl> + / / pointer , base : : Callback , or v8 : : FunctionTemplate . Most clients will want to <nl> + / / use one of the first two options . Also see mate : : CreateFunctionTemplate ( ) <nl> + / / for creating raw function templates . <nl> + template < typename T > <nl> + ObjectTemplateBuilder & SetMethod ( const base : : StringPiece & name , <nl> + const T & callback ) { <nl> + return SetImpl ( name , CallbackTraits < T > : : CreateTemplate ( isolate_ , callback ) ) ; <nl> + } <nl> + template < typename T > <nl> + ObjectTemplateBuilder & SetProperty ( const base : : StringPiece & name , <nl> + const T & getter ) { <nl> + return SetPropertyImpl ( name , <nl> + CallbackTraits < T > : : CreateTemplate ( isolate_ , getter ) , <nl> + v8 : : Local < v8 : : FunctionTemplate > ( ) ) ; <nl> + } <nl> + template < typename T , typename U > <nl> + ObjectTemplateBuilder & SetProperty ( const base : : StringPiece & name , <nl> + const T & getter , const U & setter ) { <nl> + return SetPropertyImpl ( name , <nl> + CallbackTraits < T > : : CreateTemplate ( isolate_ , getter ) , <nl> + CallbackTraits < U > : : CreateTemplate ( isolate_ , setter ) ) ; <nl> + } <nl> + <nl> + v8 : : Local < v8 : : ObjectTemplate > Build ( ) ; <nl> + <nl> + private : <nl> + ObjectTemplateBuilder & SetImpl ( const base : : StringPiece & name , <nl> + v8 : : Handle < v8 : : Data > val ) ; <nl> + ObjectTemplateBuilder & SetPropertyImpl ( <nl> + const base : : StringPiece & name , v8 : : Handle < v8 : : FunctionTemplate > getter , <nl> + v8 : : Handle < v8 : : FunctionTemplate > setter ) ; <nl> + <nl> + v8 : : Isolate * isolate_ ; <nl> + <nl> + / / ObjectTemplateBuilder should only be used on the stack . <nl> + v8 : : Local < v8 : : ObjectTemplate > template_ ; <nl> + } ; <nl> + <nl> + } / / namespace mate <nl> + <nl> + # endif / / NATIVE_MATE_OBJECT_TEMPLATE_BUILDER_H_ <nl> new file mode 100644 <nl> index 000000000000 . . c1705676c282 <nl> mmm / dev / null <nl> ppp b / native_mate / scoped_persistent . h <nl> <nl> + / / Copyright 2014 Cheng Zhao . All rights reserved . <nl> + / / Use of this source code is governed by MIT license that can be found in the <nl> + / / LICENSE file . <nl> + <nl> + # ifndef NATIVE_MATE_SCOPED_PERSISTENT_H_ <nl> + # define NATIVE_MATE_SCOPED_PERSISTENT_H_ <nl> + <nl> + # include " base / memory / ref_counted . h " <nl> + # include " v8 / include / v8 . h " <nl> + <nl> + namespace mate { <nl> + <nl> + / / A v8 : : Persistent handle to a V8 value which destroys and clears the <nl> + / / underlying handle on destruction . <nl> + template < typename T > <nl> + class ScopedPersistent { <nl> + public : <nl> + ScopedPersistent ( ) { <nl> + } <nl> + <nl> + explicit ScopedPersistent ( v8 : : Handle < T > handle ) { <nl> + reset ( handle ) ; <nl> + } <nl> + <nl> + ~ ScopedPersistent ( ) { <nl> + reset ( ) ; <nl> + } <nl> + <nl> + void reset ( v8 : : Handle < T > handle ) { <nl> + if ( ! handle . IsEmpty ( ) ) <nl> + handle_ . Reset ( GetIsolate ( handle ) , handle ) ; <nl> + else <nl> + reset ( ) ; <nl> + } <nl> + <nl> + void reset ( ) { <nl> + handle_ . Reset ( ) ; <nl> + } <nl> + <nl> + bool IsEmpty ( ) const { <nl> + return handle_ . IsEmpty ( ) ; <nl> + } <nl> + <nl> + v8 : : Handle < T > NewHandle ( ) const { <nl> + if ( handle_ . IsEmpty ( ) ) <nl> + return v8 : : Local < T > ( ) ; <nl> + return v8 : : Local < T > : : New ( GetIsolate ( handle_ ) , handle_ ) ; <nl> + } <nl> + <nl> + v8 : : Handle < T > NewHandle ( v8 : : Isolate * isolate ) const { <nl> + if ( handle_ . IsEmpty ( ) ) <nl> + return v8 : : Local < T > ( ) ; <nl> + return v8 : : Local < T > : : New ( isolate , handle_ ) ; <nl> + } <nl> + <nl> + template < typename P > <nl> + void MakeWeak ( P * parameters , <nl> + typename v8 : : WeakReferenceCallbacks < T , P > : : Revivable callback ) { <nl> + handle_ . MakeWeak ( parameters , callback ) ; <nl> + } <nl> + <nl> + private : <nl> + template < typename U > <nl> + static v8 : : Isolate * GetIsolate ( v8 : : Handle < U > object_handle ) { <nl> + / / Only works for v8 : : Object and its subclasses . Add specialisations for <nl> + / / anything else . <nl> + if ( ! object_handle . IsEmpty ( ) ) <nl> + return GetIsolate ( object_handle - > CreationContext ( ) ) ; <nl> + return v8 : : Isolate : : GetCurrent ( ) ; <nl> + } <nl> + static v8 : : Isolate * GetIsolate ( v8 : : Handle < v8 : : Context > context_handle ) { <nl> + if ( ! context_handle . IsEmpty ( ) ) <nl> + return context_handle - > GetIsolate ( ) ; <nl> + return v8 : : Isolate : : GetCurrent ( ) ; <nl> + } <nl> + static v8 : : Isolate * GetIsolate ( <nl> + v8 : : Handle < v8 : : ObjectTemplate > template_handle ) { <nl> + return v8 : : Isolate : : GetCurrent ( ) ; <nl> + } <nl> + template < typename U > <nl> + static v8 : : Isolate * GetIsolate ( const U & any_handle ) { <nl> + return v8 : : Isolate : : GetCurrent ( ) ; <nl> + } <nl> + <nl> + v8 : : Persistent < T > handle_ ; <nl> + <nl> + DISALLOW_COPY_AND_ASSIGN ( ScopedPersistent ) ; <nl> + } ; <nl> + <nl> + template < typename T > <nl> + class RefCountedPersistent : public ScopedPersistent < T > , <nl> + public base : : RefCounted < RefCountedPersistent < T > > { <nl> + public : <nl> + RefCountedPersistent ( ) { } <nl> + <nl> + explicit RefCountedPersistent ( v8 : : Handle < T > handle ) <nl> + : ScopedPersistent < T > ( handle ) { <nl> + } <nl> + <nl> + protected : <nl> + friend class base : : RefCounted < RefCountedPersistent < T > > ; <nl> + <nl> + ~ RefCountedPersistent ( ) { } <nl> + <nl> + private : <nl> + DISALLOW_COPY_AND_ASSIGN ( RefCountedPersistent ) ; <nl> + } ; <nl> + <nl> + } / / namespace mate <nl> + <nl> + # endif / / NATIVE_MATE_SCOPED_PERSISTENT_H_ <nl> new file mode 100644 <nl> index 000000000000 . . c3efd3cddd4a <nl> mmm / dev / null <nl> ppp b / native_mate / try_catch . cc <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # include " native_mate / try_catch . h " <nl> + <nl> + # include < sstream > <nl> + <nl> + # include " native_mate / converter . h " <nl> + <nl> + namespace mate { <nl> + <nl> + TryCatch : : TryCatch ( ) { <nl> + } <nl> + <nl> + TryCatch : : ~ TryCatch ( ) { <nl> + } <nl> + <nl> + bool TryCatch : : HasCaught ( ) { <nl> + return try_catch_ . HasCaught ( ) ; <nl> + } <nl> + <nl> + std : : string TryCatch : : GetStackTrace ( ) { <nl> + if ( ! HasCaught ( ) ) { <nl> + return " " ; <nl> + } <nl> + <nl> + std : : stringstream ss ; <nl> + v8 : : Handle < v8 : : Message > message = try_catch_ . Message ( ) ; <nl> + ss < < V8ToString ( message - > Get ( ) ) < < std : : endl <nl> + < < V8ToString ( message - > GetSourceLine ( ) ) < < std : : endl ; <nl> + <nl> + v8 : : Handle < v8 : : StackTrace > trace = message - > GetStackTrace ( ) ; <nl> + if ( trace . IsEmpty ( ) ) <nl> + return ss . str ( ) ; <nl> + <nl> + int len = trace - > GetFrameCount ( ) ; <nl> + for ( int i = 0 ; i < len ; + + i ) { <nl> + v8 : : Handle < v8 : : StackFrame > frame = trace - > GetFrame ( i ) ; <nl> + ss < < V8ToString ( frame - > GetScriptName ( ) ) < < " : " <nl> + < < frame - > GetLineNumber ( ) < < " : " <nl> + < < frame - > GetColumn ( ) < < " : " <nl> + < < V8ToString ( frame - > GetFunctionName ( ) ) <nl> + < < std : : endl ; <nl> + } <nl> + return ss . str ( ) ; <nl> + } <nl> + <nl> + } / / namespace mate <nl> new file mode 100644 <nl> index 000000000000 . . 3b3ece873605 <nl> mmm / dev / null <nl> ppp b / native_mate / try_catch . h <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # ifndef NATIVE_MATE_TRY_CATCH_H_ <nl> + # define NATIVE_MATE_TRY_CATCH_H_ <nl> + <nl> + # include < string > <nl> + <nl> + # include " base / basictypes . h " <nl> + # include " v8 / include / v8 . h " <nl> + <nl> + namespace mate { <nl> + <nl> + / / TryCatch is a convenient wrapper around v8 : : TryCatch . <nl> + class TryCatch { <nl> + public : <nl> + TryCatch ( ) ; <nl> + ~ TryCatch ( ) ; <nl> + <nl> + bool HasCaught ( ) ; <nl> + std : : string GetStackTrace ( ) ; <nl> + <nl> + private : <nl> + v8 : : TryCatch try_catch_ ; <nl> + <nl> + DISALLOW_COPY_AND_ASSIGN ( TryCatch ) ; <nl> + } ; <nl> + <nl> + } / / namespace mate <nl> + <nl> + # endif / / NATIVE_MATE_TRY_CATCH_H_ <nl> new file mode 100644 <nl> index 000000000000 . . 77bd721ad2f8 <nl> mmm / dev / null <nl> ppp b / native_mate / wrappable . cc <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # include " native_mate / wrappable . h " <nl> + <nl> + # include " base / logging . h " <nl> + # include " native_mate / object_template_builder . h " <nl> + <nl> + namespace mate { <nl> + <nl> + Wrappable : : Wrappable ( ) { <nl> + } <nl> + <nl> + Wrappable : : ~ Wrappable ( ) { <nl> + MATE_PERSISTENT_RESET ( wrapper_ ) ; <nl> + } <nl> + <nl> + ObjectTemplateBuilder Wrappable : : GetObjectTemplateBuilder ( <nl> + v8 : : Isolate * isolate ) { <nl> + return ObjectTemplateBuilder ( isolate ) ; <nl> + } <nl> + <nl> + / / static <nl> + MATE_WEAK_CALLBACK ( Wrappable : : WeakCallback , v8 : : Object , Wrappable ) { <nl> + MATE_WEAK_CALLBACK_INIT ( Wrappable ) ; <nl> + MATE_PERSISTENT_RESET ( self - > wrapper_ ) ; <nl> + delete self ; <nl> + } <nl> + <nl> + v8 : : Handle < v8 : : Object > Wrappable : : GetWrapper ( v8 : : Isolate * isolate ) { <nl> + if ( ! wrapper_ . IsEmpty ( ) ) { <nl> + return MATE_PERSISTENT_TO_LOCAL ( v8 : : Object , isolate , wrapper_ ) ; <nl> + } <nl> + <nl> + v8 : : Local < v8 : : ObjectTemplate > templ = <nl> + GetObjectTemplateBuilder ( isolate ) . Build ( ) ; <nl> + CHECK ( ! templ . IsEmpty ( ) ) ; <nl> + CHECK_EQ ( 1 , templ - > InternalFieldCount ( ) ) ; <nl> + v8 : : Handle < v8 : : Object > wrapper = templ - > NewInstance ( ) ; <nl> + MATE_SET_INTERNAL_FIELD_POINTER ( wrapper , 0 , this ) ; <nl> + MATE_PERSISTENT_ASSIGN ( v8 : : Object , isolate , wrapper_ , wrapper ) ; <nl> + MATE_PERSISTENT_SET_WEAK ( wrapper_ , this , WeakCallback ) ; <nl> + return wrapper ; <nl> + } <nl> + <nl> + namespace internal { <nl> + <nl> + void * FromV8Impl ( v8 : : Isolate * isolate , v8 : : Handle < v8 : : Value > val ) { <nl> + if ( ! val - > IsObject ( ) ) <nl> + return NULL ; <nl> + v8 : : Handle < v8 : : Object > obj = v8 : : Handle < v8 : : Object > : : Cast ( val ) ; <nl> + return MATE_GET_INTERNAL_FIELD_POINTER ( obj , 0 ) ; <nl> + } <nl> + <nl> + } / / namespace internal <nl> + <nl> + } / / namespace mate <nl> new file mode 100644 <nl> index 000000000000 . . 949a9ebebd9b <nl> mmm / dev / null <nl> ppp b / native_mate / wrappable . h <nl> <nl> + / / Copyright 2013 The Chromium Authors . All rights reserved . <nl> + / / Use of this source code is governed by a BSD - style license that can be <nl> + / / found in the LICENSE . chromium file . <nl> + <nl> + # ifndef NATIVE_MATE_WRAPPABLE_H_ <nl> + # define NATIVE_MATE_WRAPPABLE_H_ <nl> + <nl> + # include " base / template_util . h " <nl> + # include " native_mate / compat . h " <nl> + # include " native_mate / converter . h " <nl> + <nl> + namespace mate { <nl> + <nl> + namespace internal { <nl> + <nl> + void * FromV8Impl ( v8 : : Isolate * isolate , v8 : : Handle < v8 : : Value > val ) ; <nl> + <nl> + } / / namespace internal <nl> + <nl> + <nl> + / / Wrappable is a base class for C + + objects that have corresponding v8 wrapper <nl> + / / objects . To retain a Wrappable object on the stack , use a mate : : Handle . <nl> + / / <nl> + / / USAGE : <nl> + / / / / my_class . h <nl> + / / class MyClass : Wrappable { <nl> + / / public : <nl> + / / / / Optional , only required if non - empty template should be used . <nl> + / / virtual mate : : ObjectTemplateBuilder GetObjectTemplateBuilder ( <nl> + / / v8 : : Isolate * isolate ) ; <nl> + / / . . . <nl> + / / } ; <nl> + / / <nl> + / / mate : : ObjectTemplateBuilder MyClass : : GetObjectTemplateBuilder ( <nl> + / / v8 : : Isolate * isolate ) { <nl> + / / return Wrappable : : GetObjectTemplateBuilder ( isolate ) . SetValue ( " foobar " , 42 ) ; <nl> + / / } <nl> + / / <nl> + / / Subclasses should also typically have private constructors and expose a <nl> + / / static Create function that returns a mate : : Handle . Forcing creators through <nl> + / / this static Create function will enforce that clients actually create a <nl> + / / wrapper for the object . If clients fail to create a wrapper for a wrappable <nl> + / / object , the object will leak because we use the weak callback from the <nl> + / / wrapper as the signal to delete the wrapped object . <nl> + class ObjectTemplateBuilder ; <nl> + <nl> + / / Non - template base class to share code between templates instances . <nl> + class Wrappable { <nl> + public : <nl> + / / Retrieve ( or create ) the v8 wrapper object cooresponding to this object . <nl> + v8 : : Handle < v8 : : Object > GetWrapper ( v8 : : Isolate * isolate ) ; <nl> + <nl> + protected : <nl> + Wrappable ( ) ; <nl> + virtual ~ Wrappable ( ) ; <nl> + <nl> + virtual ObjectTemplateBuilder GetObjectTemplateBuilder ( v8 : : Isolate * isolate ) ; <nl> + <nl> + private : <nl> + static MATE_WEAK_CALLBACK ( WeakCallback , v8 : : Object , Wrappable ) ; <nl> + <nl> + v8 : : Persistent < v8 : : Object > wrapper_ ; / / Weak <nl> + <nl> + DISALLOW_COPY_AND_ASSIGN ( Wrappable ) ; <nl> + } ; <nl> + <nl> + <nl> + / / This converter handles any subclass of Wrappable . <nl> + template < typename T > <nl> + struct Converter < T * , typename base : : enable_if < <nl> + base : : is_convertible < T * , Wrappable * > : : value > : : type > { <nl> + static v8 : : Handle < v8 : : Value > ToV8 ( v8 : : Isolate * isolate , T * val ) { <nl> + return val - > GetWrapper ( isolate ) ; <nl> + } <nl> + <nl> + static bool FromV8 ( v8 : : Isolate * isolate , v8 : : Handle < v8 : : Value > val , T * * out ) { <nl> + * out = static_cast < T * > ( static_cast < Wrappable * > ( <nl> + internal : : FromV8Impl ( isolate , val ) ) ) ; <nl> + return * out ! = NULL ; <nl> + } <nl> + } ; <nl> + <nl> + } / / namespace mate <nl> + <nl> + # endif / / NATIVE_MATE_WRAPPABLE_H_ <nl> new file mode 100644 <nl> index 000000000000 . . 1496ab4f91e3 <nl> mmm / dev / null <nl> ppp b / native_mate_files . gypi <nl> <nl> + { <nl> + ' variables ' : { <nl> + ' native_mate_files ' : [ <nl> + ' native_mate / arguments . cc ' , <nl> + ' native_mate / arguments . h ' , <nl> + ' native_mate / compat . h ' , <nl> + ' native_mate / converter . cc ' , <nl> + ' native_mate / converter . h ' , <nl> + ' native_mate / dictionary . cc ' , <nl> + ' native_mate / dictionary . h ' , <nl> + ' native_mate / function_template . cc ' , <nl> + ' native_mate / function_template . h ' , <nl> + ' native_mate / handle . h ' , <nl> + ' native_mate / object_template_builder . cc ' , <nl> + ' native_mate / object_template_builder . h ' , <nl> + ' native_mate / scoped_persistent . h ' , <nl> + ' native_mate / try_catch . cc ' , <nl> + ' native_mate / try_catch . h ' , <nl> + ' native_mate / wrappable . cc ' , <nl> + ' native_mate / wrappable . h ' , <nl> + ] , <nl> + } , <nl> + } <nl>
Initial commit .
electron/electron
ff65b7dae1f56ea5f3e1b84e9740f301fdf508a0
2014-04-15T03:04:36Z
mmm a / tensorflow / python / keras / callbacks . py <nl> ppp b / tensorflow / python / keras / callbacks . py <nl> <nl> from __future__ import print_function <nl> <nl> import collections <nl> + import collections . abc as collections_abc <nl> import copy <nl> import csv <nl> import io <nl> def handle_value ( k ) : <nl> is_zero_dim_ndarray = isinstance ( k , np . ndarray ) and k . ndim = = 0 <nl> if isinstance ( k , six . string_types ) : <nl> return k <nl> - elif isinstance ( k , collections . Iterable ) and not is_zero_dim_ndarray : <nl> + elif isinstance ( k , collections_abc . Iterable ) and not is_zero_dim_ndarray : <nl> return ' " [ % s ] " ' % ( ' , ' . join ( map ( str , k ) ) ) <nl> else : <nl> return k <nl> mmm a / tensorflow / python / keras / engine / training . py <nl> ppp b / tensorflow / python / keras / engine / training . py <nl> def fit ( self , <nl> form of datasets , generators , or ` keras . utils . Sequence ` instances <nl> ( since they generate batches ) . <nl> validation_freq : Only relevant if validation data is provided . Integer <nl> - or ` collections . Container ` instance ( e . g . list , tuple , etc . ) . <nl> + or ` collections . abc . Container ` instance ( e . g . list , tuple , etc . ) . <nl> If an integer , specifies how many training epochs to run before a <nl> new validation run is performed , e . g . ` validation_freq = 2 ` runs <nl> validation every 2 epochs . If a Container , specifies the epochs on <nl> mmm a / tensorflow / python / keras / engine / training_arrays_v1 . py <nl> ppp b / tensorflow / python / keras / engine / training_arrays_v1 . py <nl> def model_iteration ( model , <nl> validation from data tensors ) . Ignored with the default value of <nl> ` None ` . <nl> validation_freq : Only relevant if validation data is provided . Integer or <nl> - ` collections . Container ` instance ( e . g . list , tuple , etc . ) . If an <nl> + ` collections . abc . Container ` instance ( e . g . list , tuple , etc . ) . If an <nl> integer , specifies how many training epochs to run before a new <nl> validation run is performed , e . g . ` validation_freq = 2 ` runs <nl> validation every 2 epochs . If a Container , specifies the epochs on <nl> mmm a / tensorflow / python / keras / engine / training_utils_v1 . py <nl> ppp b / tensorflow / python / keras / engine / training_utils_v1 . py <nl> <nl> import abc <nl> import atexit <nl> import collections <nl> + import collections . abc as collections_abc <nl> import functools <nl> import multiprocessing . pool <nl> import threading <nl> def standardize_sample_or_class_weights ( x_weight , output_names , weight_type ) : <nl> ' You should provide one ` ' + weight_type + ' ` ' <nl> ' array per model output . ' ) <nl> return x_weight <nl> - if isinstance ( x_weight , collections . Mapping ) : <nl> + if isinstance ( x_weight , collections_abc . Mapping ) : <nl> generic_utils . check_for_unexpected_keys ( weight_type , x_weight , output_names ) <nl> x_weights = [ ] <nl> for name in output_names : <nl> def collect_per_output_metric_info ( metrics , <nl> [ metrics_module . clone_metric ( m ) for m in metrics ] ) <nl> else : <nl> nested_metrics = [ metrics ] <nl> - elif isinstance ( metrics , collections . Mapping ) : <nl> + elif isinstance ( metrics , collections_abc . Mapping ) : <nl> generic_utils . check_for_unexpected_keys ( ' metrics ' , metrics , output_names ) <nl> nested_metrics = [ ] <nl> for name in output_names : <nl> def get_loss_function ( loss ) : <nl> ' before passing them to Model . compile . ' . format ( loss ) ) <nl> <nl> # Deserialize loss configuration , if needed . <nl> - if isinstance ( loss , collections . Mapping ) : <nl> + if isinstance ( loss , collections_abc . Mapping ) : <nl> loss = losses . get ( loss ) <nl> <nl> # Custom callable class . <nl> def prepare_sample_weight_modes ( training_endpoints , sample_weight_mode ) : <nl> ValueError : In case of invalid ` sample_weight_mode ` input . <nl> " " " <nl> <nl> - if isinstance ( sample_weight_mode , collections . Mapping ) : <nl> + if isinstance ( sample_weight_mode , collections_abc . Mapping ) : <nl> generic_utils . check_for_unexpected_keys ( <nl> ' sample_weight_mode ' , sample_weight_mode , <nl> [ e . output_name for e in training_endpoints ] ) <nl> def prepare_loss_functions ( loss , output_names ) : <nl> ValueError : If loss is a dict with keys not in model output names , <nl> or if loss is a list with len not equal to model outputs . <nl> " " " <nl> - if isinstance ( loss , collections . Mapping ) : <nl> + if isinstance ( loss , collections_abc . Mapping ) : <nl> generic_utils . check_for_unexpected_keys ( ' loss ' , loss , output_names ) <nl> loss_functions = [ ] <nl> for name in output_names : <nl> def prepare_loss_functions ( loss , output_names ) : <nl> loss_functions . append ( get_loss_function ( loss . get ( name , None ) ) ) <nl> elif isinstance ( loss , six . string_types ) : <nl> loss_functions = [ get_loss_function ( loss ) for _ in output_names ] <nl> - elif isinstance ( loss , collections . Sequence ) : <nl> + elif isinstance ( loss , collections_abc . Sequence ) : <nl> if len ( loss ) ! = len ( output_names ) : <nl> raise ValueError ( ' When passing a list as loss , it should have one entry ' <nl> ' per model outputs . The model has { } outputs , but you ' <nl> def prepare_loss_weights ( training_endpoints , loss_weights = None ) : <nl> if loss_weights is None : <nl> for e in training_endpoints : <nl> e . loss_weight = 1 . <nl> - elif isinstance ( loss_weights , collections . Mapping ) : <nl> + elif isinstance ( loss_weights , collections_abc . Mapping ) : <nl> generic_utils . check_for_unexpected_keys ( <nl> ' loss_weights ' , loss_weights , <nl> [ e . output_name for e in training_endpoints ] ) <nl> def should_run_validation ( validation_freq , epoch ) : <nl> raise ValueError ( ' ` validation_freq ` can not be less than 1 . ' ) <nl> return one_indexed_epoch % validation_freq = = 0 <nl> <nl> - if not isinstance ( validation_freq , collections . Container ) : <nl> + if not isinstance ( validation_freq , collections_abc . Container ) : <nl> raise ValueError ( ' ` validation_freq ` must be an Integer or ' <nl> - ' ` collections . Container ` ( e . g . list , tuple , etc . ) ' ) <nl> + ' ` collections . abc . Container ` ( e . g . list , tuple , etc . ) ' ) <nl> return one_indexed_epoch in validation_freq <nl> <nl> <nl> mmm a / tensorflow / python / keras / engine / training_v1 . py <nl> ppp b / tensorflow / python / keras / engine / training_v1 . py <nl> <nl> from __future__ import print_function <nl> <nl> import collections <nl> + import collections . abc as collections_abc <nl> import warnings <nl> <nl> import numpy as np <nl> def fit ( self , <nl> the dataset at each epoch . This ensures that the same validation <nl> samples are used every time . <nl> validation_freq : Only relevant if validation data is provided . Integer <nl> - or ` collections . Container ` instance ( e . g . list , tuple , etc . ) . <nl> + or ` collections . abc . Container ` instance ( e . g . list , tuple , etc . ) . <nl> If an integer , specifies how many training epochs to run before a <nl> new validation run is performed , e . g . ` validation_freq = 2 ` runs <nl> validation every 2 epochs . If a Container , specifies the epochs on <nl> def predict_on_batch ( self , x ) : <nl> # at this point . <nl> if self . run_eagerly or self . _distribution_strategy : <nl> inputs = training_utils_v1 . cast_if_floating_dtype ( inputs ) <nl> - if isinstance ( inputs , collections . Sequence ) : <nl> + if isinstance ( inputs , collections_abc . Sequence ) : <nl> # Unwrap lists with only one input , as we do when training on batch <nl> if len ( inputs ) = = 1 : <nl> inputs = inputs [ 0 ] <nl> mmm a / tensorflow / python / keras / keras_parameterized . py <nl> ppp b / tensorflow / python / keras / keras_parameterized . py <nl> <nl> from __future__ import division <nl> from __future__ import print_function <nl> <nl> - import collections <nl> + import collections . abc as collections_abc <nl> import functools <nl> import itertools <nl> import unittest <nl> def _test_or_class_decorator ( test_or_class , single_method_decorator ) : <nl> The decorated result . <nl> " " " <nl> def _decorate_test_or_class ( obj ) : <nl> - if isinstance ( obj , collections . Iterable ) : <nl> + if isinstance ( obj , collections_abc . Iterable ) : <nl> return itertools . chain . from_iterable ( <nl> single_method_decorator ( method ) for method in obj ) <nl> if isinstance ( obj , type ) : <nl> mmm a / tensorflow / python / keras / layers / preprocessing / preprocessing_test_utils . py <nl> ppp b / tensorflow / python / keras / layers / preprocessing / preprocessing_test_utils . py <nl> <nl> from __future__ import division <nl> from __future__ import print_function <nl> <nl> - import collections <nl> + import collections . abc as collections_abc <nl> import numpy as np <nl> <nl> from tensorflow . python . platform import test <nl> def assertAllCloseOrEqual ( self , a , b , msg = None ) : <nl> self . assertEqual ( len ( a ) , len ( b ) ) <nl> for a_value , b_value in zip ( a , b ) : <nl> self . assertAllCloseOrEqual ( a_value , b_value , msg = msg ) <nl> - elif isinstance ( a , collections . Mapping ) : <nl> + elif isinstance ( a , collections_abc . Mapping ) : <nl> self . assertEqual ( len ( a ) , len ( b ) ) <nl> for key , a_value in a . items ( ) : <nl> b_value = b [ key ] <nl> mmm a / tensorflow / python / keras / layers / recurrent . py <nl> ppp b / tensorflow / python / keras / layers / recurrent . py <nl> <nl> from __future__ import division <nl> from __future__ import print_function <nl> <nl> - import collections <nl> + import collections . abc as collections_abc <nl> import warnings <nl> <nl> import numpy as np <nl> <nl> from tensorflow . python . training . tracking import base as trackable <nl> from tensorflow . python . training . tracking import data_structures <nl> from tensorflow . python . util import nest <nl> + from tensorflow . python . util . compat import collections_abc <nl> from tensorflow . python . util . tf_export import keras_export <nl> from tensorflow . tools . docs import doc_controls <nl> <nl> def _process_inputs ( self , inputs , initial_state , constants ) : <nl> # input shape : ` ( samples , time ( padded with zeros ) , input_dim ) ` <nl> # note that the . build ( ) method of subclasses MUST define <nl> # self . input_spec and self . state_spec with complete input shapes . <nl> - if ( isinstance ( inputs , collections . Sequence ) <nl> + if ( isinstance ( inputs , collections_abc . Sequence ) <nl> and not isinstance ( inputs , tuple ) ) : <nl> # get initial_state from full input spec <nl> # as they could be copied to multiple GPU . <nl> mmm a / tensorflow / python / keras / saving / saved_model / json_utils . py <nl> ppp b / tensorflow / python / keras / saving / saved_model / json_utils . py <nl> <nl> from __future__ import division <nl> from __future__ import print_function <nl> <nl> - import collections <nl> + import collections . abc as collections_abc <nl> import json <nl> import numpy as np <nl> import wrapt <nl> def get_json_type ( obj ) : <nl> if isinstance ( obj , dtypes . DType ) : <nl> return obj . name <nl> <nl> - if isinstance ( obj , collections . Mapping ) : <nl> + if isinstance ( obj , collections_abc . Mapping ) : <nl> return dict ( obj ) <nl> <nl> if obj is Ellipsis : <nl> mmm a / tensorflow / python / keras / saving / saving_utils . py <nl> ppp b / tensorflow / python / keras / saving / saving_utils . py <nl> <nl> from __future__ import division <nl> from __future__ import print_function <nl> <nl> - import collections <nl> + import collections . abc as collections_abc <nl> import copy <nl> import os <nl> import six <nl> def model_input_signature ( model , keep_original_batch_size = False ) : <nl> input_specs = _enforce_names_consistency ( input_specs ) <nl> # Return a list with a single element as the model ' s input signature . <nl> if isinstance ( input_specs , <nl> - collections . Sequence ) and len ( input_specs ) = = 1 : <nl> + collections_abc . Sequence ) and len ( input_specs ) = = 1 : <nl> # Note that the isinstance check filters out single - element dictionaries , <nl> # which should also be wrapped as a single - element list . <nl> return input_specs <nl>
Update keras to use collections . abc instead of collections , which will be deprecated in py3 . 9
tensorflow/tensorflow
9278b9421f64a2103d18a67d825a9b6be243e211
2020-10-29T03:17:49Z
mmm a / src / jsregexp . h <nl> ppp b / src / jsregexp . h <nl> struct NodeInfo { <nl> } ; <nl> <nl> <nl> - STATIC_CHECK ( sizeof ( NodeInfo ) < = sizeof ( int ) ) ; / / NOLINT <nl> - <nl> - <nl> class SiblingList { <nl> public : <nl> SiblingList ( ) : list_ ( NULL ) { } <nl>
Fixed build on windows . Msvc is an idiot .
v8/v8
319fddf6afe336d75a0e10c64bd14532a3330bd1
2008-11-27T12:10:16Z
mmm a / dlib / test / matrix3 . cpp <nl> ppp b / dlib / test / matrix3 . cpp <nl> namespace <nl> logger dlog ( " test . matrix3 " ) ; <nl> <nl> <nl> - const double eps_mul = 500000 ; <nl> + const double eps_mul = 200 ; <nl> <nl> template < typename T , typename U > <nl> void check_equal ( <nl> namespace <nl> for ( long c = 0 ; c < a . nc ( ) ; + + c ) <nl> { <nl> type error = std : : abs ( a ( r , c ) - b ( r , c ) ) ; <nl> - DLIB_CASSERT ( error < std : : numeric_limits < type > : : epsilon ( ) * eps_mul , " error : " < < error < < <nl> - " eps : " < < std : : numeric_limits < type > : : epsilon ( ) * eps_mul ) ; <nl> + DLIB_CASSERT ( error < std : : sqrt ( std : : numeric_limits < type > : : epsilon ( ) ) * eps_mul , " error : " < < error < < <nl> + " eps : " < < std : : sqrt ( std : : numeric_limits < type > : : epsilon ( ) ) * eps_mul ) ; <nl> } <nl> } <nl> } <nl> namespace <nl> for ( long c = 0 ; c < a . nc ( ) ; + + c ) <nl> { <nl> typename type : : value_type error = std : : abs ( a ( r , c ) - b ( r , c ) ) ; <nl> - DLIB_CASSERT ( error < std : : numeric_limits < typename type : : value_type > : : epsilon ( ) * eps_mul , " error : " < < error < < <nl> - " eps : " < < std : : numeric_limits < typename type : : value_type > : : epsilon ( ) * eps_mul ) ; <nl> + DLIB_CASSERT ( error < std : : sqrt ( std : : numeric_limits < typename type : : value_type > : : epsilon ( ) ) * eps_mul , " error : " < < error < < <nl> + " eps : " < < std : : sqrt ( std : : numeric_limits < typename type : : value_type > : : epsilon ( ) ) * eps_mul ) ; <nl> } <nl> } <nl> } <nl> namespace <nl> c_check_equal ( tmp ( c_temp + conj ( c_rv4 ) * c_cv4 ) , c_temp + conj ( c_rv4 ) * c_cv4 ) ; <nl> c_check_equal ( tmp ( c_temp + trans ( conj ( c_cv4 ) ) * trans ( c_rv4 ) ) , c_temp + trans ( conj ( c_cv4 ) ) * trans ( c_rv4 ) ) ; <nl> <nl> - DLIB_CASSERT ( abs ( ( static_cast < complex < type > > ( c_rv4 * c_cv4 ) + i ) - ( ( c_rv4 * c_cv4 ) ( 0 ) + i ) ) < std : : numeric_limits < type > : : epsilon ( ) * eps_mul , " " ) ; <nl> - DLIB_CASSERT ( abs ( ( rv4 * cv4 + 1 . 0 ) - ( ( rv4 * cv4 ) ( 0 ) + 1 . 0 ) ) < std : : numeric_limits < type > : : epsilon ( ) * eps_mul , " " ) ; <nl> + DLIB_CASSERT ( abs ( ( static_cast < complex < type > > ( c_rv4 * c_cv4 ) + i ) - ( ( c_rv4 * c_cv4 ) ( 0 ) + i ) ) < std : : sqrt ( std : : numeric_limits < type > : : epsilon ( ) ) * eps_mul , " " ) ; <nl> + DLIB_CASSERT ( abs ( ( rv4 * cv4 + 1 . 0 ) - ( ( rv4 * cv4 ) ( 0 ) + 1 . 0 ) ) < std : : sqrt ( std : : numeric_limits < type > : : epsilon ( ) ) * eps_mul , " " ) ; <nl> <nl> } <nl> } <nl>
Adjusted the epsilon to avoid false positives .
davisking/dlib
cdec5820705f6bc33f4b8d788a014cea5a26a52d
2009-02-08T19:30:19Z
mmm a / src / compiler / expression / expression . cpp <nl> ppp b / src / compiler / expression / expression . cpp <nl> void Expression : : preOutputStash ( CodeGenerator & cg , AnalysisResultPtr ar , <nl> m_context = save ; <nl> <nl> cg_printf ( " ) ) ; \ n " ) ; <nl> - if ( ( isLvalue | | hasContext ( DeepReference ) ) & & constRef ) { <nl> + if ( ( isLvalue | | hasContext ( DeepReference ) | | hasContext ( UnsetContext ) ) & & <nl> + constRef ) { <nl> dstType - > outputCPPDecl ( cg , ar , getScope ( ) ) ; <nl> cg_printf ( " & % s_lv = const_cast < " , t . c_str ( ) ) ; <nl> dstType - > outputCPPDecl ( cg , ar , getScope ( ) ) ; <nl> mmm a / src / compiler / expression / object_method_expression . cpp <nl> ppp b / src / compiler / expression / object_method_expression . cpp <nl> void ObjectMethodExpression : : outputCPPObject ( CodeGenerator & cg , <nl> if ( ! isThis ) { <nl> TypePtr t = m_object - > getType ( ) ; <nl> bool ok = ! t | | t - > is ( Type : : KindOfObject ) | | t - > is ( Type : : KindOfVariant ) ; <nl> - if ( ! ok ) cg_printf ( " CVarRef ( " ) ; <nl> + if ( ! ok ) cg_printf ( " VarNR ( " ) ; <nl> m_object - > outputCPP ( cg , ar ) ; <nl> if ( ! ok ) cg_printf ( " ) " ) ; <nl> if ( ! ok | | ! t | | ! t - > is ( Type : : KindOfObject ) ) { <nl> mmm a / src / compiler / expression / object_property_expression . cpp <nl> ppp b / src / compiler / expression / object_property_expression . cpp <nl> TypePtr ObjectPropertyExpression : : inferTypes ( AnalysisResultPtr ar , <nl> m_valid = false ; <nl> <nl> ConstructPtr self = shared_from_this ( ) ; <nl> - TypePtr objectType = m_object - > inferAndCheck ( ar , Type : : Object , false ) ; <nl> + TypePtr objectType = m_object - > inferAndCheck ( ar , Type : : Some , false ) ; <nl> <nl> if ( ! m_property - > is ( Expression : : KindOfScalarExpression ) ) { <nl> m_property - > inferAndCheck ( ar , Type : : String , false ) ; <nl> void ObjectPropertyExpression : : outputPHP ( CodeGenerator & cg , <nl> } <nl> } <nl> <nl> - bool ObjectPropertyExpression : : directVariantProxy ( AnalysisResultPtr ar ) { <nl> - TypePtr actualType = m_object - > getActualType ( ) ; <nl> - if ( actualType & & actualType - > is ( Type : : KindOfVariant ) ) { <nl> - if ( m_object - > is ( KindOfSimpleVariable ) ) { <nl> - SimpleVariablePtr var = <nl> - dynamic_pointer_cast < SimpleVariable > ( m_object ) ; <nl> - const std : : string & name = var - > getName ( ) ; <nl> - FunctionScopePtr func = getFunctionScope ( ) ; <nl> - VariableTablePtr variables = func - > getVariables ( ) ; <nl> - if ( ! variables - > isParameter ( name ) | | variables - > isLvalParam ( name ) ) { <nl> - return true ; <nl> - } <nl> - if ( variables - > getAttribute ( VariableTable : : ContainsDynamicVariable ) | | <nl> - variables - > getAttribute ( VariableTable : : ContainsExtract ) ) { <nl> - return true ; <nl> - } <nl> - } else { <nl> - return true ; <nl> - } <nl> - } <nl> - return false ; <nl> - } <nl> - <nl> void ObjectPropertyExpression : : preOutputStash ( CodeGenerator & cg , <nl> AnalysisResultPtr ar , <nl> int state ) { <nl> bool ObjectPropertyExpression : : preOutputCPP ( CodeGenerator & cg , <nl> <nl> void ObjectPropertyExpression : : outputCPPImpl ( CodeGenerator & cg , <nl> AnalysisResultPtr ar ) { <nl> - outputCPPObjProperty ( cg , ar , directVariantProxy ( ar ) , false ) ; <nl> + outputCPPObjProperty ( cg , ar , false ) ; <nl> } <nl> <nl> void ObjectPropertyExpression : : outputCPPObjProperty ( CodeGenerator & cg , <nl> AnalysisResultPtr ar , <nl> - bool directVariant , <nl> int doExist ) { <nl> string func = Option : : ObjectPrefix ; <nl> const char * error = " , true " ; <nl> std : : string context = " " ; <nl> + bool doUnset = m_context & LValue & & m_context & UnsetContext ; <nl> <nl> if ( cg . getOutput ( ) ! = CodeGenerator : : SystemCPP ) { <nl> context = originalClassName ( cg , true ) ; <nl> } <nl> - if ( doExist ) { <nl> + if ( doUnset ) { <nl> + func = " o_unset " ; <nl> + error = " " ; <nl> + } else if ( doExist ) { <nl> func = doExist > 0 ? " o_isset " : " o_empty " ; <nl> error = " " ; <nl> } else { <nl> void ObjectPropertyExpression : : outputCPPObjProperty ( CodeGenerator & cg , <nl> func + = " argval " ; <nl> } else if ( m_context & ( LValue | RefValue | UnsetContext ) ) { <nl> if ( m_context & UnsetContext ) { <nl> - assert ( ! ( m_context & LValue ) ) ; / / call outputCPPUnset instead <nl> + assert ( ! ( m_context & LValue ) ) ; / / handled by doUnset <nl> func + = " unsetLval " ; <nl> } else { <nl> func + = " lval " ; <nl> void ObjectPropertyExpression : : outputCPPObjProperty ( CodeGenerator & cg , <nl> } <nl> <nl> if ( m_valid & & doExist ) cg_printf ( doExist > 0 ? " isset ( " : " empty ( " ) ; <nl> - outputCPPObject ( cg , ar , directVariant ) ; <nl> - if ( m_valid ) { <nl> + bool flag = outputCPPObject ( cg , ar , doUnset | | ( ! m_valid & & doExist ) ) ; <nl> + if ( flag ) { <nl> + cg_printf ( " id ( " ) ; <nl> + outputCPPProperty ( cg , ar ) ; <nl> + cg_printf ( " ) " ) ; <nl> + if ( doExist ) cg_printf ( " , % s " , doExist > 0 ? " false " : " true " ) ; <nl> + cg_printf ( " ) " ) ; <nl> + } else if ( ! doUnset & & m_valid ) { <nl> assert ( m_object - > getType ( ) - > isSpecificObject ( ) ) ; <nl> ScalarExpressionPtr name = <nl> dynamic_pointer_cast < ScalarExpression > ( m_property ) ; <nl> void ObjectPropertyExpression : : outputCPPObjProperty ( CodeGenerator & cg , <nl> } <nl> } <nl> <nl> - void ObjectPropertyExpression : : outputCPPObject ( CodeGenerator & cg , <nl> + bool ObjectPropertyExpression : : outputCPPObject ( CodeGenerator & cg , <nl> AnalysisResultPtr ar , <nl> - int directVariant ) { <nl> - if ( directVariant < 0 ) { <nl> - directVariant = directVariantProxy ( ar ) ; <nl> - } <nl> - <nl> - bool bThis = m_object - > isThis ( ) ; <nl> - bool useGetThis = false ; <nl> - if ( bThis ) { <nl> - FunctionScopePtr funcScope = getFunctionScope ( ) ; <nl> - if ( funcScope & & funcScope - > isStatic ( ) ) { <nl> - cg_printf ( " GET_THIS_ARROW ( ) " ) ; <nl> - } else { <nl> - / / in order for __set ( ) and __get ( ) to be called <nl> - useGetThis = true ; <nl> + bool noEvalOnError ) { <nl> + if ( m_object - > isThis ( ) ) { <nl> + if ( m_valid ) { <nl> + if ( ! m_object - > getOriginalScope ( ) ) { <nl> + m_valid = false ; <nl> + } else { <nl> + FunctionScopeRawPtr fs = m_object - > getFunctionScope ( ) ; <nl> + if ( ! fs | | fs - > isStatic ( ) ) { <nl> + m_valid = false ; <nl> + } <nl> + } <nl> } <nl> - } <nl> - if ( m_valid ) { <nl> - if ( ! bThis ) { <nl> - ASSERT ( ! directVariant ) ; <nl> - m_object - > outputCPP ( cg , ar ) ; <nl> - cg_printf ( " - > " ) ; <nl> + if ( ! m_valid ) { <nl> + cg_printf ( " GET_THIS_DOT ( ) " ) ; <nl> } <nl> + } else if ( m_valid ) { <nl> + m_object - > outputCPP ( cg , ar ) ; <nl> + cg_printf ( " - > " ) ; <nl> } else { <nl> - if ( ! bThis ) { <nl> - if ( directVariant ) { <nl> - TypePtr expectedType = m_object - > getExpectedType ( ) ; <nl> - ASSERT ( expectedType - > is ( Type : : KindOfObject ) ) ; <nl> - / / Clear m_expectedType to avoid type cast ( toObject ) . <nl> - m_object - > setExpectedType ( TypePtr ( ) ) ; <nl> - m_object - > outputCPP ( cg , ar ) ; <nl> - m_object - > setExpectedType ( expectedType ) ; <nl> - } else { <nl> - m_object - > outputCPP ( cg , ar ) ; <nl> + TypePtr t = m_object - > getType ( ) ; <nl> + bool ok = t & & ( t - > is ( Type : : KindOfObject ) | | t - > is ( Type : : KindOfVariant ) ) ; <nl> + if ( noEvalOnError & & ! ok ) { <nl> + if ( ! t | | ! t - > is ( Type : : KindOfArray ) ) { <nl> + cg_printf ( " ( " ) ; <nl> + if ( m_object - > outputCPPUnneeded ( cg , ar ) ) cg_printf ( " , " ) ; <nl> + return true ; <nl> } <nl> - cg_printf ( " . " ) ; <nl> - } else { <nl> - if ( useGetThis ) cg_printf ( " GET_THIS_DOT ( ) " ) ; <nl> } <nl> + ok = ok | | ! t ; <nl> + if ( ! ok ) cg_printf ( " VarNR ( " ) ; <nl> + m_object - > outputCPP ( cg , ar ) ; <nl> + if ( ! ok ) cg_printf ( " ) " ) ; <nl> + cg_printf ( " . " ) ; <nl> } <nl> + return false ; <nl> } <nl> <nl> void ObjectPropertyExpression : : outputCPPProperty ( CodeGenerator & cg , <nl> void ObjectPropertyExpression : : outputCPPProperty ( CodeGenerator & cg , <nl> void ObjectPropertyExpression : : outputCPPExistTest ( CodeGenerator & cg , <nl> AnalysisResultPtr ar , <nl> int op ) { <nl> - outputCPPObjProperty ( cg , ar , false , op = = T_ISSET ? 1 : - 1 ) ; <nl> + outputCPPObjProperty ( cg , ar , op = = T_ISSET ? 1 : - 1 ) ; <nl> } <nl> <nl> void ObjectPropertyExpression : : outputCPPUnset ( CodeGenerator & cg , <nl> AnalysisResultPtr ar ) { <nl> - bool bThis = m_object - > isThis ( ) ; <nl> - if ( bThis ) { <nl> - cg . printf ( " GET_THIS_ARROW ( ) " ) ; <nl> - } else { <nl> - m_object - > outputCPP ( cg , ar ) ; <nl> - cg_printf ( " - > " ) ; <nl> - } <nl> - cg_printf ( " o_unset ( " ) ; <nl> - outputCPPProperty ( cg , ar ) ; <nl> - cg_printf ( " ) " ) ; <nl> + outputCPPObjProperty ( cg , ar , 0 ) ; <nl> } <nl> mmm a / src / compiler / expression / object_property_expression . h <nl> ppp b / src / compiler / expression / object_property_expression . h <nl> class ObjectPropertyExpression : public Expression { <nl> bool isNonPrivate ( AnalysisResultPtr ar ) ; <nl> bool isValid ( ) const { return m_valid ; } <nl> void outputCPPProperty ( CodeGenerator & cg , AnalysisResultPtr ar ) ; <nl> - void outputCPPObject ( CodeGenerator & cg , AnalysisResultPtr ar , <nl> - int directVariant = - 1 ) ; <nl> + bool outputCPPObject ( CodeGenerator & cg , AnalysisResultPtr ar , <nl> + bool noEvalOnError = false ) ; <nl> private : <nl> void setEffect ( Effect effect ) ; <nl> void clearEffect ( Effect effect ) ; <nl> class ObjectPropertyExpression : public Expression { <nl> / / for avoiding code generate toObject ( Variant ) <nl> bool directVariantProxy ( AnalysisResultPtr ar ) ; <nl> void outputCPPObjProperty ( CodeGenerator & cg , AnalysisResultPtr ar , <nl> - bool directVariant , int doExist ) ; <nl> + int doExist ) ; <nl> } ; <nl> <nl> / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / <nl> mmm a / src / runtime / base / object_data . cpp <nl> ppp b / src / runtime / base / object_data . cpp <nl> bool ObjectData : : o_empty ( CStrRef prop , CStrRef context ) { <nl> ( AttributeClearer ( UseGet , this ) , empty ( t___get ( prop ) ) ) ; <nl> } <nl> <nl> - Variant ObjectData : : o_unset ( CStrRef prop , CStrRef context ) { <nl> + void ObjectData : : o_unset ( CStrRef prop , CStrRef context ) { <nl> if ( getAttribute ( UseUnset ) ) { <nl> AttributeClearer a ( UseUnset , this ) ; <nl> - return t___unset ( prop ) ; <nl> + t___unset ( prop ) ; <nl> } else { <nl> - if ( Variant * t = o_realProp ( prop , RealPropWrite | RealPropNoDynamic ) ) { <nl> + if ( Variant * t = o_realProp ( prop , <nl> + RealPropWrite | RealPropNoDynamic , context ) ) { <nl> unset ( * t ) ; <nl> } else if ( o_properties & & o_properties - > exists ( prop , true ) ) { <nl> o_properties - > weakRemove ( prop , true ) ; <nl> } <nl> } <nl> - return null ; <nl> } <nl> <nl> <nl> mmm a / src / runtime / base / object_data . h <nl> ppp b / src / runtime / base / object_data . h <nl> class ObjectData : public Countable { <nl> <nl> bool o_isset ( CStrRef prop , CStrRef context = null_string ) ; <nl> bool o_empty ( CStrRef prop , CStrRef context = null_string ) ; <nl> - Variant o_unset ( CStrRef prop , CStrRef context = null_string ) ; <nl> + void o_unset ( CStrRef prop , CStrRef context = null_string ) ; <nl> <nl> / / magic methods <nl> / / __construct is handled in a special way <nl> mmm a / src / runtime / base / type_object . cpp <nl> ppp b / src / runtime / base / type_object . cpp <nl> Variant & Object : : o_unsetLval ( CStrRef propName , CVarRef tmpForGet , <nl> <nl> bool Object : : o_isset ( CStrRef propName , <nl> CStrRef context / * = null_string * / ) const { <nl> - if ( ! m_px ) throw NullPointerException ( ) ; <nl> + if ( ! m_px ) return false ; <nl> return m_px - > o_isset ( propName , context ) ; <nl> } <nl> <nl> bool Object : : o_empty ( CStrRef propName , <nl> CStrRef context / * = null_string * / ) const { <nl> - if ( ! m_px ) throw NullPointerException ( ) ; <nl> + if ( ! m_px ) return true ; <nl> return m_px - > o_empty ( propName , context ) ; <nl> } <nl> <nl> - Variant Object : : o_unset ( CStrRef propName , <nl> - CStrRef context / * = null_string * / ) const { <nl> - if ( ! m_px ) throw NullPointerException ( ) ; <nl> - return m_px - > o_unset ( propName , context ) ; <nl> + void Object : : o_unset ( CStrRef propName , <nl> + CStrRef context / * = null_string * / ) const { <nl> + if ( m_px ) m_px - > o_unset ( propName , context ) ; <nl> } <nl> <nl> Variant Object : : o_argval ( bool byRef , CStrRef propName , <nl> mmm a / src / runtime / base / type_object . h <nl> ppp b / src / runtime / base / type_object . h <nl> class Object : public SmartPtr < ObjectData > { <nl> CStrRef context = null_string ) ; <nl> bool o_isset ( CStrRef propName , CStrRef context = null_string ) const ; <nl> bool o_empty ( CStrRef propName , CStrRef context = null_string ) const ; <nl> - Variant o_unset ( CStrRef propName , CStrRef context = null_string ) const ; <nl> + void o_unset ( CStrRef propName , CStrRef context = null_string ) const ; <nl> template < typename T , int op > <nl> T o_assign_op ( CStrRef propName , CVarRef val , CStrRef context = null_string ) ; <nl> Variant o_argval ( bool byRef , CStrRef propName , bool error = true , <nl> mmm a / src / runtime / base / type_variant . cpp <nl> ppp b / src / runtime / base / type_variant . cpp <nl> Variant Variant : : o_getPublic ( CStrRef propName , bool error / * = true * / ) const { <nl> return null_variant ; <nl> } <nl> <nl> + bool Variant : : o_empty ( CStrRef propName , <nl> + CStrRef context / * = null_string * / ) const { <nl> + if ( m_type = = KindOfObject ) { <nl> + return m_data . pobj - > o_empty ( propName , context ) ; <nl> + } <nl> + if ( m_type = = KindOfVariant ) { <nl> + return m_data . pvar - > o_empty ( propName , context ) ; <nl> + } <nl> + if ( m_type = = KindOfArray ) { <nl> + return empty ( rvalAt ( propName , false ) ) ; <nl> + } <nl> + return true ; <nl> + } <nl> + <nl> + bool Variant : : o_isset ( CStrRef propName , <nl> + CStrRef context / * = null_string * / ) const { <nl> + if ( m_type = = KindOfObject ) { <nl> + return m_data . pobj - > o_isset ( propName , context ) ; <nl> + } <nl> + if ( m_type = = KindOfVariant ) { <nl> + return m_data . pvar - > o_isset ( propName , context ) ; <nl> + } <nl> + if ( m_type = = KindOfArray ) { <nl> + return isset ( rvalAt ( propName , false ) ) ; <nl> + } <nl> + return false ; <nl> + } <nl> + <nl> + void Variant : : o_unset ( CStrRef propName , CStrRef context / * = null_string * / ) { <nl> + if ( m_type = = KindOfObject ) { <nl> + m_data . pobj - > o_unset ( propName , context ) ; <nl> + } <nl> + if ( m_type = = KindOfVariant ) { <nl> + m_data . pvar - > o_unset ( propName , context ) ; <nl> + } <nl> + } <nl> + <nl> Variant Variant : : o_argval ( bool byRef , CStrRef propName , <nl> bool error / * = true * / , CStrRef context / * = null_string * / ) const { <nl> if ( m_type = = KindOfObject ) { <nl> mmm a / src / runtime / base / type_variant . h <nl> ppp b / src / runtime / base / type_variant . h <nl> class Variant { <nl> CStrRef context = null_string ) ; <nl> Variant o_argval ( bool byRef , CStrRef propName , bool error = true , <nl> CStrRef context = null_string ) const ; <nl> + bool o_empty ( CStrRef propName , CStrRef context = null_string ) const ; <nl> + bool o_isset ( CStrRef propName , CStrRef context = null_string ) const ; <nl> + void o_unset ( CStrRef propName , CStrRef context = null_string ) ; <nl> <nl> Variant o_invoke ( const char * s , CArrRef params , int64 hash = - 1 ) ; <nl> Variant o_invoke ( CStrRef s , CArrRef params , int64 hash = - 1 ) ; <nl> mmm a / src / runtime / eval / ast / object_property_expression . cpp <nl> ppp b / src / runtime / eval / ast / object_property_expression . cpp <nl> Variant ObjectPropertyExpression : : setOp ( VariableEnvironment & env , int op , <nl> } <nl> <nl> bool ObjectPropertyExpression : : exist ( VariableEnvironment & env , int op ) const { <nl> - Object obj ; <nl> + Variant obj ; <nl> String name ; <nl> if ( m_reverseOrder ) { <nl> - obj = toObject ( m_obj - > evalExist ( env ) ) ; <nl> + obj = m_obj - > evalExist ( env ) ; <nl> name = m_name - > get ( env ) ; <nl> } else { <nl> name = m_name - > get ( env ) ; <nl> - obj = toObject ( m_obj - > evalExist ( env ) ) ; <nl> + obj = m_obj - > evalExist ( env ) ; <nl> } <nl> SET_LINE ; <nl> if ( op = = T_ISSET ) { <nl> - return obj - > o_isset ( name ) ; <nl> + return obj . o_isset ( name ) ; <nl> } else { <nl> - return obj - > o_empty ( name ) ; <nl> + return obj . o_empty ( name ) ; <nl> } <nl> } <nl> <nl> void ObjectPropertyExpression : : unset ( VariableEnvironment & env ) const { <nl> Variant * obj ; <nl> if ( lobj & & lobj - > weakLval ( env , obj ) ) { <nl> String name ( m_name - > get ( env ) ) ; <nl> - toObject ( * obj ) - > o_unset ( name ) ; <nl> + obj - > o_unset ( name ) ; <nl> } else { <nl> - Object obj ( toObject ( m_obj - > evalExist ( env ) ) ) ; <nl> + Variant obj ( m_obj - > evalExist ( env ) ) ; <nl> String name ( m_name - > get ( env ) ) ; <nl> - obj - > o_unset ( name ) ; <nl> + obj . o_unset ( name ) ; <nl> } <nl> } <nl> <nl> mmm a / src / test / test_code_run . cpp <nl> ppp b / src / test / test_code_run . cpp <nl> bool TestCodeRun : : TestObjectProperty ( ) { <nl> MVCR ( " < ? php " <nl> " $ one = array ( ' cluster ' = > 1 , ' version ' = > 2 ) ; " <nl> " var_dump ( isset ( $ one - > cluster ) ) ; " <nl> - " var_dump ( empty ( $ one - > cluster ) ) ; " ) ; <nl> + " var_dump ( empty ( $ one - > cluster ) ) ; " <nl> + " $ two = ' hello ' ; " <nl> + " var_dump ( isset ( $ two - > scalar ) ) ; " ) ; <nl> <nl> MVCR ( " < ? php " <nl> " function f ( ) { return false ; } " <nl>
[ Perf / Fix ] Dont call toObject in object property expressions
facebook/hhvm
6bfb65a49fc690ea55c849eb7850560d75ed250e
2010-12-08T19:32:18Z
mmm a / BUILD <nl> ppp b / BUILD <nl> grpc_cc_library ( <nl> " src / core / ext / transport / cronet / transport / cronet_transport . c " , <nl> ] , <nl> hdrs = [ <nl> - " third_party / Cronet / bidirectional_stream_c . h " , <nl> + " third_party / objective_c / Cronet / bidirectional_stream_c . h " , <nl> ] , <nl> language = " c " , <nl> public_hdrs = [ <nl> mmm a / CMakeLists . txt <nl> ppp b / CMakeLists . txt <nl> <nl> cmake_minimum_required ( VERSION 2 . 8 ) <nl> <nl> set ( PACKAGE_NAME " grpc " ) <nl> - set ( PACKAGE_VERSION " 1 . 1 . 0 - dev " ) <nl> + set ( PACKAGE_VERSION " 1 . 2 . 0 - dev " ) <nl> set ( PACKAGE_STRING " $ { PACKAGE_NAME } $ { PACKAGE_VERSION } " ) <nl> set ( PACKAGE_TARNAME " $ { PACKAGE_NAME } - $ { PACKAGE_VERSION } " ) <nl> set ( PACKAGE_BUGREPORT " https : / / github . com / grpc / grpc / issues / " ) <nl> mmm a / Makefile <nl> ppp b / Makefile <nl> LDXX_helgrind = $ ( DEFAULT_CXX ) <nl> CPPFLAGS_helgrind = - O0 <nl> LDFLAGS_helgrind = - rdynamic <nl> DEFINES_helgrind = _DEBUG DEBUG <nl> - DEFINES_helgrind + = GRPC_TEST_SLOWDOWN_BUILD_FACTOR = 20 <nl> <nl> VALID_CONFIG_asan - noleaks = 1 <nl> REQUIRE_CUSTOM_LIBRARIES_asan - noleaks = 1 <nl> LD_asan - noleaks = clang <nl> LDXX_asan - noleaks = clang + + <nl> CPPFLAGS_asan - noleaks = - O0 - fsanitize - coverage = edge - fsanitize = address - fno - omit - frame - pointer - Wno - unused - command - line - argument - DGPR_NO_DIRECT_SYSCALLS <nl> LDFLAGS_asan - noleaks = - fsanitize = address <nl> - DEFINES_asan - noleaks + = GRPC_TEST_SLOWDOWN_BUILD_FACTOR = 3 <nl> <nl> VALID_CONFIG_asan - trace - cmp = 1 <nl> REQUIRE_CUSTOM_LIBRARIES_asan - trace - cmp = 1 <nl> LD_asan - trace - cmp = clang <nl> LDXX_asan - trace - cmp = clang + + <nl> CPPFLAGS_asan - trace - cmp = - O0 - fsanitize - coverage = edge - fsanitize - coverage = trace - cmp - fsanitize = address - fno - omit - frame - pointer - Wno - unused - command - line - argument - DGPR_NO_DIRECT_SYSCALLS <nl> LDFLAGS_asan - trace - cmp = - fsanitize = address <nl> - DEFINES_asan - trace - cmp + = GRPC_TEST_SLOWDOWN_BUILD_FACTOR = 3 <nl> <nl> VALID_CONFIG_dbg = 1 <nl> CC_dbg = $ ( DEFAULT_CC ) <nl> LDXX_memcheck = $ ( DEFAULT_CXX ) <nl> CPPFLAGS_memcheck = - O0 <nl> LDFLAGS_memcheck = - rdynamic <nl> DEFINES_memcheck = _DEBUG DEBUG <nl> - DEFINES_memcheck + = GRPC_TEST_SLOWDOWN_BUILD_FACTOR = 10 <nl> <nl> VALID_CONFIG_asan = 1 <nl> REQUIRE_CUSTOM_LIBRARIES_asan = 1 <nl> LD_asan = clang <nl> LDXX_asan = clang + + <nl> CPPFLAGS_asan = - O0 - fsanitize - coverage = edge - fsanitize = address - fno - omit - frame - pointer - Wno - unused - command - line - argument - DGPR_NO_DIRECT_SYSCALLS <nl> LDFLAGS_asan = - fsanitize = address <nl> - DEFINES_asan + = GRPC_TEST_SLOWDOWN_BUILD_FACTOR = 3 <nl> <nl> VALID_CONFIG_tsan = 1 <nl> REQUIRE_CUSTOM_LIBRARIES_tsan = 1 <nl> LDXX_tsan = clang + + <nl> CPPFLAGS_tsan = - O0 - fsanitize = thread - fno - omit - frame - pointer - Wno - unused - command - line - argument - DGPR_NO_DIRECT_SYSCALLS <nl> LDFLAGS_tsan = - fsanitize = thread <nl> DEFINES_tsan = GRPC_TSAN <nl> - DEFINES_tsan + = GRPC_TEST_SLOWDOWN_BUILD_FACTOR = 5 <nl> <nl> VALID_CONFIG_ubsan = 1 <nl> REQUIRE_CUSTOM_LIBRARIES_ubsan = 1 <nl> LDXX_ubsan = clang + + <nl> CPPFLAGS_ubsan = - O0 - fsanitize - coverage = edge - fsanitize = undefined , unsigned - integer - overflow - fno - omit - frame - pointer - Wno - unused - command - line - argument - Wvarargs <nl> LDFLAGS_ubsan = - fsanitize = undefined , unsigned - integer - overflow <nl> DEFINES_ubsan = NDEBUG <nl> - DEFINES_ubsan + = GRPC_TEST_SLOWDOWN_BUILD_FACTOR = 1 . 5 <nl> <nl> VALID_CONFIG_msan = 1 <nl> REQUIRE_CUSTOM_LIBRARIES_msan = 1 <nl> LDXX_msan = clang + + <nl> CPPFLAGS_msan = - O0 - fsanitize - coverage = edge - fsanitize = memory - fsanitize - memory - track - origins - fno - omit - frame - pointer - DGTEST_HAS_TR1_TUPLE = 0 - DGTEST_USE_OWN_TR1_TUPLE = 1 - Wno - unused - command - line - argument - fPIE - pie - DGPR_NO_DIRECT_SYSCALLS <nl> LDFLAGS_msan = - fsanitize = memory - DGTEST_HAS_TR1_TUPLE = 0 - DGTEST_USE_OWN_TR1_TUPLE = 1 - fPIE - pie $ ( if $ ( JENKINS_BUILD ) , - Wl $ ( comma ) - Ttext - segment = 0x7e0000000000 , ) <nl> DEFINES_msan = NDEBUG <nl> - DEFINES_msan + = GRPC_TEST_SLOWDOWN_BUILD_FACTOR = 4 <nl> <nl> VALID_CONFIG_mutrace = 1 <nl> CC_mutrace = $ ( DEFAULT_CC ) <nl> E = @ echo <nl> Q = @ <nl> endif <nl> <nl> - CORE_VERSION = 2 . 0 . 0 - dev <nl> - CPP_VERSION = 1 . 1 . 0 - dev <nl> - CSHARP_VERSION = 1 . 1 . 0 - dev <nl> + CORE_VERSION = 3 . 0 . 0 - dev <nl> + CPP_VERSION = 1 . 2 . 0 - dev <nl> + CSHARP_VERSION = 1 . 2 . 0 - dev <nl> <nl> CPPFLAGS_NO_ARCH + = $ ( addprefix - I , $ ( INCLUDES ) ) $ ( addprefix - D , $ ( DEFINES ) ) <nl> CPPFLAGS + = $ ( CPPFLAGS_NO_ARCH ) $ ( ARCH_FLAGS ) <nl> SHARED_EXT_CORE = dll <nl> SHARED_EXT_CPP = dll <nl> SHARED_EXT_CSHARP = dll <nl> SHARED_PREFIX = <nl> - SHARED_VERSION_CORE = - 2 <nl> + SHARED_VERSION_CORE = - 3 <nl> SHARED_VERSION_CPP = - 1 <nl> SHARED_VERSION_CSHARP = - 1 <nl> else ifeq ( $ ( SYSTEM ) , Darwin ) <nl> test_cxx : buildtests_cxx <nl> $ ( Q ) $ ( BINDIR ) / $ ( CONFIG ) / grpclb_api_test | | ( echo test grpclb_api_test failed ; exit 1 ) <nl> $ ( E ) " [ RUN ] Testing grpclb_test " <nl> $ ( Q ) $ ( BINDIR ) / $ ( CONFIG ) / grpclb_test | | ( echo test grpclb_test failed ; exit 1 ) <nl> - $ ( E ) " [ RUN ] Testing hybrid_end2end_test " <nl> - $ ( Q ) $ ( BINDIR ) / $ ( CONFIG ) / hybrid_end2end_test | | ( echo test hybrid_end2end_test failed ; exit 1 ) <nl> $ ( E ) " [ RUN ] Testing interop_test " <nl> $ ( Q ) $ ( BINDIR ) / $ ( CONFIG ) / interop_test | | ( echo test interop_test failed ; exit 1 ) <nl> $ ( E ) " [ RUN ] Testing mock_test " <nl> test_cxx : buildtests_cxx <nl> <nl> <nl> flaky_test_cxx : buildtests_cxx <nl> + $ ( E ) " [ RUN ] Testing hybrid_end2end_test " <nl> + $ ( Q ) $ ( BINDIR ) / $ ( CONFIG ) / hybrid_end2end_test | | ( echo test hybrid_end2end_test failed ; exit 1 ) <nl> <nl> <nl> test_python : static_c <nl> install - shared_c : shared_c strip - shared_c install - pkg - config_c <nl> ifeq ( $ ( SYSTEM ) , MINGW32 ) <nl> $ ( Q ) $ ( INSTALL ) $ ( LIBDIR ) / $ ( CONFIG ) / libgpr $ ( SHARED_VERSION_CORE ) - dll . a $ ( prefix ) / lib / libgpr . a <nl> else ifneq ( $ ( SYSTEM ) , Darwin ) <nl> - $ ( Q ) ln - sf $ ( SHARED_PREFIX ) gpr $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( prefix ) / lib / libgpr . so . 2 <nl> + $ ( Q ) ln - sf $ ( SHARED_PREFIX ) gpr $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( prefix ) / lib / libgpr . so . 3 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) gpr $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( prefix ) / lib / libgpr . so <nl> endif <nl> $ ( E ) " [ INSTALL ] Installing $ ( SHARED_PREFIX ) grpc $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) " <nl> endif <nl> ifeq ( $ ( SYSTEM ) , MINGW32 ) <nl> $ ( Q ) $ ( INSTALL ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc $ ( SHARED_VERSION_CORE ) - dll . a $ ( prefix ) / lib / libgrpc . a <nl> else ifneq ( $ ( SYSTEM ) , Darwin ) <nl> - $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( prefix ) / lib / libgrpc . so . 2 <nl> + $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( prefix ) / lib / libgrpc . so . 3 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( prefix ) / lib / libgrpc . so <nl> endif <nl> $ ( E ) " [ INSTALL ] Installing $ ( SHARED_PREFIX ) grpc_cronet $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) " <nl> endif <nl> ifeq ( $ ( SYSTEM ) , MINGW32 ) <nl> $ ( Q ) $ ( INSTALL ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_cronet $ ( SHARED_VERSION_CORE ) - dll . a $ ( prefix ) / lib / libgrpc_cronet . a <nl> else ifneq ( $ ( SYSTEM ) , Darwin ) <nl> - $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_cronet $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( prefix ) / lib / libgrpc_cronet . so . 2 <nl> + $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_cronet $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( prefix ) / lib / libgrpc_cronet . so . 3 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_cronet $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( prefix ) / lib / libgrpc_cronet . so <nl> endif <nl> $ ( E ) " [ INSTALL ] Installing $ ( SHARED_PREFIX ) grpc_unsecure $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) " <nl> endif <nl> ifeq ( $ ( SYSTEM ) , MINGW32 ) <nl> $ ( Q ) $ ( INSTALL ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_unsecure $ ( SHARED_VERSION_CORE ) - dll . a $ ( prefix ) / lib / libgrpc_unsecure . a <nl> else ifneq ( $ ( SYSTEM ) , Darwin ) <nl> - $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_unsecure $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( prefix ) / lib / libgrpc_unsecure . so . 2 <nl> + $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_unsecure $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( prefix ) / lib / libgrpc_unsecure . so . 3 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_unsecure $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( prefix ) / lib / libgrpc_unsecure . so <nl> endif <nl> ifneq ( $ ( SYSTEM ) , MINGW32 ) <nl> install - shared_cxx : shared_cxx strip - shared_cxx install - shared_c install - pkg - con <nl> ifeq ( $ ( SYSTEM ) , MINGW32 ) <nl> $ ( Q ) $ ( INSTALL ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + $ ( SHARED_VERSION_CPP ) - dll . a $ ( prefix ) / lib / libgrpc + + . a <nl> else ifneq ( $ ( SYSTEM ) , Darwin ) <nl> - $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( prefix ) / lib / libgrpc + + . so . 2 <nl> + $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( prefix ) / lib / libgrpc + + . so . 3 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( prefix ) / lib / libgrpc + + . so <nl> endif <nl> $ ( E ) " [ INSTALL ] Installing $ ( SHARED_PREFIX ) grpc + + _cronet $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) " <nl> endif <nl> ifeq ( $ ( SYSTEM ) , MINGW32 ) <nl> $ ( Q ) $ ( INSTALL ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _cronet $ ( SHARED_VERSION_CPP ) - dll . a $ ( prefix ) / lib / libgrpc + + _cronet . a <nl> else ifneq ( $ ( SYSTEM ) , Darwin ) <nl> - $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _cronet $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( prefix ) / lib / libgrpc + + _cronet . so . 2 <nl> + $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _cronet $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( prefix ) / lib / libgrpc + + _cronet . so . 3 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _cronet $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( prefix ) / lib / libgrpc + + _cronet . so <nl> endif <nl> $ ( E ) " [ INSTALL ] Installing $ ( SHARED_PREFIX ) grpc + + _reflection $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) " <nl> endif <nl> ifeq ( $ ( SYSTEM ) , MINGW32 ) <nl> $ ( Q ) $ ( INSTALL ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _reflection $ ( SHARED_VERSION_CPP ) - dll . a $ ( prefix ) / lib / libgrpc + + _reflection . a <nl> else ifneq ( $ ( SYSTEM ) , Darwin ) <nl> - $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _reflection $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( prefix ) / lib / libgrpc + + _reflection . so . 2 <nl> + $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _reflection $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( prefix ) / lib / libgrpc + + _reflection . so . 3 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _reflection $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( prefix ) / lib / libgrpc + + _reflection . so <nl> endif <nl> $ ( E ) " [ INSTALL ] Installing $ ( SHARED_PREFIX ) grpc + + _unsecure $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) " <nl> endif <nl> ifeq ( $ ( SYSTEM ) , MINGW32 ) <nl> $ ( Q ) $ ( INSTALL ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _unsecure $ ( SHARED_VERSION_CPP ) - dll . a $ ( prefix ) / lib / libgrpc + + _unsecure . a <nl> else ifneq ( $ ( SYSTEM ) , Darwin ) <nl> - $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _unsecure $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( prefix ) / lib / libgrpc + + _unsecure . so . 2 <nl> + $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _unsecure $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( prefix ) / lib / libgrpc + + _unsecure . so . 3 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _unsecure $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( prefix ) / lib / libgrpc + + _unsecure . so <nl> endif <nl> ifneq ( $ ( SYSTEM ) , MINGW32 ) <nl> install - shared_csharp : shared_csharp strip - shared_csharp <nl> ifeq ( $ ( SYSTEM ) , MINGW32 ) <nl> $ ( Q ) $ ( INSTALL ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_csharp_ext $ ( SHARED_VERSION_CSHARP ) - dll . a $ ( prefix ) / lib / libgrpc_csharp_ext . a <nl> else ifneq ( $ ( SYSTEM ) , Darwin ) <nl> - $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_csharp_ext $ ( SHARED_VERSION_CSHARP ) . $ ( SHARED_EXT_CSHARP ) $ ( prefix ) / lib / libgrpc_csharp_ext . so . 2 <nl> + $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_csharp_ext $ ( SHARED_VERSION_CSHARP ) . $ ( SHARED_EXT_CSHARP ) $ ( prefix ) / lib / libgrpc_csharp_ext . so . 3 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_csharp_ext $ ( SHARED_VERSION_CSHARP ) . $ ( SHARED_EXT_CSHARP ) $ ( prefix ) / lib / libgrpc_csharp_ext . so <nl> endif <nl> ifneq ( $ ( SYSTEM ) , MINGW32 ) <nl> $ ( LIBDIR ) / $ ( CONFIG ) / libgpr $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) : $ ( LIBGPR_OB <nl> ifeq ( $ ( SYSTEM ) , Darwin ) <nl> $ ( Q ) $ ( LD ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - install_name $ ( SHARED_PREFIX ) gpr $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) - dynamiclib - o $ ( LIBDIR ) / $ ( CONFIG ) / libgpr $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBGPR_OBJS ) $ ( LDLIBS ) $ ( ZLIB_MERGE_LIBS ) <nl> else <nl> - $ ( Q ) $ ( LD ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgpr . so . 2 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgpr $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBGPR_OBJS ) $ ( LDLIBS ) $ ( ZLIB_MERGE_LIBS ) <nl> - $ ( Q ) ln - sf $ ( SHARED_PREFIX ) gpr $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBDIR ) / $ ( CONFIG ) / libgpr $ ( SHARED_VERSION_CORE ) . so . 2 <nl> + $ ( Q ) $ ( LD ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgpr . so . 3 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgpr $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBGPR_OBJS ) $ ( LDLIBS ) $ ( ZLIB_MERGE_LIBS ) <nl> + $ ( Q ) ln - sf $ ( SHARED_PREFIX ) gpr $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBDIR ) / $ ( CONFIG ) / libgpr $ ( SHARED_VERSION_CORE ) . so . 3 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) gpr $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBDIR ) / $ ( CONFIG ) / libgpr $ ( SHARED_VERSION_CORE ) . so <nl> endif <nl> endif <nl> $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) : $ ( LIBGRPC_ <nl> ifeq ( $ ( SYSTEM ) , Darwin ) <nl> $ ( Q ) $ ( LD ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - install_name $ ( SHARED_PREFIX ) grpc $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) - dynamiclib - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBGRPC_OBJS ) $ ( LDLIBS ) $ ( LIBDIR ) / $ ( CONFIG ) / libgpr . a $ ( OPENSSL_MERGE_LIBS ) $ ( LDLIBS_SECURE ) $ ( ZLIB_MERGE_LIBS ) <nl> else <nl> - $ ( Q ) $ ( LD ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc . so . 2 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBGRPC_OBJS ) $ ( LDLIBS ) $ ( LIBDIR ) / $ ( CONFIG ) / libgpr . a $ ( OPENSSL_MERGE_LIBS ) $ ( LDLIBS_SECURE ) $ ( ZLIB_MERGE_LIBS ) <nl> - $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc $ ( SHARED_VERSION_CORE ) . so . 2 <nl> + $ ( Q ) $ ( LD ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc . so . 3 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBGRPC_OBJS ) $ ( LDLIBS ) $ ( LIBDIR ) / $ ( CONFIG ) / libgpr . a $ ( OPENSSL_MERGE_LIBS ) $ ( LDLIBS_SECURE ) $ ( ZLIB_MERGE_LIBS ) <nl> + $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc $ ( SHARED_VERSION_CORE ) . so . 3 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc $ ( SHARED_VERSION_CORE ) . so <nl> endif <nl> endif <nl> $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_cronet $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) : $ ( L <nl> ifeq ( $ ( SYSTEM ) , Darwin ) <nl> $ ( Q ) $ ( LD ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - install_name $ ( SHARED_PREFIX ) grpc_cronet $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) - dynamiclib - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_cronet $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBGRPC_CRONET_OBJS ) $ ( LDLIBS ) $ ( LIBDIR ) / $ ( CONFIG ) / libgpr . a $ ( OPENSSL_MERGE_LIBS ) $ ( LDLIBS_SECURE ) $ ( ZLIB_MERGE_LIBS ) <nl> else <nl> - $ ( Q ) $ ( LD ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc_cronet . so . 2 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_cronet $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBGRPC_CRONET_OBJS ) $ ( LDLIBS ) $ ( LIBDIR ) / $ ( CONFIG ) / libgpr . a $ ( OPENSSL_MERGE_LIBS ) $ ( LDLIBS_SECURE ) $ ( ZLIB_MERGE_LIBS ) <nl> - $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_cronet $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_cronet $ ( SHARED_VERSION_CORE ) . so . 2 <nl> + $ ( Q ) $ ( LD ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc_cronet . so . 3 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_cronet $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBGRPC_CRONET_OBJS ) $ ( LDLIBS ) $ ( LIBDIR ) / $ ( CONFIG ) / libgpr . a $ ( OPENSSL_MERGE_LIBS ) $ ( LDLIBS_SECURE ) $ ( ZLIB_MERGE_LIBS ) <nl> + $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_cronet $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_cronet $ ( SHARED_VERSION_CORE ) . so . 3 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_cronet $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_cronet $ ( SHARED_VERSION_CORE ) . so <nl> endif <nl> endif <nl> $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_unsecure $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) : $ <nl> ifeq ( $ ( SYSTEM ) , Darwin ) <nl> $ ( Q ) $ ( LD ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - install_name $ ( SHARED_PREFIX ) grpc_unsecure $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) - dynamiclib - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_unsecure $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBGRPC_UNSECURE_OBJS ) $ ( LDLIBS ) $ ( LIBDIR ) / $ ( CONFIG ) / libgpr . a $ ( ZLIB_MERGE_LIBS ) <nl> else <nl> - $ ( Q ) $ ( LD ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc_unsecure . so . 2 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_unsecure $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBGRPC_UNSECURE_OBJS ) $ ( LDLIBS ) $ ( LIBDIR ) / $ ( CONFIG ) / libgpr . a $ ( ZLIB_MERGE_LIBS ) <nl> - $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_unsecure $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_unsecure $ ( SHARED_VERSION_CORE ) . so . 2 <nl> + $ ( Q ) $ ( LD ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc_unsecure . so . 3 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_unsecure $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBGRPC_UNSECURE_OBJS ) $ ( LDLIBS ) $ ( LIBDIR ) / $ ( CONFIG ) / libgpr . a $ ( ZLIB_MERGE_LIBS ) <nl> + $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_unsecure $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_unsecure $ ( SHARED_VERSION_CORE ) . so . 3 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_unsecure $ ( SHARED_VERSION_CORE ) . $ ( SHARED_EXT_CORE ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_unsecure $ ( SHARED_VERSION_CORE ) . so <nl> endif <nl> endif <nl> $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) : $ ( LIBGRPC + <nl> ifeq ( $ ( SYSTEM ) , Darwin ) <nl> $ ( Q ) $ ( LDXX ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - install_name $ ( SHARED_PREFIX ) grpc + + $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) - dynamiclib - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBGRPC + + _OBJS ) $ ( LDLIBS ) $ ( ZLIB_MERGE_LIBS ) $ ( LDLIBSXX ) $ ( LDLIBS_PROTOBUF ) - lgrpc <nl> else <nl> - $ ( Q ) $ ( LDXX ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc + + . so . 2 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBGRPC + + _OBJS ) $ ( LDLIBS ) $ ( ZLIB_MERGE_LIBS ) $ ( LDLIBSXX ) $ ( LDLIBS_PROTOBUF ) - lgrpc <nl> + $ ( Q ) $ ( LDXX ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc + + . so . 3 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBGRPC + + _OBJS ) $ ( LDLIBS ) $ ( ZLIB_MERGE_LIBS ) $ ( LDLIBSXX ) $ ( LDLIBS_PROTOBUF ) - lgrpc <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + $ ( SHARED_VERSION_CPP ) . so . 1 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + $ ( SHARED_VERSION_CPP ) . so <nl> endif <nl> $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _cronet $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) : $ ( L <nl> ifeq ( $ ( SYSTEM ) , Darwin ) <nl> $ ( Q ) $ ( LDXX ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - install_name $ ( SHARED_PREFIX ) grpc + + _cronet $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) - dynamiclib - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _cronet $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBGRPC + + _CRONET_OBJS ) $ ( LDLIBS ) $ ( OPENSSL_MERGE_LIBS ) $ ( LDLIBS_SECURE ) $ ( ZLIB_MERGE_LIBS ) $ ( LDLIBSXX ) $ ( LDLIBS_PROTOBUF ) - lgpr - lgrpc_cronet <nl> else <nl> - $ ( Q ) $ ( LDXX ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc + + _cronet . so . 2 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _cronet $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBGRPC + + _CRONET_OBJS ) $ ( LDLIBS ) $ ( OPENSSL_MERGE_LIBS ) $ ( LDLIBS_SECURE ) $ ( ZLIB_MERGE_LIBS ) $ ( LDLIBSXX ) $ ( LDLIBS_PROTOBUF ) - lgpr - lgrpc_cronet <nl> + $ ( Q ) $ ( LDXX ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc + + _cronet . so . 3 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _cronet $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBGRPC + + _CRONET_OBJS ) $ ( LDLIBS ) $ ( OPENSSL_MERGE_LIBS ) $ ( LDLIBS_SECURE ) $ ( ZLIB_MERGE_LIBS ) $ ( LDLIBSXX ) $ ( LDLIBS_PROTOBUF ) - lgpr - lgrpc_cronet <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _cronet $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _cronet $ ( SHARED_VERSION_CPP ) . so . 1 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _cronet $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _cronet $ ( SHARED_VERSION_CPP ) . so <nl> endif <nl> $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _reflection $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) : <nl> ifeq ( $ ( SYSTEM ) , Darwin ) <nl> $ ( Q ) $ ( LDXX ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - install_name $ ( SHARED_PREFIX ) grpc + + _reflection $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) - dynamiclib - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _reflection $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBGRPC + + _REFLECTION_OBJS ) $ ( LDLIBS ) $ ( ZLIB_MERGE_LIBS ) $ ( LDLIBSXX ) $ ( LDLIBS_PROTOBUF ) - lgrpc + + <nl> else <nl> - $ ( Q ) $ ( LDXX ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc + + _reflection . so . 2 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _reflection $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBGRPC + + _REFLECTION_OBJS ) $ ( LDLIBS ) $ ( ZLIB_MERGE_LIBS ) $ ( LDLIBSXX ) $ ( LDLIBS_PROTOBUF ) - lgrpc + + <nl> + $ ( Q ) $ ( LDXX ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc + + _reflection . so . 3 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _reflection $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBGRPC + + _REFLECTION_OBJS ) $ ( LDLIBS ) $ ( ZLIB_MERGE_LIBS ) $ ( LDLIBSXX ) $ ( LDLIBS_PROTOBUF ) - lgrpc + + <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _reflection $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _reflection $ ( SHARED_VERSION_CPP ) . so . 1 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _reflection $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _reflection $ ( SHARED_VERSION_CPP ) . so <nl> endif <nl> $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _unsecure $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) : $ <nl> ifeq ( $ ( SYSTEM ) , Darwin ) <nl> $ ( Q ) $ ( LDXX ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - install_name $ ( SHARED_PREFIX ) grpc + + _unsecure $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) - dynamiclib - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _unsecure $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBGRPC + + _UNSECURE_OBJS ) $ ( LDLIBS ) $ ( ZLIB_MERGE_LIBS ) $ ( LDLIBSXX ) $ ( LDLIBS_PROTOBUF ) - lgpr - lgrpc_unsecure <nl> else <nl> - $ ( Q ) $ ( LDXX ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc + + _unsecure . so . 2 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _unsecure $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBGRPC + + _UNSECURE_OBJS ) $ ( LDLIBS ) $ ( ZLIB_MERGE_LIBS ) $ ( LDLIBSXX ) $ ( LDLIBS_PROTOBUF ) - lgpr - lgrpc_unsecure <nl> + $ ( Q ) $ ( LDXX ) $ ( LDFLAGS ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc + + _unsecure . so . 3 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _unsecure $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBGRPC + + _UNSECURE_OBJS ) $ ( LDLIBS ) $ ( ZLIB_MERGE_LIBS ) $ ( LDLIBSXX ) $ ( LDLIBS_PROTOBUF ) - lgpr - lgrpc_unsecure <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _unsecure $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _unsecure $ ( SHARED_VERSION_CPP ) . so . 1 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc + + _unsecure $ ( SHARED_VERSION_CPP ) . $ ( SHARED_EXT_CPP ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc + + _unsecure $ ( SHARED_VERSION_CPP ) . so <nl> endif <nl> $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_csharp_ext $ ( SHARED_VERSION_CSHARP ) . $ ( SHARED_EXT_CSHA <nl> ifeq ( $ ( SYSTEM ) , Darwin ) <nl> $ ( Q ) $ ( LD ) $ ( LDFLAGS ) $ ( if $ ( subst Linux , , $ ( SYSTEM ) ) , , - Wl $ ( comma ) - wrap $ ( comma ) memcpy ) - L $ ( LIBDIR ) / $ ( CONFIG ) - install_name $ ( SHARED_PREFIX ) grpc_csharp_ext $ ( SHARED_VERSION_CSHARP ) . $ ( SHARED_EXT_CSHARP ) - dynamiclib - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_csharp_ext $ ( SHARED_VERSION_CSHARP ) . $ ( SHARED_EXT_CSHARP ) $ ( LIBGRPC_CSHARP_EXT_OBJS ) $ ( LDLIBS ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc . a $ ( LIBDIR ) / $ ( CONFIG ) / libgpr . a $ ( ZLIB_MERGE_LIBS ) <nl> else <nl> - $ ( Q ) $ ( LD ) $ ( LDFLAGS ) $ ( if $ ( subst Linux , , $ ( SYSTEM ) ) , , - Wl $ ( comma ) - wrap $ ( comma ) memcpy ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc_csharp_ext . so . 2 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_csharp_ext $ ( SHARED_VERSION_CSHARP ) . $ ( SHARED_EXT_CSHARP ) $ ( LIBGRPC_CSHARP_EXT_OBJS ) $ ( LDLIBS ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc . a $ ( LIBDIR ) / $ ( CONFIG ) / libgpr . a $ ( ZLIB_MERGE_LIBS ) <nl> + $ ( Q ) $ ( LD ) $ ( LDFLAGS ) $ ( if $ ( subst Linux , , $ ( SYSTEM ) ) , , - Wl $ ( comma ) - wrap $ ( comma ) memcpy ) - L $ ( LIBDIR ) / $ ( CONFIG ) - shared - Wl , - soname , libgrpc_csharp_ext . so . 3 - o $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_csharp_ext $ ( SHARED_VERSION_CSHARP ) . $ ( SHARED_EXT_CSHARP ) $ ( LIBGRPC_CSHARP_EXT_OBJS ) $ ( LDLIBS ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc . a $ ( LIBDIR ) / $ ( CONFIG ) / libgpr . a $ ( ZLIB_MERGE_LIBS ) <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_csharp_ext $ ( SHARED_VERSION_CSHARP ) . $ ( SHARED_EXT_CSHARP ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_csharp_ext $ ( SHARED_VERSION_CSHARP ) . so . 1 <nl> $ ( Q ) ln - sf $ ( SHARED_PREFIX ) grpc_csharp_ext $ ( SHARED_VERSION_CSHARP ) . $ ( SHARED_EXT_CSHARP ) $ ( LIBDIR ) / $ ( CONFIG ) / libgrpc_csharp_ext $ ( SHARED_VERSION_CSHARP ) . so <nl> endif <nl> mmm a / build . yaml <nl> ppp b / build . yaml <nl> settings : <nl> ' # 08 ' : Use " - preN " suffixes to identify pre - release versions <nl> ' # 09 ' : Per - language overrides are possible with ( eg ) ruby_version tag here <nl> ' # 10 ' : See the expand_version . py for all the quirks here <nl> - core_version : 2 . 0 . 0 - dev <nl> - g_stands_for : good <nl> - version : 1 . 1 . 0 - dev <nl> + core_version : 3 . 0 . 0 - dev <nl> + g_stands_for : green <nl> + version : 1 . 2 . 0 - dev <nl> filegroups : <nl> - name : census <nl> public_headers : <nl> filegroups : <nl> - include / grpc / grpc_security . h <nl> - include / grpc / grpc_security_constants . h <nl> headers : <nl> - - third_party / Cronet / bidirectional_stream_c . h <nl> + - third_party / objective_c / Cronet / bidirectional_stream_c . h <nl> src : <nl> - src / core / ext / transport / cronet / client / secure / cronet_channel_create . c <nl> - src / core / ext / transport / cronet / transport / cronet_api_dummy . c <nl> targets : <nl> - linux <nl> - posix <nl> - name : hybrid_end2end_test <nl> - gtest : true <nl> + flaky : true <nl> build : test <nl> language : c + + <nl> src : <nl> configs : <nl> test_environ : <nl> ASAN_OPTIONS : detect_leaks = 1 : color = always <nl> LSAN_OPTIONS : suppressions = tools / lsan_suppressions . txt : report_objects = 1 <nl> - timeout_multiplier : 3 <nl> asan - noleaks : <nl> CC : clang <nl> CPPFLAGS : - O0 - fsanitize - coverage = edge - fsanitize = address - fno - omit - frame - pointer <nl> configs : <nl> compile_the_world : true <nl> test_environ : <nl> ASAN_OPTIONS : detect_leaks = 0 : color = always <nl> - timeout_multiplier : 3 <nl> asan - trace - cmp : <nl> CC : clang <nl> CPPFLAGS : - O0 - fsanitize - coverage = edge - fsanitize - coverage = trace - cmp - fsanitize = address <nl> configs : <nl> test_environ : <nl> ASAN_OPTIONS : detect_leaks = 1 : color = always <nl> LSAN_OPTIONS : suppressions = tools / lsan_suppressions . txt : report_objects = 1 <nl> - timeout_multiplier : 3 <nl> basicprof : <nl> CPPFLAGS : - O2 - DGRPC_BASIC_PROFILER - DGRPC_TIMERS_RDTSC <nl> DEFINES : NDEBUG <nl> configs : <nl> CPPFLAGS : - O0 <nl> DEFINES : _DEBUG DEBUG <nl> LDFLAGS : - rdynamic <nl> - timeout_multiplier : 20 <nl> valgrind : - - tool = helgrind <nl> memcheck : <nl> CPPFLAGS : - O0 <nl> DEFINES : _DEBUG DEBUG <nl> LDFLAGS : - rdynamic <nl> - timeout_multiplier : 10 <nl> valgrind : - - tool = memcheck - - leak - check = full <nl> msan : <nl> CC : clang <nl> configs : <nl> - fPIE - pie $ ( if $ ( JENKINS_BUILD ) , - Wl $ ( comma ) - Ttext - segment = 0x7e0000000000 , ) <nl> LDXX : clang + + <nl> compile_the_world : true <nl> - timeout_multiplier : 4 <nl> mutrace : <nl> CPPFLAGS : - O3 - fno - omit - frame - pointer <nl> DEFINES : NDEBUG <nl> configs : <nl> compile_the_world : true <nl> test_environ : <nl> TSAN_OPTIONS : suppressions = tools / tsan_suppressions . txt : halt_on_error = 1 : second_deadlock_stack = 1 <nl> - timeout_multiplier : 5 <nl> ubsan : <nl> CC : clang <nl> CPPFLAGS : - O0 - fsanitize - coverage = edge - fsanitize = undefined , unsigned - integer - overflow <nl> configs : <nl> compile_the_world : true <nl> test_environ : <nl> UBSAN_OPTIONS : halt_on_error = 1 : print_stacktrace = 1 <nl> - timeout_multiplier : 1 . 5 <nl> defaults : <nl> benchmark : <nl> CPPFLAGS : - Ithird_party / benchmark / include - DHAVE_POSIX_REGEX <nl> mmm a / build_config . rb <nl> ppp b / build_config . rb <nl> <nl> # OF THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE . <nl> <nl> module GrpcBuildConfig <nl> - CORE_WINDOWS_DLL = ' / tmp / libs / opt / grpc - 2 . dll ' <nl> + CORE_WINDOWS_DLL = ' / tmp / libs / opt / grpc - 3 . dll ' <nl> end <nl> mmm a / doc / command_line_tool . md <nl> ppp b / doc / command_line_tool . md <nl> <nl> <nl> # # Overview <nl> <nl> - This document describes the command line tool that comes with gRPC repository . It is desireable to have command line <nl> - tools written in other languages to roughly follow the same syntax and flags . <nl> + This document describes the command line tool that comes with gRPC repository . It is desirable to have command line <nl> + tools written in other languages roughly follow the same syntax and flags . <nl> <nl> At this point , the tool needs to be built from source , and it should be moved out to grpc - tools repository as a stand <nl> alone application once it is mature enough . <nl> The command line tool should support the following things : <nl> <nl> # # Code location <nl> <nl> - To use the tool , you need to get the grpc repository and in the grpc directory execute <nl> + To use the tool , you need to get the grpc repository and make sure your system <nl> + has the prerequisites for building grpc from source , given in the [ installation <nl> + instructions ] ( https : / / github . com / grpc / grpc / blob / master / INSTALL . md ) . <nl> + <nl> + In order to build the grpc command line tool from a fresh clone of the grpc <nl> + repository , you need to run the following command to update submodules : <nl> + <nl> + ` ` ` <nl> + git submodule update - - init <nl> + ` ` ` <nl> + <nl> + You also need to have the gflags library installed on your system . On Linux <nl> + systems , gflags can be installed with the following command : <nl> + <nl> + ` ` ` <nl> + sudo apt - get install libgflags - dev <nl> + ` ` ` <nl> + <nl> + Once the prerequisites are satisfied , you can build the command line tool with <nl> + the command : <nl> <nl> ` ` ` <nl> $ make grpc_cli <nl> mmm a / doc / environment_variables . md <nl> ppp b / doc / environment_variables . md <nl> some configuration as environment variables that can be set . <nl> A comma separated list of tracers that provide additional insight into how <nl> gRPC C core is processing requests via debug logs . Available tracers include : <nl> - api - traces api calls to the C core <nl> + - call_error - traces the possible errors contributing to final call status <nl> - channel - traces operations on the C core channel stack <nl> - combiner - traces combiner lock state <nl> - compression - traces compression operations <nl> some configuration as environment variables that can be set . <nl> - secure_endpoint - traces bytes flowing through encrypted channels <nl> - transport_security - traces metadata about secure channel establishment <nl> - tcp - traces bytes in and out of a channel <nl> - <nl> + <nl> ' all ' can additionally be used to turn all traces on . <nl> Individual traces can be disabled by prefixing them with ' - ' . <nl> - <nl> + <nl> Example : <nl> export GRPC_TRACE = all , - pending_tags <nl> <nl> mmm a / doc / g_stands_for . md <nl> ppp b / doc / g_stands_for . md <nl> future ) , and the corresponding version numbers that used them : <nl> <nl> - 1 . 0 ' g ' stands for ' gRPC ' <nl> - 1 . 1 ' g ' stands for ' good ' <nl> + - 1 . 2 ' g ' stands for ' green ' <nl> mmm a / package . json <nl> ppp b / package . json <nl> <nl> { <nl> " name " : " grpc " , <nl> - " version " : " 1 . 1 . 0 - dev " , <nl> + " version " : " 1 . 2 . 0 - dev " , <nl> " author " : " Google Inc . " , <nl> " description " : " gRPC Library for Node " , <nl> " homepage " : " http : / / www . grpc . io / " , <nl> mmm a / package . xml <nl> ppp b / package . xml <nl> <nl> < date > 2017 - 01 - 13 < / date > <nl> < time > 16 : 06 : 07 < / time > <nl> < version > <nl> - < release > 1 . 1 . 0dev < / release > <nl> - < api > 1 . 1 . 0dev < / api > <nl> + < release > 1 . 2 . 0dev < / release > <nl> + < api > 1 . 2 . 0dev < / api > <nl> < / version > <nl> < stability > <nl> < release > beta < / release > <nl> mmm a / src / core / ext / transport / cronet / transport / cronet_api_dummy . c <nl> ppp b / src / core / ext / transport / cronet / transport / cronet_api_dummy . c <nl> library , so we can build it in all environments * / <nl> <nl> # include < grpc / support / log . h > <nl> <nl> - # include " third_party / Cronet / bidirectional_stream_c . h " <nl> + # include " third_party / objective_c / Cronet / bidirectional_stream_c . h " <nl> <nl> # ifdef GRPC_COMPILE_WITH_CRONET <nl> / * link with the real CRONET library in the build system * / <nl> mmm a / src / core / ext / transport / cronet / transport / cronet_transport . c <nl> ppp b / src / core / ext / transport / cronet / transport / cronet_transport . c <nl> <nl> # include " src / core / lib / transport / metadata_batch . h " <nl> # include " src / core / lib / transport / static_metadata . h " <nl> # include " src / core / lib / transport / transport_impl . h " <nl> - # include " third_party / Cronet / bidirectional_stream_c . h " <nl> + # include " third_party / objective_c / Cronet / bidirectional_stream_c . h " <nl> <nl> # define GRPC_HEADER_SIZE_IN_BYTES 5 <nl> <nl> mmm a / src / core / lib / surface / call . c <nl> ppp b / src / core / lib / surface / call . c <nl> typedef enum { <nl> / * Status came from ' the wire ' - or somewhere below the surface <nl> layer * / <nl> STATUS_FROM_WIRE , <nl> - / * Status was created by some internal channel stack operation * / <nl> + / * Status was created by some internal channel stack operation : must come via <nl> + add_batch_error * / <nl> STATUS_FROM_CORE , <nl> + / * Status was created by some surface error * / <nl> + STATUS_FROM_SURFACE , <nl> / * Status came from the server sending status * / <nl> STATUS_FROM_SERVER_STATUS , <nl> STATUS_SOURCE_COUNT <nl> struct grpc_call { <nl> void * saved_receiving_stream_ready_bctlp ; <nl> } ; <nl> <nl> + int grpc_call_error_trace = 0 ; <nl> + <nl> # define CALL_STACK_FROM_CALL ( call ) ( ( grpc_call_stack * ) ( ( call ) + 1 ) ) <nl> # define CALL_FROM_CALL_STACK ( call_stack ) ( ( ( grpc_call * ) ( call_stack ) ) - 1 ) <nl> # define CALL_ELEM_FROM_CALL ( call , idx ) \ <nl> struct grpc_call { <nl> <nl> static void execute_op ( grpc_exec_ctx * exec_ctx , grpc_call * call , <nl> grpc_transport_stream_op * op ) ; <nl> - static grpc_call_error cancel_with_status ( grpc_exec_ctx * exec_ctx , grpc_call * c , <nl> - grpc_status_code status , <nl> - const char * description ) ; <nl> + static void cancel_with_status ( grpc_exec_ctx * exec_ctx , grpc_call * c , <nl> + status_source source , grpc_status_code status , <nl> + const char * description ) ; <nl> static void cancel_with_error ( grpc_exec_ctx * exec_ctx , grpc_call * c , <nl> - grpc_error * error ) ; <nl> + status_source source , grpc_error * error ) ; <nl> static void destroy_call ( grpc_exec_ctx * exec_ctx , void * call_stack , <nl> grpc_error * error ) ; <nl> static void receiving_slice_ready ( grpc_exec_ctx * exec_ctx , void * bctlp , <nl> static void post_batch_completion ( grpc_exec_ctx * exec_ctx , batch_control * bctl ) ; <nl> static void add_batch_error ( grpc_exec_ctx * exec_ctx , batch_control * bctl , <nl> grpc_error * error ) ; <nl> <nl> + static void add_init_error ( grpc_error * * composite , grpc_error * new ) { <nl> + if ( new = = GRPC_ERROR_NONE ) return ; <nl> + if ( * composite = = GRPC_ERROR_NONE ) <nl> + * composite = GRPC_ERROR_CREATE ( " Call creation failed " ) ; <nl> + * composite = grpc_error_add_child ( * composite , new ) ; <nl> + } <nl> + <nl> grpc_error * grpc_call_create ( grpc_exec_ctx * exec_ctx , <nl> const grpc_call_create_args * args , <nl> grpc_call * * out_call ) { <nl> size_t i , j ; <nl> + grpc_error * error = GRPC_ERROR_NONE ; <nl> grpc_channel_stack * channel_stack = <nl> grpc_channel_get_channel_stack ( args - > channel ) ; <nl> grpc_call * call ; <nl> grpc_error * grpc_call_create ( grpc_exec_ctx * exec_ctx , <nl> / * TODO ( ctiller ) : This should change to use the appropriate census start_op <nl> * call . * / <nl> if ( args - > propagation_mask & GRPC_PROPAGATE_CENSUS_TRACING_CONTEXT ) { <nl> - GPR_ASSERT ( args - > propagation_mask & GRPC_PROPAGATE_CENSUS_STATS_CONTEXT ) ; <nl> + if ( 0 = = ( args - > propagation_mask & GRPC_PROPAGATE_CENSUS_STATS_CONTEXT ) ) { <nl> + add_init_error ( & error , <nl> + GRPC_ERROR_CREATE ( " Census tracing propagation requested " <nl> + " without Census context propagation " ) ) ; <nl> + } <nl> grpc_call_context_set ( <nl> call , GRPC_CONTEXT_TRACING , <nl> args - > parent_call - > context [ GRPC_CONTEXT_TRACING ] . value , NULL ) ; <nl> - } else { <nl> - GPR_ASSERT ( args - > propagation_mask & GRPC_PROPAGATE_CENSUS_STATS_CONTEXT ) ; <nl> + } else if ( args - > propagation_mask & GRPC_PROPAGATE_CENSUS_STATS_CONTEXT ) { <nl> + add_init_error ( & error , <nl> + GRPC_ERROR_CREATE ( " Census context propagation requested " <nl> + " without Census tracing propagation " ) ) ; <nl> } <nl> if ( args - > propagation_mask & GRPC_PROPAGATE_CANCELLATION ) { <nl> call - > cancellation_is_inherited = 1 ; <nl> grpc_error * grpc_call_create ( grpc_exec_ctx * exec_ctx , <nl> <nl> GRPC_CHANNEL_INTERNAL_REF ( args - > channel , " call " ) ; <nl> / * initial refcount dropped by grpc_call_destroy * / <nl> - grpc_error * error = grpc_call_stack_init ( <nl> - exec_ctx , channel_stack , 1 , destroy_call , call , call - > context , <nl> - args - > server_transport_data , path , call - > start_time , send_deadline , <nl> - CALL_STACK_FROM_CALL ( call ) ) ; <nl> + add_init_error ( & error , grpc_call_stack_init ( exec_ctx , channel_stack , 1 , <nl> + destroy_call , call , call - > context , <nl> + args - > server_transport_data , path , <nl> + call - > start_time , send_deadline , <nl> + CALL_STACK_FROM_CALL ( call ) ) ) ; <nl> if ( error ! = GRPC_ERROR_NONE ) { <nl> - cancel_with_error ( exec_ctx , call , GRPC_ERROR_REF ( error ) ) ; <nl> + cancel_with_error ( exec_ctx , call , STATUS_FROM_SURFACE , <nl> + GRPC_ERROR_REF ( error ) ) ; <nl> } <nl> if ( args - > cq ! = NULL ) { <nl> GPR_ASSERT ( <nl> grpc_call_error grpc_call_cancel_with_status ( grpc_call * c , <nl> grpc_status_code status , <nl> const char * description , <nl> void * reserved ) { <nl> - grpc_call_error r ; <nl> grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT ; <nl> GRPC_API_TRACE ( <nl> " grpc_call_cancel_with_status ( " <nl> grpc_call_error grpc_call_cancel_with_status ( grpc_call * c , <nl> 4 , ( c , ( int ) status , description , reserved ) ) ; <nl> GPR_ASSERT ( reserved = = NULL ) ; <nl> gpr_mu_lock ( & c - > mu ) ; <nl> - r = cancel_with_status ( & exec_ctx , c , status , description ) ; <nl> + cancel_with_status ( & exec_ctx , c , STATUS_FROM_API_OVERRIDE , status , <nl> + description ) ; <nl> gpr_mu_unlock ( & c - > mu ) ; <nl> grpc_exec_ctx_finish ( & exec_ctx ) ; <nl> - return r ; <nl> + return GRPC_CALL_OK ; <nl> } <nl> <nl> typedef struct termination_closure { <nl> grpc_closure closure ; <nl> grpc_call * call ; <nl> - grpc_error * error ; <nl> grpc_transport_stream_op op ; <nl> } termination_closure ; <nl> <nl> static void send_termination ( grpc_exec_ctx * exec_ctx , void * tcp , <nl> grpc_error * error ) { <nl> termination_closure * tc = tcp ; <nl> memset ( & tc - > op , 0 , sizeof ( tc - > op ) ) ; <nl> - tc - > op . cancel_error = tc - > error ; <nl> + tc - > op . cancel_error = GRPC_ERROR_REF ( error ) ; <nl> / * reuse closure to catch completion * / <nl> - grpc_closure_init ( & tc - > closure , done_termination , tc , <nl> - grpc_schedule_on_exec_ctx ) ; <nl> - tc - > op . on_complete = & tc - > closure ; <nl> + tc - > op . on_complete = grpc_closure_init ( & tc - > closure , done_termination , tc , <nl> + grpc_schedule_on_exec_ctx ) ; <nl> execute_op ( exec_ctx , tc - > call , & tc - > op ) ; <nl> } <nl> <nl> - static grpc_call_error terminate_with_status ( grpc_exec_ctx * exec_ctx , <nl> - termination_closure * tc ) { <nl> - set_status_from_error ( exec_ctx , tc - > call , STATUS_FROM_API_OVERRIDE , <nl> - GRPC_ERROR_REF ( tc - > error ) ) ; <nl> - grpc_closure_init ( & tc - > closure , send_termination , tc , <nl> - grpc_schedule_on_exec_ctx ) ; <nl> - GRPC_CALL_INTERNAL_REF ( tc - > call , " termination " ) ; <nl> - grpc_closure_sched ( exec_ctx , & tc - > closure , GRPC_ERROR_NONE ) ; <nl> - return GRPC_CALL_OK ; <nl> - } <nl> - <nl> - static grpc_call_error terminate_with_error ( grpc_exec_ctx * exec_ctx , <nl> - grpc_call * c , grpc_error * error ) { <nl> + static void terminate_with_error ( grpc_exec_ctx * exec_ctx , grpc_call * c , <nl> + grpc_error * error ) { <nl> termination_closure * tc = gpr_malloc ( sizeof ( * tc ) ) ; <nl> memset ( tc , 0 , sizeof ( * tc ) ) ; <nl> tc - > call = c ; <nl> - tc - > error = error ; <nl> - return terminate_with_status ( exec_ctx , tc ) ; <nl> + GRPC_CALL_INTERNAL_REF ( tc - > call , " termination " ) ; <nl> + grpc_closure_sched ( exec_ctx , grpc_closure_init ( & tc - > closure , send_termination , <nl> + tc , grpc_schedule_on_exec_ctx ) , <nl> + error ) ; <nl> } <nl> <nl> static void cancel_with_error ( grpc_exec_ctx * exec_ctx , grpc_call * c , <nl> - grpc_error * error ) { <nl> + status_source source , grpc_error * error ) { <nl> + set_status_from_error ( exec_ctx , c , source , GRPC_ERROR_REF ( error ) ) ; <nl> terminate_with_error ( exec_ctx , c , error ) ; <nl> } <nl> <nl> static grpc_error * error_from_status ( grpc_status_code status , <nl> GRPC_ERROR_INT_GRPC_STATUS , status ) ; <nl> } <nl> <nl> - static grpc_call_error cancel_with_status ( grpc_exec_ctx * exec_ctx , grpc_call * c , <nl> - grpc_status_code status , <nl> - const char * description ) { <nl> - return terminate_with_error ( exec_ctx , c , <nl> - error_from_status ( status , description ) ) ; <nl> + static void cancel_with_status ( grpc_exec_ctx * exec_ctx , grpc_call * c , <nl> + status_source source , grpc_status_code status , <nl> + const char * description ) { <nl> + cancel_with_error ( exec_ctx , c , source , <nl> + error_from_status ( status , description ) ) ; <nl> } <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> * FINAL STATUS CODE MANIPULATION <nl> * / <nl> <nl> - static void get_final_status_from ( grpc_call * call , status_source from_source , <nl> - void ( * set_value ) ( grpc_status_code code , <nl> - void * user_data ) , <nl> - void * set_value_user_data , <nl> - grpc_slice * details ) { <nl> + static bool get_final_status_from ( <nl> + grpc_call * call , status_source from_source , bool allow_ok_status , <nl> + void ( * set_value ) ( grpc_status_code code , void * user_data ) , <nl> + void * set_value_user_data , grpc_slice * details ) { <nl> grpc_status_code code ; <nl> const char * msg = NULL ; <nl> grpc_error_get_status ( call - > status [ from_source ] . error , call - > send_deadline , <nl> & code , & msg , NULL ) ; <nl> + if ( code = = GRPC_STATUS_OK & & ! allow_ok_status ) { <nl> + return false ; <nl> + } <nl> <nl> set_value ( code , set_value_user_data ) ; <nl> if ( details ! = NULL ) { <nl> * details = <nl> msg = = NULL ? grpc_empty_slice ( ) : grpc_slice_from_copied_string ( msg ) ; <nl> } <nl> + return true ; <nl> } <nl> <nl> static void get_final_status ( grpc_call * call , <nl> static void get_final_status ( grpc_call * call , <nl> void * user_data ) , <nl> void * set_value_user_data , grpc_slice * details ) { <nl> int i ; <nl> - / * search for the best status we can present : ideally the error we use has a <nl> - clearly defined grpc - status , and we ' ll prefer that . * / <nl> - for ( i = 0 ; i < STATUS_SOURCE_COUNT ; i + + ) { <nl> - if ( call - > status [ i ] . is_set & & <nl> - grpc_error_has_clear_grpc_status ( call - > status [ i ] . error ) ) { <nl> - get_final_status_from ( call , ( status_source ) i , set_value , <nl> - set_value_user_data , details ) ; <nl> - return ; <nl> + if ( grpc_call_error_trace ) { <nl> + gpr_log ( GPR_DEBUG , " get_final_status % s " , call - > is_client ? " CLI " : " SVR " ) ; <nl> + for ( i = 0 ; i < STATUS_SOURCE_COUNT ; i + + ) { <nl> + if ( call - > status [ i ] . is_set ) { <nl> + gpr_log ( GPR_DEBUG , " % d : % s " , i , <nl> + grpc_error_string ( call - > status [ i ] . error ) ) ; <nl> + } <nl> } <nl> } <nl> - / * If no clearly defined status exists , search for ' anything ' * / <nl> - for ( i = 0 ; i < STATUS_SOURCE_COUNT ; i + + ) { <nl> - if ( call - > status [ i ] . is_set ) { <nl> - get_final_status_from ( call , ( status_source ) i , set_value , <nl> - set_value_user_data , details ) ; <nl> - return ; <nl> + / * first search through ignoring " OK " statuses : if something went wrong , <nl> + * ensure we report it * / <nl> + for ( int allow_ok_status = 0 ; allow_ok_status < 2 ; allow_ok_status + + ) { <nl> + / * search for the best status we can present : ideally the error we use has a <nl> + clearly defined grpc - status , and we ' ll prefer that . * / <nl> + for ( i = 0 ; i < STATUS_SOURCE_COUNT ; i + + ) { <nl> + if ( call - > status [ i ] . is_set & & <nl> + grpc_error_has_clear_grpc_status ( call - > status [ i ] . error ) ) { <nl> + if ( get_final_status_from ( call , ( status_source ) i , allow_ok_status ! = 0 , <nl> + set_value , set_value_user_data , details ) ) { <nl> + return ; <nl> + } <nl> + } <nl> + } <nl> + / * If no clearly defined status exists , search for ' anything ' * / <nl> + for ( i = 0 ; i < STATUS_SOURCE_COUNT ; i + + ) { <nl> + if ( call - > status [ i ] . is_set ) { <nl> + if ( get_final_status_from ( call , ( status_source ) i , allow_ok_status ! = 0 , <nl> + set_value , set_value_user_data , details ) ) { <nl> + return ; <nl> + } <nl> + } <nl> } <nl> } <nl> / * If nothing exists , set some default * / <nl> static void post_batch_completion ( grpc_exec_ctx * exec_ctx , <nl> <nl> gpr_mu_lock ( & call - > mu ) ; <nl> <nl> - if ( error ! = GRPC_ERROR_NONE ) { <nl> - set_status_from_error ( exec_ctx , call , STATUS_FROM_CORE , <nl> - GRPC_ERROR_REF ( error ) ) ; <nl> - } <nl> - <nl> if ( bctl - > send_initial_metadata ) { <nl> grpc_metadata_batch_destroy ( <nl> exec_ctx , <nl> static void receiving_stream_ready ( grpc_exec_ctx * exec_ctx , void * bctlp , <nl> grpc_call * call = bctl - > call ; <nl> gpr_mu_lock ( & bctl - > call - > mu ) ; <nl> if ( error ! = GRPC_ERROR_NONE ) { <nl> - cancel_with_error ( exec_ctx , call , GRPC_ERROR_REF ( error ) ) ; <nl> + cancel_with_error ( exec_ctx , call , STATUS_FROM_SURFACE , <nl> + GRPC_ERROR_REF ( error ) ) ; <nl> } <nl> if ( call - > has_initial_md_been_received | | error ! = GRPC_ERROR_NONE | | <nl> call - > receiving_stream = = NULL ) { <nl> static void validate_filtered_metadata ( grpc_exec_ctx * exec_ctx , <nl> gpr_asprintf ( & error_msg , " Invalid compression algorithm value ' % d ' . " , <nl> algo ) ; <nl> gpr_log ( GPR_ERROR , " % s " , error_msg ) ; <nl> - cancel_with_status ( exec_ctx , call , GRPC_STATUS_UNIMPLEMENTED , error_msg ) ; <nl> + cancel_with_status ( exec_ctx , call , STATUS_FROM_SURFACE , <nl> + GRPC_STATUS_UNIMPLEMENTED , error_msg ) ; <nl> } else if ( grpc_compression_options_is_algorithm_enabled ( <nl> & compression_options , algo ) = = 0 ) { <nl> / * check if algorithm is supported by current channel config * / <nl> static void validate_filtered_metadata ( grpc_exec_ctx * exec_ctx , <nl> gpr_asprintf ( & error_msg , " Compression algorithm ' % s ' is disabled . " , <nl> algo_name ) ; <nl> gpr_log ( GPR_ERROR , " % s " , error_msg ) ; <nl> - cancel_with_status ( exec_ctx , call , GRPC_STATUS_UNIMPLEMENTED , error_msg ) ; <nl> + cancel_with_status ( exec_ctx , call , STATUS_FROM_SURFACE , <nl> + GRPC_STATUS_UNIMPLEMENTED , error_msg ) ; <nl> } else { <nl> call - > incoming_compression_algorithm = algo ; <nl> } <nl> static void add_batch_error ( grpc_exec_ctx * exec_ctx , batch_control * bctl , <nl> grpc_error * error ) { <nl> if ( error = = GRPC_ERROR_NONE ) return ; <nl> int idx = ( int ) gpr_atm_no_barrier_fetch_add ( & bctl - > num_errors , 1 ) ; <nl> - if ( idx = = 0 ) cancel_with_error ( exec_ctx , bctl - > call , GRPC_ERROR_REF ( error ) ) ; <nl> + if ( idx = = 0 ) { <nl> + cancel_with_error ( exec_ctx , bctl - > call , STATUS_FROM_CORE , <nl> + GRPC_ERROR_REF ( error ) ) ; <nl> + } <nl> bctl - > errors [ idx ] = error ; <nl> } <nl> <nl> mmm a / src / core / lib / surface / call . h <nl> ppp b / src / core / lib / surface / call . h <nl> uint8_t grpc_call_is_client ( grpc_call * call ) ; <nl> grpc_compression_algorithm grpc_call_compression_for_level ( <nl> grpc_call * call , grpc_compression_level level ) ; <nl> <nl> + extern int grpc_call_error_trace ; <nl> + <nl> # ifdef __cplusplus <nl> } <nl> # endif <nl> mmm a / src / core / lib / surface / init . c <nl> ppp b / src / core / lib / surface / init . c <nl> void grpc_init ( void ) { <nl> grpc_cq_event_timeout_trace = 1 ; <nl> grpc_register_tracer ( " op_failure " , & grpc_trace_operation_failures ) ; <nl> grpc_register_tracer ( " resource_quota " , & grpc_resource_quota_trace ) ; <nl> + grpc_register_tracer ( " call_error " , & grpc_call_error_trace ) ; <nl> # ifndef NDEBUG <nl> grpc_register_tracer ( " pending_tags " , & grpc_trace_pending_tags ) ; <nl> # endif <nl> mmm a / src / core / lib / surface / version . c <nl> ppp b / src / core / lib / surface / version . c <nl> <nl> <nl> # include < grpc / grpc . h > <nl> <nl> - const char * grpc_version_string ( void ) { return " 2 . 0 . 0 - dev " ; } <nl> + const char * grpc_version_string ( void ) { return " 3 . 0 . 0 - dev " ; } <nl> <nl> - const char * grpc_g_stands_for ( void ) { return " good " ; } <nl> + const char * grpc_g_stands_for ( void ) { return " green " ; } <nl> mmm a / src / cpp / common / version_cc . cc <nl> ppp b / src / cpp / common / version_cc . cc <nl> <nl> # include < grpc + + / grpc + + . h > <nl> <nl> namespace grpc { <nl> - grpc : : string Version ( ) { return " 1 . 1 . 0 - dev " ; } <nl> + grpc : : string Version ( ) { return " 1 . 2 . 0 - dev " ; } <nl> } <nl> mmm a / src / csharp / Grpc . Auth / project . json <nl> ppp b / src / csharp / Grpc . Auth / project . json <nl> <nl> { <nl> - " version " : " 1 . 1 . 0 - dev " , <nl> + " version " : " 1 . 2 . 0 - dev " , <nl> " title " : " gRPC C # Auth " , <nl> " authors " : [ " Google Inc . " ] , <nl> " copyright " : " Copyright 2015 , Google Inc . " , <nl> <nl> } <nl> } , <nl> " dependencies " : { <nl> - " Grpc . Core " : " 1 . 1 . 0 - dev " , <nl> + " Grpc . Core " : " 1 . 2 . 0 - dev " , <nl> " Google . Apis . Auth " : " 1 . 16 . 0 " <nl> } , <nl> " frameworks " : { <nl> mmm a / src / csharp / Grpc . Core / VersionInfo . cs <nl> ppp b / src / csharp / Grpc . Core / VersionInfo . cs <nl> public static class VersionInfo <nl> / / / < summary > <nl> / / / Current < c > AssemblyFileVersion < / c > of gRPC C # assemblies <nl> / / / < / summary > <nl> - public const string CurrentAssemblyFileVersion = " 1 . 1 . 0 . 0 " ; <nl> + public const string CurrentAssemblyFileVersion = " 1 . 2 . 0 . 0 " ; <nl> <nl> / / / < summary > <nl> / / / Current version of gRPC C # <nl> / / / < / summary > <nl> - public const string CurrentVersion = " 1 . 1 . 0 - dev " ; <nl> + public const string CurrentVersion = " 1 . 2 . 0 - dev " ; <nl> } <nl> } <nl> mmm a / src / csharp / Grpc . Core / project . json <nl> ppp b / src / csharp / Grpc . Core / project . json <nl> <nl> { <nl> - " version " : " 1 . 1 . 0 - dev " , <nl> + " version " : " 1 . 2 . 0 - dev " , <nl> " title " : " gRPC C # Core " , <nl> " authors " : [ " Google Inc . " ] , <nl> " copyright " : " Copyright 2015 , Google Inc . " , <nl> mmm a / src / csharp / Grpc . HealthCheck / project . json <nl> ppp b / src / csharp / Grpc . HealthCheck / project . json <nl> <nl> { <nl> - " version " : " 1 . 1 . 0 - dev " , <nl> + " version " : " 1 . 2 . 0 - dev " , <nl> " title " : " gRPC C # Healthchecking " , <nl> " authors " : [ " Google Inc . " ] , <nl> " copyright " : " Copyright 2015 , Google Inc . " , <nl> <nl> } <nl> } , <nl> " dependencies " : { <nl> - " Grpc . Core " : " 1 . 1 . 0 - dev " , <nl> + " Grpc . Core " : " 1 . 2 . 0 - dev " , <nl> " Google . Protobuf " : " 3 . 0 . 0 " <nl> } , <nl> " frameworks " : { <nl> mmm a / src / csharp / Grpc . Reflection / project . json <nl> ppp b / src / csharp / Grpc . Reflection / project . json <nl> <nl> { <nl> - " version " : " 1 . 1 . 0 - dev " , <nl> + " version " : " 1 . 2 . 0 - dev " , <nl> " title " : " gRPC C # Reflection " , <nl> " authors " : [ " Google Inc . " ] , <nl> " copyright " : " Copyright 2016 , Google Inc . " , <nl> <nl> } <nl> } , <nl> " dependencies " : { <nl> - " Grpc . Core " : " 1 . 1 . 0 - dev " , <nl> + " Grpc . Core " : " 1 . 2 . 0 - dev " , <nl> " Google . Protobuf " : " 3 . 0 . 0 " <nl> } , <nl> " frameworks " : { <nl> mmm a / src / csharp / build_packages_dotnetcli . bat <nl> ppp b / src / csharp / build_packages_dotnetcli . bat <nl> <nl> @ rem OF THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE . <nl> <nl> @ rem Current package versions <nl> - set VERSION = 1 . 1 . 0 - dev <nl> + set VERSION = 1 . 2 . 0 - dev <nl> set PROTOBUF_VERSION = 3 . 0 . 0 <nl> <nl> @ rem Adjust the location of nuget . exe <nl> mmm a / src / csharp / build_packages_dotnetcli . sh <nl> ppp b / src / csharp / build_packages_dotnetcli . sh <nl> dotnet pack - - configuration Release Grpc . Auth / project . json - - output . . / . . / artifa <nl> dotnet pack - - configuration Release Grpc . HealthCheck / project . json - - output . . / . . / artifacts <nl> dotnet pack - - configuration Release Grpc . Reflection / project . json - - output . . / . . / artifacts <nl> <nl> - nuget pack Grpc . nuspec - Version " 1 . 1 . 0 - dev " - OutputDirectory . . / . . / artifacts <nl> - nuget pack Grpc . Tools . nuspec - Version " 1 . 1 . 0 - dev " - OutputDirectory . . / . . / artifacts <nl> + nuget pack Grpc . nuspec - Version " 1 . 2 . 0 - dev " - OutputDirectory . . / . . / artifacts <nl> + nuget pack Grpc . Tools . nuspec - Version " 1 . 2 . 0 - dev " - OutputDirectory . . / . . / artifacts <nl> <nl> ( cd . . / . . / artifacts & & zip csharp_nugets_dotnetcli . zip * . nupkg ) <nl> mmm a / src / node / health_check / package . json <nl> ppp b / src / node / health_check / package . json <nl> <nl> { <nl> " name " : " grpc - health - check " , <nl> - " version " : " 1 . 1 . 0 - dev " , <nl> + " version " : " 1 . 2 . 0 - dev " , <nl> " author " : " Google Inc . " , <nl> " description " : " Health check service for use with gRPC " , <nl> " repository " : { <nl> <nl> } <nl> ] , <nl> " dependencies " : { <nl> - " grpc " : " ^ 1 . 1 . 0 - dev " , <nl> + " grpc " : " ^ 1 . 2 . 0 - dev " , <nl> " lodash " : " ^ 3 . 9 . 3 " , <nl> " google - protobuf " : " ^ 3 . 0 . 0 " <nl> } , <nl> mmm a / src / node / tools / package . json <nl> ppp b / src / node / tools / package . json <nl> <nl> { <nl> " name " : " grpc - tools " , <nl> - " version " : " 1 . 1 . 0 - dev " , <nl> + " version " : " 1 . 2 . 0 - dev " , <nl> " author " : " Google Inc . " , <nl> " description " : " Tools for developing with gRPC on Node . js " , <nl> " homepage " : " http : / / www . grpc . io / " , <nl> mmm a / src / objective - c / tests / CronetUnitTests / CronetUnitTests . m <nl> ppp b / src / objective - c / tests / CronetUnitTests / CronetUnitTests . m <nl> <nl> static void drain_cq ( grpc_completion_queue * cq ) { <nl> grpc_event ev ; <nl> do { <nl> - ev = grpc_completion_queue_next ( cq , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) ; <nl> + ev = grpc_completion_queue_next ( cq , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) ; <nl> } while ( ev . type ! = GRPC_QUEUE_SHUTDOWN ) ; <nl> } <nl> <nl> - ( void ) testInternalError { <nl> grpc_slice_from_copied_string ( " hello world " ) ; <nl> grpc_byte_buffer * request_payload = <nl> grpc_raw_byte_buffer_create ( & request_payload_slice , 1 ) ; <nl> - gpr_timespec deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) ; <nl> + gpr_timespec deadline = grpc_timeout_seconds_to_deadline ( 5 ) ; <nl> grpc_metadata meta_c [ 2 ] = { <nl> { " key1 " , " val1 " , 4 , 0 , { { NULL , NULL , NULL , NULL } } } , <nl> { " key2 " , " val2 " , 4 , 0 , { { NULL , NULL , NULL , NULL } } } } ; <nl> mmm a / src / php / composer . json <nl> ppp b / src / php / composer . json <nl> <nl> " name " : " grpc / grpc - dev " , <nl> " description " : " gRPC library for PHP - for Developement use only " , <nl> " license " : " BSD - 3 - Clause " , <nl> - " version " : " 1 . 1 . 0 " , <nl> + " version " : " 1 . 2 . 0 " , <nl> " require " : { <nl> " php " : " > = 5 . 5 . 0 " , <nl> " google / protobuf " : " v3 . 1 . 0 - alpha - 1 " <nl> mmm a / src / python / grpcio / grpc_version . py <nl> ppp b / src / python / grpcio / grpc_version . py <nl> <nl> <nl> # AUTO - GENERATED FROM ` $ REPO_ROOT / templates / src / python / grpcio / grpc_version . py . template ` ! ! ! <nl> <nl> - VERSION = ' 1 . 1 . 0 . dev0 ' <nl> + VERSION = ' 1 . 2 . 0 . dev0 ' <nl> mmm a / src / python / grpcio_health_checking / grpc_version . py <nl> ppp b / src / python / grpcio_health_checking / grpc_version . py <nl> <nl> <nl> # AUTO - GENERATED FROM ` $ REPO_ROOT / templates / src / python / grpcio_health_checking / grpc_version . py . template ` ! ! ! <nl> <nl> - VERSION = ' 1 . 1 . 0 . dev0 ' <nl> + VERSION = ' 1 . 2 . 0 . dev0 ' <nl> mmm a / src / python / grpcio_reflection / grpc_version . py <nl> ppp b / src / python / grpcio_reflection / grpc_version . py <nl> <nl> <nl> # AUTO - GENERATED FROM ` $ REPO_ROOT / templates / src / python / grpcio_reflection / grpc_version . py . template ` ! ! ! <nl> <nl> - VERSION = ' 1 . 1 . 0 . dev0 ' <nl> + VERSION = ' 1 . 2 . 0 . dev0 ' <nl> mmm a / src / python / grpcio_tests / grpc_version . py <nl> ppp b / src / python / grpcio_tests / grpc_version . py <nl> <nl> <nl> # AUTO - GENERATED FROM ` $ REPO_ROOT / templates / src / python / grpcio_tests / grpc_version . py . template ` ! ! ! <nl> <nl> - VERSION = ' 1 . 1 . 0 . dev0 ' <nl> + VERSION = ' 1 . 2 . 0 . dev0 ' <nl> mmm a / src / ruby / lib / grpc / version . rb <nl> ppp b / src / ruby / lib / grpc / version . rb <nl> <nl> <nl> # GRPC contains the General RPC module . <nl> module GRPC <nl> - VERSION = ' 1 . 1 . 0 . dev ' <nl> + VERSION = ' 1 . 2 . 0 . dev ' <nl> end <nl> mmm a / src / ruby / tools / version . rb <nl> ppp b / src / ruby / tools / version . rb <nl> <nl> <nl> module GRPC <nl> module Tools <nl> - VERSION = ' 1 . 1 . 0 . dev ' <nl> + VERSION = ' 1 . 2 . 0 . dev ' <nl> end <nl> end <nl> mmm a / templates / Makefile . template <nl> ppp b / templates / Makefile . template <nl> <nl> $ { arg } _ $ { name } = $ { args . get ( arg ) } <nl> % endif <nl> % endfor <nl> - % if args . get ( ' timeout_multiplier ' , 1 ) ! = 1 : <nl> - DEFINES_ $ { name } + = GRPC_TEST_SLOWDOWN_BUILD_FACTOR = $ { args . timeout_multiplier } <nl> - % endif <nl> <nl> % endfor <nl> <nl> mmm a / test / core / bad_client / bad_client . c <nl> ppp b / test / core / bad_client / bad_client . c <nl> void grpc_run_bad_client_test ( <nl> <nl> / * Await completion * / <nl> GPR_ASSERT ( <nl> - gpr_event_wait ( & a . done_write , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) ) ) ; <nl> + gpr_event_wait ( & a . done_write , grpc_timeout_seconds_to_deadline ( 5 ) ) ) ; <nl> <nl> if ( flags & GRPC_BAD_CLIENT_DISCONNECT ) { <nl> grpc_endpoint_shutdown ( & exec_ctx , sfd . client , <nl> void grpc_run_bad_client_test ( <nl> sfd . client = NULL ; <nl> } <nl> <nl> - GPR_ASSERT ( gpr_event_wait ( & a . done_thd , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) ) ) ; <nl> + GPR_ASSERT ( gpr_event_wait ( & a . done_thd , grpc_timeout_seconds_to_deadline ( 5 ) ) ) ; <nl> <nl> if ( sfd . client ! = NULL ) { <nl> / / Validate client stream , if requested . <nl> void grpc_run_bad_client_test ( <nl> & read_done_closure ) ; <nl> grpc_exec_ctx_finish ( & exec_ctx ) ; <nl> GPR_ASSERT ( <nl> - gpr_event_wait ( & args . read_done , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) ) ) ; <nl> + gpr_event_wait ( & args . read_done , grpc_timeout_seconds_to_deadline ( 5 ) ) ) ; <nl> grpc_slice_buffer_destroy_internal ( & exec_ctx , & args . incoming ) ; <nl> } <nl> / / Shutdown . <nl> void grpc_run_bad_client_test ( <nl> } <nl> grpc_server_shutdown_and_notify ( a . server , a . cq , NULL ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - a . cq , NULL , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 1 ) , NULL ) <nl> + a . cq , NULL , grpc_timeout_seconds_to_deadline ( 1 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( a . server ) ; <nl> grpc_completion_queue_destroy ( a . cq ) ; <nl> mmm a / test / core / bad_client / tests / badreq . c <nl> ppp b / test / core / bad_client / tests / badreq . c <nl> static void verifier ( grpc_server * server , grpc_completion_queue * cq , <nl> void * registered_method ) { <nl> while ( grpc_server_has_open_connections ( server ) ) { <nl> GPR_ASSERT ( grpc_completion_queue_next ( <nl> - cq , GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( 20 ) , NULL ) <nl> + cq , grpc_timeout_milliseconds_to_deadline ( 20 ) , NULL ) <nl> . type = = GRPC_QUEUE_TIMEOUT ) ; <nl> } <nl> } <nl> mmm a / test / core / bad_client / tests / connection_prefix . c <nl> ppp b / test / core / bad_client / tests / connection_prefix . c <nl> static void verifier ( grpc_server * server , grpc_completion_queue * cq , <nl> void * registered_method ) { <nl> while ( grpc_server_has_open_connections ( server ) ) { <nl> GPR_ASSERT ( grpc_completion_queue_next ( <nl> - cq , GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( 20 ) , NULL ) <nl> + cq , grpc_timeout_milliseconds_to_deadline ( 20 ) , NULL ) <nl> . type = = GRPC_QUEUE_TIMEOUT ) ; <nl> } <nl> } <nl> mmm a / test / core / bad_client / tests / headers . c <nl> ppp b / test / core / bad_client / tests / headers . c <nl> static void verifier ( grpc_server * server , grpc_completion_queue * cq , <nl> void * registered_method ) { <nl> while ( grpc_server_has_open_connections ( server ) ) { <nl> GPR_ASSERT ( grpc_completion_queue_next ( <nl> - cq , GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( 20 ) , NULL ) <nl> + cq , grpc_timeout_milliseconds_to_deadline ( 20 ) , NULL ) <nl> . type = = GRPC_QUEUE_TIMEOUT ) ; <nl> } <nl> } <nl> mmm a / test / core / bad_client / tests / initial_settings_frame . c <nl> ppp b / test / core / bad_client / tests / initial_settings_frame . c <nl> static void verifier ( grpc_server * server , grpc_completion_queue * cq , <nl> void * registered_method ) { <nl> while ( grpc_server_has_open_connections ( server ) ) { <nl> GPR_ASSERT ( grpc_completion_queue_next ( <nl> - cq , GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( 20 ) , NULL ) <nl> + cq , grpc_timeout_milliseconds_to_deadline ( 20 ) , NULL ) <nl> . type = = GRPC_QUEUE_TIMEOUT ) ; <nl> } <nl> } <nl> mmm a / test / core / bad_client / tests / simple_request . c <nl> ppp b / test / core / bad_client / tests / simple_request . c <nl> static void failure_verifier ( grpc_server * server , grpc_completion_queue * cq , <nl> void * registered_method ) { <nl> while ( grpc_server_has_open_connections ( server ) ) { <nl> GPR_ASSERT ( grpc_completion_queue_next ( <nl> - cq , GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( 20 ) , NULL ) <nl> + cq , grpc_timeout_milliseconds_to_deadline ( 20 ) , NULL ) <nl> . type = = GRPC_QUEUE_TIMEOUT ) ; <nl> } <nl> } <nl> mmm a / test / core / bad_client / tests / unknown_frame . c <nl> ppp b / test / core / bad_client / tests / unknown_frame . c <nl> static void verifier ( grpc_server * server , grpc_completion_queue * cq , <nl> void * registered_method ) { <nl> while ( grpc_server_has_open_connections ( server ) ) { <nl> GPR_ASSERT ( grpc_completion_queue_next ( <nl> - cq , GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( 20 ) , NULL ) <nl> + cq , grpc_timeout_milliseconds_to_deadline ( 20 ) , NULL ) <nl> . type = = GRPC_QUEUE_TIMEOUT ) ; <nl> } <nl> } <nl> mmm a / test / core / bad_client / tests / window_overflow . c <nl> ppp b / test / core / bad_client / tests / window_overflow . c <nl> static void verifier ( grpc_server * server , grpc_completion_queue * cq , <nl> void * registered_method ) { <nl> while ( grpc_server_has_open_connections ( server ) ) { <nl> GPR_ASSERT ( grpc_completion_queue_next ( <nl> - cq , GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( 20 ) , NULL ) <nl> + cq , grpc_timeout_milliseconds_to_deadline ( 20 ) , NULL ) <nl> . type = = GRPC_QUEUE_TIMEOUT ) ; <nl> } <nl> } <nl> mmm a / test / core / bad_ssl / bad_ssl_test . c <nl> ppp b / test / core / bad_ssl / bad_ssl_test . c <nl> static void run_test ( const char * target , size_t nops ) { <nl> grpc_slice details ; <nl> grpc_status_code status ; <nl> grpc_call_error error ; <nl> - gpr_timespec deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) ; <nl> + gpr_timespec deadline = grpc_timeout_seconds_to_deadline ( 5 ) ; <nl> grpc_completion_queue * cq = grpc_completion_queue_create ( NULL ) ; <nl> cq_verifier * cqv = cq_verifier_create ( cq ) ; <nl> <nl> mmm a / test / core / bad_ssl / server_common . c <nl> ppp b / test / core / bad_ssl / server_common . c <nl> void bad_ssl_run ( grpc_server * server ) { <nl> gpr_log ( GPR_INFO , " Shutting down due to SIGINT " ) ; <nl> grpc_server_shutdown_and_notify ( server , cq , NULL ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - cq , NULL , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + cq , NULL , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_completion_queue_shutdown ( cq ) ; <nl> shutdown_started = 1 ; <nl> mmm a / test / core / census / mlog_test . c <nl> ppp b / test / core / census / mlog_test . c <nl> static void writer_thread ( void * arg ) { <nl> " written \ n " , <nl> args - > index , records_written , args - > num_records ) ; <nl> } <nl> - gpr_sleep_until ( GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( 10 ) ) ; <nl> + gpr_sleep_until ( grpc_timeout_milliseconds_to_deadline ( 10 ) ) ; <nl> } <nl> } <nl> / / Done . Decrement count and signal . <nl> mmm a / test / core / client_channel / lb_policies_test . c <nl> ppp b / test / core / client_channel / lb_policies_test . c <nl> static request_sequences perform_request ( servers_fixture * f , <nl> grpc_call_start_batch ( c , ops , ( size_t ) ( op - ops ) , tag ( 1 ) , NULL ) ) ; <nl> <nl> s_idx = - 1 ; <nl> - while ( ( ev = grpc_completion_queue_next ( <nl> - f - > cq , GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( RETRY_TIMEOUT ) , NULL ) ) <nl> - . type ! = GRPC_QUEUE_TIMEOUT ) { <nl> + while ( <nl> + ( ev = grpc_completion_queue_next ( <nl> + f - > cq , grpc_timeout_milliseconds_to_deadline ( RETRY_TIMEOUT ) , NULL ) ) <nl> + . type ! = GRPC_QUEUE_TIMEOUT ) { <nl> GPR_ASSERT ( ev . type = = GRPC_OP_COMPLETE ) ; <nl> read_tag = ( ( int ) ( intptr_t ) ev . tag ) ; <nl> const grpc_connectivity_state conn_state = <nl> static request_sequences perform_request ( servers_fixture * f , <nl> } <nl> } <nl> <nl> - GPR_ASSERT ( grpc_completion_queue_next ( <nl> - f - > cq , GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( RETRY_TIMEOUT ) , NULL ) <nl> - . type = = GRPC_QUEUE_TIMEOUT ) ; <nl> + GPR_ASSERT ( <nl> + grpc_completion_queue_next ( <nl> + f - > cq , grpc_timeout_milliseconds_to_deadline ( RETRY_TIMEOUT ) , NULL ) <nl> + . type = = GRPC_QUEUE_TIMEOUT ) ; <nl> <nl> grpc_metadata_array_destroy ( & rdata - > initial_metadata_recv ) ; <nl> grpc_metadata_array_destroy ( & rdata - > trailing_metadata_recv ) ; <nl> static void test_ping ( ) { <nl> READY is reached * / <nl> while ( state ! = GRPC_CHANNEL_READY ) { <nl> grpc_channel_watch_connectivity_state ( <nl> - client , state , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 3 ) , f - > cq , tag ( 99 ) ) ; <nl> + client , state , grpc_timeout_seconds_to_deadline ( 3 ) , f - > cq , tag ( 99 ) ) ; <nl> CQ_EXPECT_COMPLETION ( cqv , tag ( 99 ) , 1 ) ; <nl> cq_verify ( cqv ) ; <nl> state = grpc_channel_check_connectivity_state ( client , 0 ) ; <nl> mmm a / test / core / client_channel / resolvers / dns_resolver_connectivity_test . c <nl> ppp b / test / core / client_channel / resolvers / dns_resolver_connectivity_test . c <nl> static void on_done ( grpc_exec_ctx * exec_ctx , void * ev , grpc_error * error ) { <nl> static bool wait_loop ( int deadline_seconds , gpr_event * ev ) { <nl> while ( deadline_seconds ) { <nl> gpr_log ( GPR_DEBUG , " Test : waiting for % d more seconds " , deadline_seconds ) ; <nl> - if ( gpr_event_wait ( ev , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 1 ) ) ) return true ; <nl> + if ( gpr_event_wait ( ev , grpc_timeout_seconds_to_deadline ( 1 ) ) ) return true ; <nl> deadline_seconds - - ; <nl> <nl> grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT ; <nl> mmm a / test / core / end2end / connection_refused_test . c <nl> ppp b / test / core / end2end / connection_refused_test . c <nl> static void * tag ( intptr_t i ) { return ( void * ) i ; } <nl> static void run_test ( bool wait_for_ready , bool use_service_config ) { <nl> grpc_channel * chan ; <nl> grpc_call * call ; <nl> - gpr_timespec deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 2 ) ; <nl> + gpr_timespec deadline = grpc_timeout_seconds_to_deadline ( 2 ) ; <nl> grpc_completion_queue * cq ; <nl> cq_verifier * cqv ; <nl> grpc_op ops [ 6 ] ; <nl> mmm a / test / core / end2end / cq_verifier . c <nl> ppp b / test / core / end2end / cq_verifier . c <nl> static void fail_no_event_received ( cq_verifier * v ) { <nl> } <nl> <nl> void cq_verify ( cq_verifier * v ) { <nl> - const gpr_timespec deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 10 ) ; <nl> + const gpr_timespec deadline = grpc_timeout_seconds_to_deadline ( 10 ) ; <nl> while ( v - > first_expectation ! = NULL ) { <nl> grpc_event ev = grpc_completion_queue_next ( v - > cq , deadline , NULL ) ; <nl> if ( ev . type = = GRPC_QUEUE_TIMEOUT ) { <nl> mmm a / test / core / end2end / cq_verifier_native . c <nl> ppp b / test / core / end2end / cq_verifier_native . c <nl> void cq_verifier_set_first_expectation ( cq_verifier * v , expectation * e ) { <nl> <nl> grpc_event cq_verifier_next_event ( cq_verifier * v , int timeout_seconds ) { <nl> const gpr_timespec deadline = <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( timeout_seconds ) ; <nl> + grpc_timeout_seconds_to_deadline ( timeout_seconds ) ; <nl> return grpc_completion_queue_next ( v - > cq , deadline , NULL ) ; <nl> } <nl> <nl> mmm a / test / core / end2end / dualstack_socket_test . c <nl> ppp b / test / core / end2end / dualstack_socket_test . c <nl> <nl> static void * tag ( intptr_t i ) { return ( void * ) i ; } <nl> <nl> static gpr_timespec ms_from_now ( int ms ) { <nl> - return GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( ms ) ; <nl> + return grpc_timeout_milliseconds_to_deadline ( ms ) ; <nl> } <nl> <nl> static void drain_cq ( grpc_completion_queue * cq ) { <nl> void test_connect ( const char * server_host , const char * client_host , int port , <nl> / * Destroy server . * / <nl> grpc_server_shutdown_and_notify ( server , cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( server ) ; <nl> grpc_completion_queue_shutdown ( cq ) ; <nl> mmm a / test / core / end2end / fixtures / h2_full + trace . c <nl> ppp b / test / core / end2end / fixtures / h2_full + trace . c <nl> int main ( int argc , char * * argv ) { <nl> gpr_setenv ( " GRPC_TRACE " , " doesnt - exist , http , all " ) ; <nl> <nl> # ifdef GRPC_POSIX_SOCKET <nl> - g_fixture_slowdown_factor = isatty ( STDOUT_FILENO ) ? 10 . 0 : 1 . 0 ; <nl> + g_fixture_slowdown_factor = isatty ( STDOUT_FILENO ) ? 10 : 1 ; <nl> # else <nl> - g_fixture_slowdown_factor = 10 . 0 ; <nl> + g_fixture_slowdown_factor = 10 ; <nl> # endif <nl> <nl> grpc_test_init ( argc , argv ) ; <nl> mmm a / test / core / end2end / fixtures / h2_sockpair + trace . c <nl> ppp b / test / core / end2end / fixtures / h2_sockpair + trace . c <nl> int main ( int argc , char * * argv ) { <nl> code paths in trace . c to be taken * / <nl> gpr_setenv ( " GRPC_TRACE " , " doesnt - exist , http , all " ) ; <nl> # ifdef GRPC_POSIX_SOCKET <nl> - g_fixture_slowdown_factor = isatty ( STDOUT_FILENO ) ? 10 . 0 : 1 . 0 ; <nl> + g_fixture_slowdown_factor = isatty ( STDOUT_FILENO ) ? 10 : 1 ; <nl> # else <nl> - g_fixture_slowdown_factor = 10 . 0 ; <nl> + g_fixture_slowdown_factor = 10 ; <nl> # endif <nl> <nl> grpc_test_init ( argc , argv ) ; <nl> mmm a / test / core / end2end / fixtures / h2_sockpair_1byte . c <nl> ppp b / test / core / end2end / fixtures / h2_sockpair_1byte . c <nl> static grpc_end2end_test_config configs [ ] = { <nl> int main ( int argc , char * * argv ) { <nl> size_t i ; <nl> <nl> - g_fixture_slowdown_factor = 2 . 0 ; <nl> + g_fixture_slowdown_factor = 2 ; <nl> <nl> grpc_test_init ( argc , argv ) ; <nl> grpc_end2end_tests_pre_init ( ) ; <nl> mmm a / test / core / end2end / fixtures / h2_ssl_cert . c <nl> ppp b / test / core / end2end / fixtures / h2_ssl_cert . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / fuzzers / api_fuzzer . c <nl> ppp b / test / core / end2end / fuzzers / api_fuzzer . c <nl> typedef struct call_state { <nl> / / array of slices to unref <nl> size_t num_slices_to_unref ; <nl> size_t cap_slices_to_unref ; <nl> - grpc_slice * slices_to_unref ; <nl> + grpc_slice * * slices_to_unref ; <nl> <nl> struct call_state * next ; <nl> struct call_state * prev ; <nl> static call_state * maybe_delete_call_state ( call_state * call ) { <nl> grpc_call_details_destroy ( & call - > call_details ) ; <nl> <nl> for ( size_t i = 0 ; i < call - > num_slices_to_unref ; i + + ) { <nl> - grpc_slice_unref ( call - > slices_to_unref [ i ] ) ; <nl> + grpc_slice_unref ( * call - > slices_to_unref [ i ] ) ; <nl> + gpr_free ( call - > slices_to_unref [ i ] ) ; <nl> } <nl> for ( size_t i = 0 ; i < call - > num_to_free ; i + + ) { <nl> gpr_free ( call - > to_free [ i ] ) ; <nl> static grpc_slice * add_slice_to_unref ( call_state * call , grpc_slice s ) { <nl> gpr_realloc ( call - > slices_to_unref , <nl> sizeof ( * call - > slices_to_unref ) * call - > cap_slices_to_unref ) ; <nl> } <nl> - call - > slices_to_unref [ call - > num_slices_to_unref + + ] = s ; <nl> - return & call - > slices_to_unref [ call - > num_slices_to_unref - 1 ] ; <nl> + call - > slices_to_unref [ call - > num_slices_to_unref ] = <nl> + gpr_malloc ( sizeof ( grpc_slice ) ) ; <nl> + * call - > slices_to_unref [ call - > num_slices_to_unref + + ] = s ; <nl> + return call - > slices_to_unref [ call - > num_slices_to_unref - 1 ] ; <nl> } <nl> <nl> static void read_metadata ( input_stream * inp , size_t * count , <nl> new file mode 100644 <nl> index 00000000000 . . 88f358cf9a8 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 008d276f01f9371a5956cccf2eeeadb790728a84 differ <nl> new file mode 100644 <nl> index 00000000000 . . 6945952ac56 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 00ba96baafa4595f2d41c2fcf0a27f4e9be5c44d differ <nl> new file mode 100644 <nl> index 00000000000 . . b0583e0b7d3 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 0163bae995fe67a902eabf9f2644726d4767184c differ <nl> new file mode 100644 <nl> index 00000000000 . . c54a6b40280 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 03eb66a763e065772bbb09e9a55baf081814ff25 differ <nl> new file mode 100644 <nl> index 00000000000 . . e08913c0029 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 053b47093c2145d00b8d53ea58b80afcc876109b differ <nl> new file mode 100644 <nl> index 00000000000 . . cf961eb4035 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 06a298ad14533924c9fcb2df0d462c44a206f64b differ <nl> new file mode 100644 <nl> index 00000000000 . . 87426c9da6e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 06d20c59bcbeb0deff39619455a713691191bccd differ <nl> new file mode 100644 <nl> index 00000000000 . . 06986fe7aeb <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 07867ad24a27ff8675dc36a1d8da833f9ee9434b differ <nl> new file mode 100644 <nl> index 00000000000 . . 489deadb235 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 0914e4f6ee18c9d15b8df1858a7745b86d875970 differ <nl> new file mode 100644 <nl> index 00000000000 . . 4435741946b <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 091f02cc858a89253748b7d1051b8728d0e34015 differ <nl> new file mode 100644 <nl> index 00000000000 . . d9b1ae3fcea <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 095e3fa32a271ef9326d4dcd59fbd003977fdcfa differ <nl> new file mode 100644 <nl> index 00000000000 . . 17554b479ac <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 097f758de0f31691fac6637bf8ac5ac946d5b079 differ <nl> new file mode 100644 <nl> index 00000000000 . . f16a04a177e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 099cc7faaaa2620df22c9bcd6e6d49730e4788b3 differ <nl> new file mode 100644 <nl> index 00000000000 . . c8d28f8d074 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 0a3f1f614446ded112775bbbc5c61513ad78e12e differ <nl> new file mode 100644 <nl> index 00000000000 . . d0f43e9d918 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 0a4b84c2a50ba66f06c99e945912972cdcfc96be differ <nl> new file mode 100644 <nl> index 00000000000 . . f6e83c8a5bb <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 0ab436006cb2ecd8ecb2400fed982886e4589360 differ <nl> new file mode 100644 <nl> index 00000000000 . . e6a2e760bb2 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 0c26c7da58087406c491efb8f8f721eb934e6a5a differ <nl> new file mode 100644 <nl> index 00000000000 . . 5312ff2ddd6 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 0d25b57b2ac671377f8042015896619c09a2f9b5 differ <nl> new file mode 100644 <nl> index 00000000000 . . 119f1516760 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 0dfc84a6703bdbe9a6acb72e178353d5d69f5814 differ <nl> new file mode 100644 <nl> index 00000000000 . . ac4d9dc1edf <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 0e7a05178db60007ff4a8dea0e22b60825976c51 differ <nl> new file mode 100644 <nl> index 00000000000 . . cdd1a44c897 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 0ec11a92c1830b4c2f56a0979dd9e3c7162bd624 differ <nl> new file mode 100644 <nl> index 00000000000 . . 40ae0b51370 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 0feaff8d6ad28109f35d6c6080504456b242c8ce differ <nl> new file mode 100644 <nl> index 00000000000 . . d0412a2385a <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 10b47823e11c988222f5f778146f9cf922b286bf differ <nl> new file mode 100644 <nl> index 00000000000 . . 9be7c77a7b3 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 128a7ef7f9b87c4f299d3cafe2dfdb9b161756bd differ <nl> new file mode 100644 <nl> index 00000000000 . . 54d8626e79c <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 14ee9fbfe5284650e3a3de83ecc3e09abdc48c16 differ <nl> new file mode 100644 <nl> index 00000000000 . . 0a02d52bc21 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 163cf93cebfb32d617830aa4e69e8b5f59bd3a08 differ <nl> new file mode 100644 <nl> index 00000000000 . . 80a59659e1a <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 17582452219fc4a27058a789f416a56631461296 differ <nl> new file mode 100644 <nl> index 00000000000 . . 64ceda1e164 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 1776f4c32c11490c65b81d0b7ae2ece4a3d1e9a7 differ <nl> new file mode 100644 <nl> index 00000000000 . . 6918b8a498b <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 17a1354d2bfe982e9db1bac550fe01dd105f81c3 differ <nl> new file mode 100644 <nl> index 00000000000 . . c7c2613e755 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 17bc3a2ae619ef05ad35b147f4916c0453ebacf1 differ <nl> new file mode 100644 <nl> index 00000000000 . . 28b70b3cfff <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 17e562d437fd283e58a5621c33b13191333b279f differ <nl> new file mode 100644 <nl> index 00000000000 . . f8c75b573c5 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 1847f224b543fd0592e9cf365b8eddb61c140d82 differ <nl> new file mode 100644 <nl> index 00000000000 . . 38d23faffd5 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 19fdd6cdeee7a5cbc991d0e3242c23d5aaff2fbf differ <nl> new file mode 100644 <nl> index 00000000000 . . b67ad3729d6 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 1b331dfc1d9d535063f0cc6f7a709499a5f8cb59 differ <nl> new file mode 100644 <nl> index 00000000000 . . bc8e2331a5e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 1b50ba2e44a359f37205ae476682495cff96838d differ <nl> new file mode 100644 <nl> index 00000000000 . . 2591059a44e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 1c968074e9dcd8e9922e6c01ecfedcaf7b2fe5a3 differ <nl> new file mode 100644 <nl> index 00000000000 . . 006d8e84376 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 1ca16103f5175b0607b579e0c3734b59843e27b0 differ <nl> new file mode 100644 <nl> index 00000000000 . . 3869d83f4f1 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 1cae148c387cd20a1742d902543c2c8396589479 differ <nl> new file mode 100644 <nl> index 00000000000 . . 37a9bcf9d34 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 1cfd4875b6708b439f1db655abfdd57c1141348a differ <nl> new file mode 100644 <nl> index 00000000000 . . a4c1921b5ef <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 1d10780f4cb83cb9f6762548ae133d2115c4354f differ <nl> new file mode 100644 <nl> index 00000000000 . . ffa1c18aa7d <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 1dba0d6c34b03b19e648e2fc9cb3aa7a13e713a2 differ <nl> new file mode 100644 <nl> index 00000000000 . . 52fdbc5c471 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 1de191d81c4c7bf0e026bff0a040165c084fd630 differ <nl> new file mode 100644 <nl> index 00000000000 . . 18b642caa21 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 1e1f1e0230004479b502603a1b60552192559679 differ <nl> new file mode 100644 <nl> index 00000000000 . . 27491bad75c <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 1f3f61bbe6ea0c7e9b447f134742b3e7909b9198 differ <nl> new file mode 100644 <nl> index 00000000000 . . 6dee8f3e8d7 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 224b2255a1bd250102481abc3e823090650e231e differ <nl> new file mode 100644 <nl> index 00000000000 . . b5f6a8572cc <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 22c7bfb3460529c77255e9cb82ef8f7d8381f8f3 differ <nl> new file mode 100644 <nl> index 00000000000 . . 735003e24e3 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 23746fe5e477430aec8b12e9d7de0f86f6a6e191 differ <nl> new file mode 100644 <nl> index 00000000000 . . 667761ed631 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 247a7d3e0061dd0f32c3f6b2fc43a08e2cc8cf72 differ <nl> new file mode 100644 <nl> index 00000000000 . . 1eaa5be9ee3 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 26794761df5dc7f093d2395b81a32af5e6b54392 differ <nl> new file mode 100644 <nl> index 00000000000 . . abf41779449 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 268d8763bb7846f4c9ebb4fbea476a5bc8fcc389 differ <nl> new file mode 100644 <nl> index 00000000000 . . 3e05110d4db <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 289c2b6211858aa4a46b5b489bc4c9dd47828d21 differ <nl> new file mode 100644 <nl> index 00000000000 . . 17031bab652 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 28cbfc7c1b760d216cc592a273088b31833ee707 differ <nl> new file mode 100644 <nl> index 00000000000 . . c31dfa78073 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 28fc3136371b5bcac84045ab6cc93e77298760e2 differ <nl> new file mode 100644 <nl> index 00000000000 . . 0e8dcdbec13 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 2bb76eff88c5af98c4b8828047837fe97b50cfeb differ <nl> new file mode 100644 <nl> index 00000000000 . . 366221f79b8 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 2ce3268455c461a30eb30f4792087df411548c13 differ <nl> new file mode 100644 <nl> index 00000000000 . . a4fb2515423 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 2d03c424dd0677a68f28bb94536f49844d79d00a differ <nl> new file mode 100644 <nl> index 00000000000 . . e03e3b83466 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 2dbe958ef23ade1b8bbb9669e590fa99454970b4 differ <nl> new file mode 100644 <nl> index 00000000000 . . 61278e101fb <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 2df7ea9c0c488fc8f79d33b6bce5667a2f051a65 differ <nl> new file mode 100644 <nl> index 00000000000 . . da5b4523d47 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 2feac28b1f508d6086f4cb0972800a77e1d01201 differ <nl> new file mode 100644 <nl> index 00000000000 . . f38bf0e0cb6 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 307aaef3b3982cf8d4780a1f896d5392037c5db2 differ <nl> new file mode 100644 <nl> index 00000000000 . . 380f2805f0f <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 3082fa77cc2942ae425a6577d1f9c0dddd2949be differ <nl> new file mode 100644 <nl> index 00000000000 . . 3cd23c5d8e5 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 308fbf16b3f3747423b2ff69ef5930b01ca9b728 differ <nl> new file mode 100644 <nl> index 00000000000 . . 1fbfcfe3b2e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 30d2e4b3cac45cbcfe76459c90c49e085914c154 differ <nl> new file mode 100644 <nl> index 00000000000 . . 7ace4ffc846 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 31d8226b1d767fc895e87d7feede0e2d7c6c0b66 differ <nl> new file mode 100644 <nl> index 00000000000 . . 378afc002f3 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 33252c0d4edb12370235c0179abd87a5efb59d29 differ <nl> new file mode 100644 <nl> index 00000000000 . . dc8950f16f4 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 33d926a04c1868c3393b3129968ffd32049a1c64 differ <nl> new file mode 100644 <nl> index 00000000000 . . df5e44292ea <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 33f0e1b78dd158df720604cbb4c9a0c90eece435 differ <nl> new file mode 100644 <nl> index 00000000000 . . 74452235d90 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 34e2445f42fd82c5ce229782a93764def3aae0e7 differ <nl> new file mode 100644 <nl> index 00000000000 . . 348387f6fe8 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 35d6503b48b5acc5486a158696ae98a98f46e1a4 differ <nl> new file mode 100644 <nl> index 00000000000 . . e56a34bb71f <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 35ea066b0fc90521bd8401ef4c52cdc9897d35d4 differ <nl> new file mode 100644 <nl> index 00000000000 . . 945061292da <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 3698d88414f52b7c4759bfdadb53161b226faf8c differ <nl> new file mode 100644 <nl> index 00000000000 . . 214d1b660d7 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 36dd4f4239b63b9cf379b354de0dc72e6356fba5 differ <nl> new file mode 100644 <nl> index 00000000000 . . 22707d973f0 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 38259d219a41c1bc60e3867dc60e3473f98cef64 differ <nl> new file mode 100644 <nl> index 00000000000 . . 6feaf9e8d05 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 390daee799863cdd0533f35b15b5c0a4f5d79a79 differ <nl> new file mode 100644 <nl> index 00000000000 . . a53d26dead6 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 3c942f9491b1e8b5bb9761a4dbb1bc7165850dfc differ <nl> new file mode 100644 <nl> index 00000000000 . . e46e0ab65b4 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 3c9a414ad8fcc53c3271bbc8375086d8d1fa450c differ <nl> new file mode 100644 <nl> index 00000000000 . . 62447e4f081 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 3cac506501825fadf2e4adf7619d16f72cfd8832 differ <nl> new file mode 100644 <nl> index 00000000000 . . 4dbb2b95447 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 3cc56c99c6046f0d66c50c4062d90608064fd742 differ <nl> new file mode 100644 <nl> index 00000000000 . . b6363011f3d <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 3d929a8f8e77e038ddaecf9d149189cfeeec30fc differ <nl> new file mode 100644 <nl> index 00000000000 . . e51ac9d8a9c <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 3de19989758b5b68b29af3dfc6c0e55d414dca32 differ <nl> new file mode 100644 <nl> index 00000000000 . . 26735fe923e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 3e82319f1a44ea9224d65feb07ee0ef622709dac differ <nl> new file mode 100644 <nl> index 00000000000 . . 81687230a1a <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 4004d9ccc668572796770fb3401376844e1574ae differ <nl> new file mode 100644 <nl> index 00000000000 . . 75d8f1c0a68 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 409d7e2c0173b5a00a475f79e2fbdbe596d8368a differ <nl> new file mode 100644 <nl> index 00000000000 . . 45223cd69a7 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 421feb3fe383541082a65a447a51b4af991ceb7e differ <nl> new file mode 100644 <nl> index 00000000000 . . 04acde15fe1 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 4239c3636053665277d07bafda37ee84c114b13a differ <nl> new file mode 100644 <nl> index 00000000000 . . 3e0a69e0592 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 426b7f180ab26cf276a223246d4d6bd972ccf55a differ <nl> new file mode 100644 <nl> index 00000000000 . . 344491e6101 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 43f8e0abe3f647350ab1d8d368cca9af6ca47729 differ <nl> new file mode 100644 <nl> index 00000000000 . . 9f89f267785 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 4523e89844538d8de502907f143c35624182f76c differ <nl> new file mode 100644 <nl> index 00000000000 . . 9ebd8ae533e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 453861de5ab948236f13ebff66c8e82e4e789db6 differ <nl> new file mode 100644 <nl> index 00000000000 . . 34bdf1fc73e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 46e1492e19d0cffdadc1050cc22d505b4e057759 differ <nl> new file mode 100644 <nl> index 00000000000 . . 860a36c6dc5 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 4725b858491e1517af1032efba6bb198f39fd62d differ <nl> new file mode 100644 <nl> index 00000000000 . . f472b3ba560 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 48062d4824e8ba697cdd16a46b85d82ff445e649 differ <nl> new file mode 100644 <nl> index 00000000000 . . e94c7cb43cf <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 4857011f92ceaed4fee4d7612e1c46930903c95b differ <nl> new file mode 100644 <nl> index 00000000000 . . 3f0b5edf146 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 48c1691a919f1055f748e43cd799770f00c1c38a differ <nl> new file mode 100644 <nl> index 00000000000 . . b5418cf46d3 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 49254390bbc7e7b9eb58ddb1ac54a1e7eacee168 differ <nl> new file mode 100644 <nl> index 00000000000 . . 7ad87be818d <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 4a5a1abe7b402338c625013caa9bc8464a3d0bf2 differ <nl> new file mode 100644 <nl> index 00000000000 . . 08cdf0e22e9 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 4ad1a61051d0db46638b774c61392b9d1c360410 differ <nl> new file mode 100644 <nl> index 00000000000 . . 651d85f44be <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 4aecde7ffaea881f42e693858b25c334df711b27 differ <nl> new file mode 100644 <nl> index 00000000000 . . 23a36273dcf <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 4b0e9a84edc3eb0e6c377e860f5ecfca1bf64baa differ <nl> new file mode 100644 <nl> index 00000000000 . . a2e1b259bf2 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 5035db01a56a34061837c4d0214f6e5112d81ff3 differ <nl> new file mode 100644 <nl> index 00000000000 . . 58fba3d841a <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 503649137cea18ced8a57e7c644162bee8885ed1 differ <nl> new file mode 100644 <nl> index 00000000000 . . a8d3674c7e8 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 51716d5683d5c762298fdfa6b57ecf17d6892fe6 differ <nl> new file mode 100644 <nl> index 00000000000 . . c27014a9283 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 51adadd4662ab165a203afdbdbc470b62ac24d36 differ <nl> new file mode 100644 <nl> index 00000000000 . . 44746e47bde <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 52ac4e5a6c433b7e135e817b797f9bc85d4c619a differ <nl> new file mode 100644 <nl> index 00000000000 . . f6d08b9b920 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 536b5c0bf942c03bf9d4a4cc27c97c1230128ede differ <nl> new file mode 100644 <nl> index 00000000000 . . dd161f0425c <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 53e7030d5de06dcf80e1a60aa467e6e31bec6515 differ <nl> new file mode 100644 <nl> index 00000000000 . . 459a76b1145 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 54168e5030c8a7cdd58162dee7c2583bb4caaf64 differ <nl> new file mode 100644 <nl> index 00000000000 . . 180929895cc <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 5559428fa9a1f1701e81eec11a3571be403bf627 differ <nl> new file mode 100644 <nl> index 00000000000 . . d02a29d6126 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 55a71f74f233ea8ce88967c5660aaa532fbc985c differ <nl> new file mode 100644 <nl> index 00000000000 . . 8118bbbbb57 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 55da9fe903905e9852dedf6b664a4a589efeeec5 differ <nl> new file mode 100644 <nl> index 00000000000 . . 1d6e37a6e4b <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 567026bafbad3be6a7bd430577e7d39ec3d56af6 differ <nl> new file mode 100644 <nl> index 00000000000 . . 4f77004c7fb <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 56f240463ef197b49c7e271e74412f62909974dc differ <nl> new file mode 100644 <nl> index 00000000000 . . af1031c03f5 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 57b087d753a6af79c0b58ca2c9aa5c92bc18a6a5 differ <nl> new file mode 100644 <nl> index 00000000000 . . efc8af908d0 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 59b547627a6b1aef96f6c5e3b7dc08c3e1244368 differ <nl> new file mode 100644 <nl> index 00000000000 . . 1cce5cecffa <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 5ac0e42338f7b064f5c23697f1174a10b42e7ed8 differ <nl> new file mode 100644 <nl> index 00000000000 . . 9a2cafda5fa <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 5ac8cb08604c86b9e8ca24482ca963eddac2efbe differ <nl> new file mode 100644 <nl> index 00000000000 . . 9fa502fe695 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 5bc4eddc2a2881d4b6b4f9532f4fb381e4cc9529 differ <nl> new file mode 100644 <nl> index 00000000000 . . c42fa29f510 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 5be0001be32d9e619769c7cc6cb9f541efe4996c differ <nl> new file mode 100644 <nl> index 00000000000 . . ee6dfef51a3 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 5c6debdb92eb9089773cc8d092d7f62d521ae029 differ <nl> new file mode 100644 <nl> index 00000000000 . . 6a74f12ef66 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 5cfdc00a568d97b09e720a72eac7e5fbbf76247b differ <nl> new file mode 100644 <nl> index 00000000000 . . 65b8542d2b1 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 5da1a1a4ee88d2a2b6e9470dd7be9e2dd9eecc4d differ <nl> new file mode 100644 <nl> index 00000000000 . . e8de3ad5628 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 5e0c4179d297f5bafe86b9e256bf75d54cfd1fb0 differ <nl> new file mode 100644 <nl> index 00000000000 . . 783110dd22b <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 5eeb786fa5735ef9b98c40e205f2eba24223acfd differ <nl> new file mode 100644 <nl> index 00000000000 . . 25d6cdac558 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 5f3a4ed52525d1db60b45d79057a6e276395e562 differ <nl> new file mode 100644 <nl> index 00000000000 . . 2f4a3d9f346 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 5fbffd9d324ad078bf6f5fdd39e5e4a27afd5965 differ <nl> new file mode 100644 <nl> index 00000000000 . . 1a4e8afff38 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 6042b1bbaf3ceac51c11a472ea07a75e822b7bc5 differ <nl> new file mode 100644 <nl> index 00000000000 . . 5db740469d9 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 60eec02f3b3aa23b12261ed00163d122b24ab5af differ <nl> new file mode 100644 <nl> index 00000000000 . . 8959111a05d <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 6108ac96de85e973db42982eff9d2f877a36699d differ <nl> new file mode 100644 <nl> index 00000000000 . . 3dc4c18fd4a <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 62515c0e559e40838126e5be6ede5440875a3f70 differ <nl> new file mode 100644 <nl> index 00000000000 . . 722c8a67d32 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 63f1e7c7eb4d0ee635c3794993d2e2132cba72d4 differ <nl> new file mode 100644 <nl> index 00000000000 . . f5a526ce37f <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 64d1666dc1b1126bb99e3792040dff64b336ae36 differ <nl> new file mode 100644 <nl> index 00000000000 . . dd97b425edb <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 64d410e245db26eb7996c20bee1e3dfd77c43ebc differ <nl> new file mode 100644 <nl> index 00000000000 . . 4c2914d3ac6 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 6757865ccfef9bf8f1ba4302be9767758390fa92 differ <nl> new file mode 100644 <nl> index 00000000000 . . 554a83bf464 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 68359027351be494040cc9ae6d4ccfc248fe6fcd differ <nl> new file mode 100644 <nl> index 00000000000 . . 76d8c7dacdd <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 6951632faa6eee58b6480b7cae00ee8ea1223658 differ <nl> new file mode 100644 <nl> index 00000000000 . . 1d17649497c <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 69c6c28a67fe1b5ea32cab0f06564c59ec3fcbab differ <nl> new file mode 100644 <nl> index 00000000000 . . f25505780bd <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 6a2b1a1222017169ff83695bb42bf760c8126a2d differ <nl> new file mode 100644 <nl> index 00000000000 . . 3dee8d06ceb <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 6a3dee1cefadc15954dafe424c73b78a3b5c1b22 differ <nl> new file mode 100644 <nl> index 00000000000 . . dede6d1eceb <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 6ae25d59c9f771291edddc6c71d01c855883b99b differ <nl> new file mode 100644 <nl> index 00000000000 . . 35078764b74 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 6ed943877a76ab6b17443e5b194012d9008612ad differ <nl> new file mode 100644 <nl> index 00000000000 . . 8f838a4410e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 6eef551288136e9fb2d9de210b14148746203472 differ <nl> new file mode 100644 <nl> index 00000000000 . . f40f24f06a0 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 70cf4c8bdd833f8c62d8c89ef50d50008457f5ac differ <nl> new file mode 100644 <nl> index 00000000000 . . ce9f217b99e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 71403746b8e54a5f9b6fa1882a7ff5322180dd01 differ <nl> new file mode 100644 <nl> index 00000000000 . . 940e57971fd <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 71a0dd688553c753919c58d00c8e8db130726b3b differ <nl> new file mode 100644 <nl> index 00000000000 . . 3ca83e18fd3 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 71cbd5e4e98344dd16df8b21546439cdb0879e0f differ <nl> new file mode 100644 <nl> index 00000000000 . . 7d4f4402565 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 750668bd25d3c4d5c8ff863185749d31978b88e5 differ <nl> new file mode 100644 <nl> index 00000000000 . . 35af1284101 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 755e5b679c1bb2720590e166d5047588a0e2f8b0 differ <nl> new file mode 100644 <nl> index 00000000000 . . 7040b2fc200 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 75af1ed0b83b24a1d5201038a4b382d0ace6222f differ <nl> new file mode 100644 <nl> index 00000000000 . . 34240388e57 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 75cd5b751f530f494c224304b4024d490032e65a differ <nl> new file mode 100644 <nl> index 00000000000 . . 0bbc39c9c6f <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 75f9b79cacbfef018bb131af2e2ba0735b2640ec differ <nl> new file mode 100644 <nl> index 00000000000 . . 97890454d6f <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 76116b26156d91b16a70f28a126ed5f05ce55548 differ <nl> new file mode 100644 <nl> index 00000000000 . . 4c281a8555d <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 766995b9faa25c3b2c825413e5e9a702721de7fa differ <nl> new file mode 100644 <nl> index 00000000000 . . 8e31ee64e03 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 77f4f436f910c45f216fe4d3f9b631612ed09cf6 differ <nl> new file mode 100644 <nl> index 00000000000 . . 56d52f326df <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 780fc96dea7f78bb9d1a074efbd966b03d78d653 differ <nl> new file mode 100644 <nl> index 00000000000 . . d601edf985d <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 784ca396c157df8ba93bbe1e12c6d32609ef05a1 differ <nl> new file mode 100644 <nl> index 00000000000 . . 705aef29988 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 79163c87e1c3340d05799cf27f1e898a932d1001 differ <nl> new file mode 100644 <nl> index 00000000000 . . 2972f6c0c51 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 795912f4ca380c73a3a3c956b1cba1e9051d92bf differ <nl> new file mode 100644 <nl> index 00000000000 . . 561c5f7e2c6 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 7b3a99b69df9931fe12dfce5d8c5153f43bf4fd9 differ <nl> new file mode 100644 <nl> index 00000000000 . . 3b5933e3c90 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 7b5a71e770bf9eed928f5e552a7659f8ad8a8b84 differ <nl> new file mode 100644 <nl> index 00000000000 . . be188e6cbcb <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 7cae7e5c67636a72a00785e04cc55af57b9e1318 differ <nl> new file mode 100644 <nl> index 00000000000 . . d0e0587e494 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 7ff449b555102deaeea7245b5a370dd0820d2691 differ <nl> new file mode 100644 <nl> index 00000000000 . . 1a2385c7edf <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8005d0a23f43613949321e9fc761180cdcd569c8 differ <nl> new file mode 100644 <nl> index 00000000000 . . 26585324a86 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 80d4266aee0b8b7dca74696dde949ebfaa052535 differ <nl> new file mode 100644 <nl> index 00000000000 . . 36adfeb2a21 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 817570ac3bbeab63961d78aa2fef496e87c7e056 differ <nl> new file mode 100644 <nl> index 00000000000 . . 530dd554b75 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 823ef8523d3d3d90578d32e09e6822eb9ed42ecf differ <nl> new file mode 100644 <nl> index 00000000000 . . 108f7150b0b <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 826c36b53a0f249c139de4aec6fb113a70af3b6a differ <nl> new file mode 100644 <nl> index 00000000000 . . 1422c0640fd <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 835062d78983dae5747ab4e207d227869ce90733 differ <nl> new file mode 100644 <nl> index 00000000000 . . 53d45b5aa53 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 837db5272d730107ae362fcd3cb2c21e5f1ea53e differ <nl> new file mode 100644 <nl> index 00000000000 . . 3bf333b82bd <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 83a2a19743bb77278aba8cce1d04529d2cb0a744 differ <nl> new file mode 100644 <nl> index 00000000000 . . 6464ace91fd <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 853a546c5435e9eb9f2d13898755abeaf93d51b1 differ <nl> new file mode 100644 <nl> index 00000000000 . . 2bc1290ab61 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8644486ad9579f43b8c6f34b423c2c1159b20a9a differ <nl> new file mode 100644 <nl> index 00000000000 . . 17b1b02f696 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 86906b52f5fdad0955f5a93dd26ff420e4a58078 differ <nl> new file mode 100644 <nl> index 00000000000 . . a90fb52338d <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 87a34188d51bc8b43bd7d9097958097e70154960 differ <nl> new file mode 100644 <nl> index 00000000000 . . c9a66bd9f68 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 87a4605e106399e71e689468a23ba11e7f17de2b differ <nl> new file mode 100644 <nl> index 00000000000 . . 9501a65404a <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 89cdf2f9a9682277284c24819a0cd336bbb04d60 differ <nl> new file mode 100644 <nl> index 00000000000 . . 270c4babd83 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8adec341bcbd14fb0bee52926141a4a5b3a885e2 differ <nl> new file mode 100644 <nl> index 00000000000 . . 782654efba3 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8b43d6ab6c1034fba9757ce801e237da089f1898 differ <nl> new file mode 100644 <nl> index 00000000000 . . 95211f0f251 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8c00268431d8fb83ee306f0a49bee4af8728c0b0 differ <nl> new file mode 100644 <nl> index 00000000000 . . de4f90e72f1 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8c5d9191880e9753a747e7ccd7824483bcd7568a differ <nl> new file mode 100644 <nl> index 00000000000 . . aaded624524 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8cbb67da0e40816cf4bedf4fa6ce176563fc0487 differ <nl> new file mode 100644 <nl> index 00000000000 . . 020792a956b <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8d54be1edc097b319d26ee1a08b1da06bafd0bbc differ <nl> new file mode 100644 <nl> index 00000000000 . . 944d3e76a75 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8e49b880f6e9514963c8f82bc6c7131ab104200f differ <nl> new file mode 100644 <nl> index 00000000000 . . c790e8c7994 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8e6332b7d5234f6a1a153f91131ea33f0a5535d8 differ <nl> new file mode 100644 <nl> index 00000000000 . . 531ba64f2e2 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8ea9969bced02fd855c7de7edb12f074226f6dab differ <nl> new file mode 100644 <nl> index 00000000000 . . c2dcd010c0b <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8efa9ad7c934a3c3cc01470ee1c21d7063f7b209 differ <nl> new file mode 100644 <nl> index 00000000000 . . 740dd57a72b <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8f332e450d6a489fed2627f387cf0d0db7bacd37 differ <nl> new file mode 100644 <nl> index 00000000000 . . ef4b4e1a152 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8f71f51eba1aba1d839b19801c594eab968a892e differ <nl> new file mode 100644 <nl> index 00000000000 . . d72b78c939d <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8f840f0a04cce56098d395939b446589ee67da0c differ <nl> new file mode 100644 <nl> index 00000000000 . . 351f16a946c <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 8fba35a2ec8e2eb182eeacd23592c92932c64200 differ <nl> new file mode 100644 <nl> index 00000000000 . . 586cd39a234 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 902ad49db6c0518017e8438d1ee61e0841fda6e7 differ <nl> new file mode 100644 <nl> index 00000000000 . . da27462e8aa <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 91236da3b95886937ab487700d8c72b40e6b9477 differ <nl> new file mode 100644 <nl> index 00000000000 . . 5adc9504b0f <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 91491f410776eb726c8a5face925c703737ed916 differ <nl> new file mode 100644 <nl> index 00000000000 . . 8510caabe2b <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 91980bd25cd4827c2e0c9ebb028d03ef226d0e73 differ <nl> new file mode 100644 <nl> index 00000000000 . . c21081b5419 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 939a61533db8868591c514fc41c7dfb4232e3e4f differ <nl> new file mode 100644 <nl> index 00000000000 . . c879d782a4c <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 943924f902d02a4358ba2ae693087033d30e862b differ <nl> new file mode 100644 <nl> index 00000000000 . . a627547b9a2 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 946f3ee9686789790301935574f412b9cf5cdeec differ <nl> new file mode 100644 <nl> index 00000000000 . . 14d8c6a4926 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 958d48d95d2c2ff8b177ebd2149b9d9a89908f48 differ <nl> new file mode 100644 <nl> index 00000000000 . . 26233fc4032 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 9625913195b7d7a5337016e8f9a29c8f3d6ad435 differ <nl> new file mode 100644 <nl> index 00000000000 . . 3420d460658 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 963c2fa0d8197bb8b6c7bbfcb43a9ae1ec29f2c7 differ <nl> new file mode 100644 <nl> index 00000000000 . . ae0e4e378f8 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 973f74081ad8c1d91ad1b0bfc10061de72d1b1bc differ <nl> new file mode 100644 <nl> index 00000000000 . . c6f1c5a8d7e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 974be67fe5188cfa77f7db943dfdaa0a4a2c4e82 differ <nl> new file mode 100644 <nl> index 00000000000 . . 21c265de579 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 976ed70e538943fc60d5b339528c70a69161d6a1 differ <nl> new file mode 100644 <nl> index 00000000000 . . 90c4026f1e3 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 97b87b4a9d1846c2f2277f7291c545be955257e3 differ <nl> new file mode 100644 <nl> index 00000000000 . . 2861755d6d5 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 97d261c920f2802c97343e07847c98afa3ff46a3 differ <nl> new file mode 100644 <nl> index 00000000000 . . 1bb271fbb12 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 97f7a51a0bb869d09f9f1bd7a4f93c5d859c89eb differ <nl> new file mode 100644 <nl> index 00000000000 . . ee68d203dc6 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 98a661d328f1ad6277c802604126d91965d6fda8 differ <nl> new file mode 100644 <nl> index 00000000000 . . fe020355255 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 99789b6e9a0932dc95b686cf380872175603918f differ <nl> new file mode 100644 <nl> index 00000000000 . . c14b6d8e45d <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 99bb7db7244a6cb2bc0e6c275739f051f83b335a differ <nl> new file mode 100644 <nl> index 00000000000 . . 1295369cb7a <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 9b922c2b47217bbc8c91fce66fc666d626cee86a differ <nl> new file mode 100644 <nl> index 00000000000 . . ccee196ca36 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 9c052499ada417d5038f8cc7da62e6acae9ba9ae differ <nl> new file mode 100644 <nl> index 00000000000 . . ae93ae8e84f <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 9c78f9e53f09be45b2dac44dc8452880e7bed04b differ <nl> new file mode 100644 <nl> index 00000000000 . . 065698222e2 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 9d43466b9c4b8736cde82e337d9a9f881db82d11 differ <nl> new file mode 100644 <nl> index 00000000000 . . c99b47eeaee <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 9d5d9a28271a6d21850feb249cfe27aa0a31130c differ <nl> new file mode 100644 <nl> index 00000000000 . . 8f11fb518f7 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / 9f1c4ea38c9fb86a62693f202b26b1be3c7b2d37 differ <nl> new file mode 100644 <nl> index 00000000000 . . 79bc6c94691 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / a1f59f79257ae56e6e6039d3fe838ca050f40385 differ <nl> new file mode 100644 <nl> index 00000000000 . . 4a6f0c64b52 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / a2180525f267c6d6b8f7501b100b97aef0d87f83 differ <nl> new file mode 100644 <nl> index 00000000000 . . b948759f444 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / a2d2b12575edfb559872c4f2ce63e95fdf68b774 differ <nl> new file mode 100644 <nl> index 00000000000 . . 3df44fd2249 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / a31a10de37eda6db8ecc2270b6a368985a38a44b differ <nl> new file mode 100644 <nl> index 00000000000 . . 5c306ad98f7 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / a4da7f4642cfaf355445834075d3b4d04cf8b218 differ <nl> new file mode 100644 <nl> index 00000000000 . . e64aae2e014 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / a5be9b0f094ec76d5f082f4e06dafb5a01c066c1 differ <nl> new file mode 100644 <nl> index 00000000000 . . 56535f1ef56 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / a62651154d1e5c33e154ea4b57f042be89feed9c differ <nl> new file mode 100644 <nl> index 00000000000 . . 2203ea0268b <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / a6a11f05565197ecb9cbf3a2ddf826564b425e74 differ <nl> new file mode 100644 <nl> index 00000000000 . . 0dd072b2f54 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / a71ab47d9ad32e10acc8b9772a331cae045fb424 differ <nl> new file mode 100644 <nl> index 00000000000 . . cd6c17b10bf <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / a881a2dcd16f595644c1543ccf047b7ae5bb7fa4 differ <nl> new file mode 100644 <nl> index 00000000000 . . 121daf9a6cb <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / a9e6f164e912d8964ae28f383dca6d980dcd4b94 differ <nl> new file mode 100644 <nl> index 00000000000 . . 6362b42992e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / aa05527f894960d22773d0e1c96e8ad9293e3910 differ <nl> new file mode 100644 <nl> index 00000000000 . . abf072f3821 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / aa103991d1d90adf0af592c050c1d39532690f73 differ <nl> new file mode 100644 <nl> index 00000000000 . . e5a844355d3 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / aa26dbb6bb031702e07e82a70162de89e31dbb60 differ <nl> new file mode 100644 <nl> index 00000000000 . . ba0fbcea36d <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / aa2b2a1240b9ddfba14035695084096f93a4eea5 differ <nl> new file mode 100644 <nl> index 00000000000 . . 6dafb63709a <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / aa58c60840b27f80a9779d2f4fc76154e12b7dc5 differ <nl> new file mode 100644 <nl> index 00000000000 . . 28028a3bbe6 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / aa682b09b1e785fe0ed7edc6b14a4e8e5282e043 differ <nl> new file mode 100644 <nl> index 00000000000 . . 2209278cb9c <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / aa7e9b09e36bec073300d107795b7dc63eafbeb9 differ <nl> new file mode 100644 <nl> index 00000000000 . . 4d14b561ffe <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / acb33ec3207ddd5f641f8f989faa888bcc70385c differ <nl> new file mode 100644 <nl> index 00000000000 . . 1934f3b9813 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / adc78556e789c046d7f82b77e967a9e7fdf6cdac differ <nl> new file mode 100644 <nl> index 00000000000 . . 74f1f0c31a6 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / adf88d50a752961142e1a3fc4eeba380e6089a5f differ <nl> new file mode 100644 <nl> index 00000000000 . . 1592e17701b <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / aed35edde0a0395829c43b45a34f537b9c6fc23a differ <nl> new file mode 100644 <nl> index 00000000000 . . de430848355 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / af9d0bbc10db557c0ef9ab55a6f217b4f76a87db differ <nl> new file mode 100644 <nl> index 00000000000 . . 50548fa35d9 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / b09e64aa807db006a219bd1b9faf1a2e00dc6d33 differ <nl> new file mode 100644 <nl> index 00000000000 . . 3b751711e75 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / b0c9bc430c79f064b61d8cad076b072c9c014804 differ <nl> new file mode 100644 <nl> index 00000000000 . . 6ff2926ccf7 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / b233e6287f4208a2ae8f89fe25caf0a33b7b4e51 differ <nl> new file mode 100644 <nl> index 00000000000 . . 02e99acac83 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / b4b0f04d9a771ea9575d9cc484947fcadf4ef5bd differ <nl> new file mode 100644 <nl> index 00000000000 . . 6c4e46a26fb <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / b501cbf4c085ce0b75e4031810bf99f91905fb06 differ <nl> new file mode 100644 <nl> index 00000000000 . . 59ba6f05ab7 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / b53a90f0ad5e8026e0354e149ed8b4782fda00ad differ <nl> new file mode 100644 <nl> index 00000000000 . . c0464c3f204 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / b55d66dbf3f2b795062e5a53379c2f63cab17062 differ <nl> new file mode 100644 <nl> index 00000000000 . . b6823a113a5 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / b8845fbdf002c64053d7fa3e60add56f0a030992 differ <nl> new file mode 100644 <nl> index 00000000000 . . 903049d9a96 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / b88619bb22a3b2585cad3ace194fcdd8c6b63104 differ <nl> new file mode 100644 <nl> index 00000000000 . . 154e8b8d5fe <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / b94e1db2cd1236075bb8772b72c64991d442e584 differ <nl> new file mode 100644 <nl> index 00000000000 . . e17d915c545 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / b9a7faa77ddf3a7e206e4d06f5d9d8de7d9c7df8 differ <nl> new file mode 100644 <nl> index 00000000000 . . fb5a09d1347 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / b9d799eb148e4d8a8a235e385ca8302a8acc3896 differ <nl> new file mode 100644 <nl> index 00000000000 . . aea662cd91f <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / baee7b89cd2017f450c37137628688f25979b3bb differ <nl> new file mode 100644 <nl> index 00000000000 . . 230c450902e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / baf7b33805daf027e037e406d3442b3444108ac0 differ <nl> new file mode 100644 <nl> index 00000000000 . . 12c6be1a45c <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / bb426bb115461f351e57f64c0378e331f74ed5fc differ <nl> new file mode 100644 <nl> index 00000000000 . . 7d914ef5eae <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / bcc655cbb7334db02fc7fe9d29bd49fd6ee4ee91 differ <nl> new file mode 100644 <nl> index 00000000000 . . f5098854fbb <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / bd4f7f4d43ceaec0429ddc248cd438284813cc64 differ <nl> new file mode 100644 <nl> index 00000000000 . . ad1a13706cd <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / bed4e119b86e8dd0a6c60cb96cc2f9e66d0a8857 differ <nl> new file mode 100644 <nl> index 00000000000 . . 579f28c1ac5 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / bfafd0d497ccd035d6ef1478509c93a9d2443513 differ <nl> new file mode 100644 <nl> index 00000000000 . . c5fdc4cf406 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / bfb3ae60341e80c10de105fa0f9a01f134033225 differ <nl> new file mode 100644 <nl> index 00000000000 . . 000e18c44b3 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / c29f3256e632a713aeb3ef647fff014a9be01a8d differ <nl> new file mode 100644 <nl> index 00000000000 . . 17026cce938 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / c41f43520da236f84dd0e2157644d316ca6fac37 differ <nl> new file mode 100644 <nl> index 00000000000 . . 1f779a63562 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / c5535d6d801d315d78792c9956a82711d0d5a803 differ <nl> new file mode 100644 <nl> index 00000000000 . . 1b8ebd047bf <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / c6ec8562082eda6ea9ae1cc27f33b920b93589e4 differ <nl> new file mode 100644 <nl> index 00000000000 . . 0091fd27d3c <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / c6f9e7ce30494ccbf3a1f49bed7107d976e3cc4e differ <nl> new file mode 100644 <nl> index 00000000000 . . cde0a42fa36 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / c71747c667c94062a03ec0f0468212e7ac222c57 differ <nl> new file mode 100644 <nl> index 00000000000 . . 7c1932f5523 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / c767f1416feb8d7a2899ab276a4846e10f59531c differ <nl> new file mode 100644 <nl> index 00000000000 . . c13b0965b6e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / c8b448134c9d165968599402c9633719573afd8d differ <nl> new file mode 100644 <nl> index 00000000000 . . 0eb3d9c1f50 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / c955c8f169185554e8e1d45ded89db29c3164917 differ <nl> new file mode 100644 <nl> index 00000000000 . . 39eb594be2c <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / cb4f23427bca81db8ccf5f03bdb0c60418a20a74 differ <nl> new file mode 100644 <nl> index 00000000000 . . f2685ffe9ce <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / cce1a22e2c3532ddb85af19d2f17cc7a11ca1050 differ <nl> new file mode 100644 <nl> index 00000000000 . . 92e009a4dc3 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / cd2b1fed5910041aca30e39210ee21d4ebb80469 differ <nl> new file mode 100644 <nl> index 00000000000 . . dc0a8378198 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / ce4a157481d32f9c2ec106f257278d3159e6bd21 differ <nl> new file mode 100644 <nl> index 00000000000 . . e6ac3a837a8 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / ceb98039ba87c5c326c904f275490b25c7d90f1c differ <nl> new file mode 100644 <nl> index 00000000000 . . 246dec486a0 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / cee29e303670fdd259d375da8345d6e49ba971b4 differ <nl> new file mode 100644 <nl> index 00000000000 . . bebaf9c8bad <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 373224be81ff98db60e9f81536f16a9ef92792d5 differ <nl> new file mode 100644 <nl> index 00000000000 . . 3fa801139ec <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 59b587d15c0bcdb985417cd7a133cecfcc232698 differ <nl> new file mode 100644 <nl> index 00000000000 . . e7a6aedd9fe <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / crash - b208a1eb5ef9f229f309492329323f485768fa74 differ <nl> new file mode 100644 <nl> index 00000000000 . . e6490ffa1fd <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / d0a8deab4d26bc005d022184c311c1ce4d5327bb differ <nl> new file mode 100644 <nl> index 00000000000 . . 0c90e71f907 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / d123c89b3cafd995bf401032699fc7dba60f8de4 differ <nl> new file mode 100644 <nl> index 00000000000 . . ca1f987170a <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / d263d6004c2cc33cd9d157dd31ff604870c4d6fb differ <nl> new file mode 100644 <nl> index 00000000000 . . 9177f89f7ab <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / d29859445bfeff04ca22b20408f9aa0e2e161abc differ <nl> new file mode 100644 <nl> index 00000000000 . . 94600a71676 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / d2ba1c23045223aa6f4c107f91d57786befae604 differ <nl> new file mode 100644 <nl> index 00000000000 . . e4fec6c9d46 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / d2e66d1fdf0110212c632268aec5b06130db3e21 differ <nl> new file mode 100644 <nl> index 00000000000 . . 4b5d54318f0 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / d2f7c85e3c87ad5b71ad423aa4a9d97a8191d867 differ <nl> new file mode 100644 <nl> index 00000000000 . . 91e28514f0f <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / d4bd740db31b0e9925ce331c9c7d2fae5c1d15f2 differ <nl> new file mode 100644 <nl> index 00000000000 . . 20b04ddb833 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / d5dad7a599e22cff371d595a5014475301670892 differ <nl> new file mode 100644 <nl> index 00000000000 . . b26a7a7b764 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / d6b689f1b878d6914ced5d24f21c599c203594d4 differ <nl> new file mode 100644 <nl> index 00000000000 . . 1006f60613c <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / d716fb79cd7dd78d2ff66dc8a0e2acef9a93f98a differ <nl> new file mode 100644 <nl> index 00000000000 . . c6435f7f958 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / da57f06258c4f0de07611263dfba8be669dd780c differ <nl> new file mode 100644 <nl> index 00000000000 . . b293ff05655 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / da97ec2d11daf27fe924513c463810c867b88983 differ <nl> new file mode 100644 <nl> index 00000000000 . . a9903db0456 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / daed40229642eab256927f3bfb0288e036eab89f differ <nl> new file mode 100644 <nl> index 00000000000 . . 975d9460e61 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / dcaa24f054af09a755c794ac4c3485ee682437a9 differ <nl> new file mode 100644 <nl> index 00000000000 . . 8c1536af0d3 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / dcc039d81106cd60cd611ff540d4669ebd10fe68 differ <nl> new file mode 100644 <nl> index 00000000000 . . f530f36b974 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / dda7f9e8860f0e132312f57e3640402f33df308a differ <nl> new file mode 100644 <nl> index 00000000000 . . c3d7d783862 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / ddd34e967b1460902af2d01818605e208c5c7524 differ <nl> new file mode 100644 <nl> index 00000000000 . . d40b23c032f <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / df29cf0d3cd5cfd27a98b506fffee64476398bba differ <nl> new file mode 100644 <nl> index 00000000000 . . 3be56d333e6 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / e13344aeec0694c50eed41ae1b78e6d2ac4a4c6c differ <nl> new file mode 100644 <nl> index 00000000000 . . bc136099914 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / e37b4c7b64414d4705d934f8a723a50dcbf42571 differ <nl> new file mode 100644 <nl> index 00000000000 . . 6ddb7d618ca <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / e4068f14a046ce3ee7f1920cbd210b6e876c07ec differ <nl> new file mode 100644 <nl> index 00000000000 . . ff74e958c61 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / e452ab01690d7e326f5ef52f4a312d066c087a24 differ <nl> new file mode 100644 <nl> index 00000000000 . . b3bb2405d81 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / e52ac2e3cad2e544488a01822115cb37d10a76ce differ <nl> new file mode 100644 <nl> index 00000000000 . . 9dac9955f66 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / e609da99f76fa36e4b9060650cbc3597af458b01 differ <nl> new file mode 100644 <nl> index 00000000000 . . 1c33e4fd5a5 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / e97beccbdbb6e29eb476efec4ea2c96c310e6615 differ <nl> new file mode 100644 <nl> index 00000000000 . . 3d19da06976 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / e9d470cdf421f6c6c9eefd7f84bd09df6a8994b2 differ <nl> new file mode 100644 <nl> index 00000000000 . . d81c34e934b <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / eaddce3919388311104c50b9089461ff59c8ac14 differ <nl> new file mode 100644 <nl> index 00000000000 . . be50868c615 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / ed47f70f76dadbb6744ede3eb7016f585c9fe59a differ <nl> new file mode 100644 <nl> index 00000000000 . . 73c5db30984 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / ed7d0b055e59602ec752162db7afc2b36ac7800a differ <nl> new file mode 100644 <nl> index 00000000000 . . 79770813f98 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / ee42f876c500996016a9f4a989147e5c2b5019fa differ <nl> new file mode 100644 <nl> index 00000000000 . . 095b25464a1 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / ee90aa84710c6a218a84b49ca6bc5d0e7a324220 differ <nl> new file mode 100644 <nl> index 00000000000 . . f4077be7dee <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / ef20d859b09ca00a80782df7097881ec4299cd25 differ <nl> new file mode 100644 <nl> index 00000000000 . . 39b8ac4cc38 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / ef24beeeff80ec8ad728919794e9de4a06cf7daa differ <nl> new file mode 100644 <nl> index 00000000000 . . 8927909b7c9 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / efa40f9e7f8a5ba4649dbad1a66ff9cc6bc699b8 differ <nl> new file mode 100644 <nl> index 00000000000 . . bcffbae0857 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / f2b838edb5715e9f0f73897ed74eddaede87a43a differ <nl> new file mode 100644 <nl> index 00000000000 . . 034f1983a9c <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / f3b3769d79f1d9586c575c27dff353f343ceacaf differ <nl> new file mode 100644 <nl> index 00000000000 . . 7a5e86bda7c <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / f3cad6a2ea4ebfd40568d4992d68784e82de2b20 differ <nl> new file mode 100644 <nl> index 00000000000 . . b4e7db949f4 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / f575224a90d142bcd971b4f1634f4dc4988f8b15 differ <nl> new file mode 100644 <nl> index 00000000000 . . 46076b5f94a <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / f7623c34b3b5fb243fe589d881e4e8489f578f21 differ <nl> new file mode 100644 <nl> index 00000000000 . . dccc89ba775 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / f875ad5830cb0b5d387a267e0200eb3027d025d5 differ <nl> new file mode 100644 <nl> index 00000000000 . . 2deefec71bf <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / fb17c3fec47ab446ee737ab4c7fa8cb85688d5be differ <nl> new file mode 100644 <nl> index 00000000000 . . 20ca7b52623 <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / fc824337cead8b9e5229119c85c284fdd8e2d391 differ <nl> new file mode 100644 <nl> index 00000000000 . . fc7226b8e7e <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / fd4f7d5d3d21c75ccb5cde9491bf952bae753390 differ <nl> new file mode 100644 <nl> index 00000000000 . . 28b1302d47a <nl> Binary files / dev / null and b / test / core / end2end / fuzzers / api_fuzzer_corpus / fe786c056e1e068e9cb9a94d7e10cee1593436bc differ <nl> mmm a / test / core / end2end / goaway_server_test . c <nl> ppp b / test / core / end2end / goaway_server_test . c <nl> int main ( int argc , char * * argv ) { <nl> grpc_call * call1 = <nl> grpc_channel_create_call ( chan , NULL , GRPC_PROPAGATE_DEFAULTS , cq , <nl> grpc_slice_from_static_string ( " / foo " ) , & host , <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 20 ) , NULL ) ; <nl> + grpc_timeout_seconds_to_deadline ( 20 ) , NULL ) ; <nl> / * send initial metadata to probe connectivity * / <nl> memset ( ops , 0 , sizeof ( ops ) ) ; <nl> op = ops ; <nl> int main ( int argc , char * * argv ) { <nl> grpc_call * call2 = <nl> grpc_channel_create_call ( chan , NULL , GRPC_PROPAGATE_DEFAULTS , cq , <nl> grpc_slice_from_static_string ( " / foo " ) , & host , <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 20 ) , NULL ) ; <nl> + grpc_timeout_seconds_to_deadline ( 20 ) , NULL ) ; <nl> / * send initial metadata to probe connectivity * / <nl> memset ( ops , 0 , sizeof ( ops ) ) ; <nl> op = ops ; <nl> mmm a / test / core / end2end / invalid_call_argument_test . c <nl> ppp b / test / core / end2end / invalid_call_argument_test . c <nl> static void prepare_test ( int is_client ) { <nl> g_state . is_client = is_client ; <nl> grpc_metadata_array_init ( & g_state . initial_metadata_recv ) ; <nl> grpc_metadata_array_init ( & g_state . trailing_metadata_recv ) ; <nl> - g_state . deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 2 ) ; <nl> + g_state . deadline = grpc_timeout_seconds_to_deadline ( 2 ) ; <nl> g_state . cq = grpc_completion_queue_create ( NULL ) ; <nl> g_state . cqv = cq_verifier_create ( g_state . cq ) ; <nl> g_state . details = grpc_empty_slice ( ) ; <nl> static void cleanup_test ( ) { <nl> grpc_call_destroy ( g_state . server_call ) ; <nl> grpc_server_shutdown_and_notify ( g_state . server , g_state . cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( g_state . cq , tag ( 1000 ) , <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , <nl> + grpc_timeout_seconds_to_deadline ( 5 ) , <nl> NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( g_state . server ) ; <nl> mmm a / test / core / end2end / no_server_test . c <nl> ppp b / test / core / end2end / no_server_test . c <nl> static void * tag ( intptr_t i ) { return ( void * ) i ; } <nl> int main ( int argc , char * * argv ) { <nl> grpc_channel * chan ; <nl> grpc_call * call ; <nl> - gpr_timespec deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 2 ) ; <nl> + gpr_timespec deadline = grpc_timeout_seconds_to_deadline ( 2 ) ; <nl> grpc_completion_queue * cq ; <nl> cq_verifier * cqv ; <nl> grpc_op ops [ 6 ] ; <nl> mmm a / test / core / end2end / tests / authority_not_supported . c <nl> ppp b / test / core / end2end / tests / authority_not_supported . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / bad_hostname . c <nl> ppp b / test / core / end2end / tests / bad_hostname . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / binary_metadata . c <nl> ppp b / test / core / end2end / tests / binary_metadata . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / call_creds . c <nl> ppp b / test / core / end2end / tests / call_creds . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / cancel_after_accept . c <nl> ppp b / test / core / end2end / tests / cancel_after_accept . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / cancel_after_client_done . c <nl> ppp b / test / core / end2end / tests / cancel_after_client_done . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / cancel_after_invoke . c <nl> ppp b / test / core / end2end / tests / cancel_after_invoke . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / cancel_before_invoke . c <nl> ppp b / test / core / end2end / tests / cancel_before_invoke . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / cancel_in_a_vacuum . c <nl> ppp b / test / core / end2end / tests / cancel_in_a_vacuum . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / cancel_with_status . c <nl> ppp b / test / core / end2end / tests / cancel_with_status . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / compressed_payload . c <nl> ppp b / test / core / end2end / tests / compressed_payload . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / connectivity . c <nl> ppp b / test / core / end2end / tests / connectivity . c <nl> static void test_connectivity ( grpc_end2end_test_config config ) { <nl> / * channels should start life in IDLE , and stay there * / <nl> GPR_ASSERT ( grpc_channel_check_connectivity_state ( f . client , 0 ) = = <nl> GRPC_CHANNEL_IDLE ) ; <nl> - gpr_sleep_until ( GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( 100 ) ) ; <nl> + gpr_sleep_until ( grpc_timeout_milliseconds_to_deadline ( 100 ) ) ; <nl> GPR_ASSERT ( grpc_channel_check_connectivity_state ( f . client , 0 ) = = <nl> GRPC_CHANNEL_IDLE ) ; <nl> <nl> static void test_connectivity ( grpc_end2end_test_config config ) { <nl> GRPC_CHANNEL_IDLE ) ; <nl> / * start watching for a change * / <nl> grpc_channel_watch_connectivity_state ( f . client , GRPC_CHANNEL_IDLE , <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 3 ) , <nl> + grpc_timeout_seconds_to_deadline ( 3 ) , <nl> f . cq , tag ( 2 ) ) ; <nl> <nl> / * and now the watch should trigger * / <nl> static void test_connectivity ( grpc_end2end_test_config config ) { <nl> <nl> / * quickly followed by a transition to TRANSIENT_FAILURE * / <nl> grpc_channel_watch_connectivity_state ( f . client , GRPC_CHANNEL_CONNECTING , <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 3 ) , <nl> + grpc_timeout_seconds_to_deadline ( 3 ) , <nl> f . cq , tag ( 3 ) ) ; <nl> CQ_EXPECT_COMPLETION ( cqv , tag ( 3 ) , 1 ) ; <nl> cq_verify ( cqv ) ; <nl> static void test_connectivity ( grpc_end2end_test_config config ) { <nl> READY is reached * / <nl> while ( state ! = GRPC_CHANNEL_READY ) { <nl> grpc_channel_watch_connectivity_state ( <nl> - f . client , state , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 3 ) , f . cq , tag ( 4 ) ) ; <nl> + f . client , state , grpc_timeout_seconds_to_deadline ( 3 ) , f . cq , tag ( 4 ) ) ; <nl> CQ_EXPECT_COMPLETION ( cqv , tag ( 4 ) , 1 ) ; <nl> cq_verify ( cqv ) ; <nl> state = grpc_channel_check_connectivity_state ( f . client , 0 ) ; <nl> static void test_connectivity ( grpc_end2end_test_config config ) { <nl> gpr_log ( GPR_DEBUG , " * * * SHUTTING DOWN SERVER * * * " ) ; <nl> <nl> grpc_channel_watch_connectivity_state ( f . client , GRPC_CHANNEL_READY , <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 3 ) , <nl> + grpc_timeout_seconds_to_deadline ( 3 ) , <nl> f . cq , tag ( 5 ) ) ; <nl> <nl> grpc_server_shutdown_and_notify ( f . server , f . cq , tag ( 0xdead ) ) ; <nl> mmm a / test / core / end2end / tests / default_host . c <nl> ppp b / test / core / end2end / tests / default_host . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / disappearing_server . c <nl> ppp b / test / core / end2end / tests / disappearing_server . c <nl> <nl> static void * tag ( intptr_t t ) { return ( void * ) t ; } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> mmm a / test / core / end2end / tests / empty_batch . c <nl> ppp b / test / core / end2end / tests / empty_batch . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / filter_call_init_fails . c <nl> ppp b / test / core / end2end / tests / filter_call_init_fails . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / filter_causes_close . c <nl> ppp b / test / core / end2end / tests / filter_causes_close . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / filter_latency . c <nl> ppp b / test / core / end2end / tests / filter_latency . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / graceful_server_shutdown . c <nl> ppp b / test / core / end2end / tests / graceful_server_shutdown . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> mmm a / test / core / end2end / tests / high_initial_seqno . c <nl> ppp b / test / core / end2end / tests / high_initial_seqno . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / hpack_size . c <nl> ppp b / test / core / end2end / tests / hpack_size . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / idempotent_request . c <nl> ppp b / test / core / end2end / tests / idempotent_request . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / invoke_large_request . c <nl> ppp b / test / core / end2end / tests / invoke_large_request . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static void drain_cq ( grpc_completion_queue * cq ) { <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / large_metadata . c <nl> ppp b / test / core / end2end / tests / large_metadata . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / load_reporting_hook . c <nl> ppp b / test / core / end2end / tests / load_reporting_hook . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / max_concurrent_streams . c <nl> ppp b / test / core / end2end / tests / max_concurrent_streams . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> static void test_max_concurrent_streams ( grpc_end2end_test_config config ) { <nl> got_server_start = 0 ; <nl> live_call = - 1 ; <nl> while ( ! got_client_start | | ! got_server_start ) { <nl> - ev = grpc_completion_queue_next ( f . cq , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 3 ) , <nl> + ev = grpc_completion_queue_next ( f . cq , grpc_timeout_seconds_to_deadline ( 3 ) , <nl> NULL ) ; <nl> GPR_ASSERT ( ev . type = = GRPC_OP_COMPLETE ) ; <nl> GPR_ASSERT ( ev . success ) ; <nl> mmm a / test / core / end2end / tests / max_message_length . c <nl> ppp b / test / core / end2end / tests / max_message_length . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / negative_deadline . c <nl> ppp b / test / core / end2end / tests / negative_deadline . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / network_status_change . c <nl> ppp b / test / core / end2end / tests / network_status_change . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 500 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / no_logging . c <nl> ppp b / test / core / end2end / tests / no_logging . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / no_op . c <nl> ppp b / test / core / end2end / tests / no_op . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / payload . c <nl> ppp b / test / core / end2end / tests / payload . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / ping . c <nl> ppp b / test / core / end2end / tests / ping . c <nl> static void test_ping ( grpc_end2end_test_config config ) { <nl> READY is reached * / <nl> while ( state ! = GRPC_CHANNEL_READY ) { <nl> grpc_channel_watch_connectivity_state ( <nl> - f . client , state , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 3 ) , f . cq , tag ( 99 ) ) ; <nl> + f . client , state , grpc_timeout_seconds_to_deadline ( 3 ) , f . cq , tag ( 99 ) ) ; <nl> CQ_EXPECT_COMPLETION ( cqv , tag ( 99 ) , 1 ) ; <nl> cq_verify ( cqv ) ; <nl> state = grpc_channel_check_connectivity_state ( f . client , 0 ) ; <nl> mmm a / test / core / end2end / tests / ping_pong_streaming . c <nl> ppp b / test / core / end2end / tests / ping_pong_streaming . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / registered_call . c <nl> ppp b / test / core / end2end / tests / registered_call . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / request_with_flags . c <nl> ppp b / test / core / end2end / tests / request_with_flags . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / request_with_payload . c <nl> ppp b / test / core / end2end / tests / request_with_payload . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / resource_quota_server . c <nl> ppp b / test / core / end2end / tests / resource_quota_server . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / server_finishes_request . c <nl> ppp b / test / core / end2end / tests / server_finishes_request . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / shutdown_finishes_calls . c <nl> ppp b / test / core / end2end / tests / shutdown_finishes_calls . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> mmm a / test / core / end2end / tests / shutdown_finishes_tags . c <nl> ppp b / test / core / end2end / tests / shutdown_finishes_tags . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> mmm a / test / core / end2end / tests / simple_cacheable_request . c <nl> ppp b / test / core / end2end / tests / simple_cacheable_request . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / simple_delayed_request . c <nl> ppp b / test / core / end2end / tests / simple_delayed_request . c <nl> <nl> static void * tag ( intptr_t t ) { return ( void * ) t ; } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / simple_metadata . c <nl> ppp b / test / core / end2end / tests / simple_metadata . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / simple_request . c <nl> ppp b / test / core / end2end / tests / simple_request . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / streaming_error_response . c <nl> ppp b / test / core / end2end / tests / streaming_error_response . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / trailing_metadata . c <nl> ppp b / test / core / end2end / tests / trailing_metadata . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / write_buffering . c <nl> ppp b / test / core / end2end / tests / write_buffering . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / end2end / tests / write_buffering_at_end . c <nl> ppp b / test / core / end2end / tests / write_buffering_at_end . c <nl> static grpc_end2end_test_fixture begin_test ( grpc_end2end_test_config config , <nl> } <nl> <nl> static gpr_timespec n_seconds_time ( int n ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( n ) ; <nl> + return grpc_timeout_seconds_to_deadline ( n ) ; <nl> } <nl> <nl> static gpr_timespec five_seconds_time ( void ) { return n_seconds_time ( 5 ) ; } <nl> static void shutdown_server ( grpc_end2end_test_fixture * f ) { <nl> if ( ! f - > server ) return ; <nl> grpc_server_shutdown_and_notify ( f - > server , f - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - f - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + f - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( f - > server ) ; <nl> f - > server = NULL ; <nl> mmm a / test / core / fling / client . c <nl> ppp b / test / core / fling / client . c <nl> int main ( int argc , char * * argv ) { <nl> <nl> sc . init ( ) ; <nl> <nl> - gpr_timespec end_warmup = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( warmup_seconds ) ; <nl> + gpr_timespec end_warmup = grpc_timeout_seconds_to_deadline ( warmup_seconds ) ; <nl> gpr_timespec end_profiling = <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( warmup_seconds + benchmark_seconds ) ; <nl> + grpc_timeout_seconds_to_deadline ( warmup_seconds + benchmark_seconds ) ; <nl> <nl> while ( gpr_time_cmp ( gpr_now ( end_warmup . clock_type ) , end_warmup ) < 0 ) { <nl> sc . do_one_step ( ) ; <nl> mmm a / test / core / fling / server . c <nl> ppp b / test / core / fling / server . c <nl> int main ( int argc , char * * argv ) { <nl> gpr_log ( GPR_INFO , " Shutting down due to SIGINT " ) ; <nl> grpc_server_shutdown_and_notify ( server , cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_completion_queue_shutdown ( cq ) ; <nl> shutdown_started = 1 ; <nl> mmm a / test / core / handshake / client_ssl . c <nl> ppp b / test / core / handshake / client_ssl . c <nl> static bool client_ssl_test ( char * server_alpn_preferred ) { <nl> grpc_completion_queue * cq = grpc_completion_queue_create ( NULL ) ; <nl> while ( state ! = GRPC_CHANNEL_READY & & retries - - > 0 ) { <nl> grpc_channel_watch_connectivity_state ( <nl> - channel , state , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 3 ) , cq , NULL ) ; <nl> - gpr_timespec cq_deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) ; <nl> + channel , state , grpc_timeout_seconds_to_deadline ( 3 ) , cq , NULL ) ; <nl> + gpr_timespec cq_deadline = grpc_timeout_seconds_to_deadline ( 5 ) ; <nl> grpc_event ev = grpc_completion_queue_next ( cq , cq_deadline , NULL ) ; <nl> GPR_ASSERT ( ev . type = = GRPC_OP_COMPLETE ) ; <nl> state = <nl> mmm a / test / core / handshake / server_ssl . c <nl> ppp b / test / core / handshake / server_ssl . c <nl> static void server_thread ( void * arg ) { <nl> / / sleeping between polls . <nl> int retries = 10 ; <nl> while ( ! gpr_event_get ( & client_handshake_complete ) & & retries - - > 0 ) { <nl> - const gpr_timespec cq_deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 1 ) ; <nl> + const gpr_timespec cq_deadline = grpc_timeout_seconds_to_deadline ( 1 ) ; <nl> grpc_event ev = grpc_completion_queue_next ( cq , cq_deadline , NULL ) ; <nl> GPR_ASSERT ( ev . type = = GRPC_QUEUE_TIMEOUT ) ; <nl> } <nl> static void server_thread ( void * arg ) { <nl> grpc_server_shutdown_and_notify ( server , cq , NULL ) ; <nl> grpc_completion_queue_shutdown ( cq ) ; <nl> <nl> - const gpr_timespec cq_deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) ; <nl> + const gpr_timespec cq_deadline = grpc_timeout_seconds_to_deadline ( 5 ) ; <nl> grpc_event ev = grpc_completion_queue_next ( cq , cq_deadline , NULL ) ; <nl> GPR_ASSERT ( ev . type = = GRPC_OP_COMPLETE ) ; <nl> <nl> mmm a / test / core / http / httpcli_test . c <nl> ppp b / test / core / http / httpcli_test . c <nl> static gpr_mu * g_mu ; <nl> static grpc_polling_entity g_pops ; <nl> <nl> static gpr_timespec n_seconds_time ( int seconds ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( seconds ) ; <nl> + return grpc_timeout_seconds_to_deadline ( seconds ) ; <nl> } <nl> <nl> static void on_finish ( grpc_exec_ctx * exec_ctx , void * arg , grpc_error * error ) { <nl> mmm a / test / core / http / httpscli_test . c <nl> ppp b / test / core / http / httpscli_test . c <nl> static gpr_mu * g_mu ; <nl> static grpc_polling_entity g_pops ; <nl> <nl> static gpr_timespec n_seconds_time ( int seconds ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( seconds ) ; <nl> + return grpc_timeout_seconds_to_deadline ( seconds ) ; <nl> } <nl> <nl> static void on_finish ( grpc_exec_ctx * exec_ctx , void * arg , grpc_error * error ) { <nl> mmm a / test / core / iomgr / combiner_test . c <nl> ppp b / test / core / iomgr / combiner_test . c <nl> static void execute_many_loop ( void * a ) { <nl> } <nl> / / sleep for a little bit , to test a combiner draining and another thread <nl> / / picking it up <nl> - gpr_sleep_until ( GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( 100 ) ) ; <nl> + gpr_sleep_until ( grpc_timeout_milliseconds_to_deadline ( 100 ) ) ; <nl> } <nl> grpc_exec_ctx_finish ( & exec_ctx ) ; <nl> } <nl> mmm a / test / core / iomgr / endpoint_tests . c <nl> ppp b / test / core / iomgr / endpoint_tests . c <nl> static void read_and_write_test ( grpc_endpoint_test_config config , <nl> size_t num_bytes , size_t write_size , <nl> size_t slice_size , bool shutdown ) { <nl> struct read_and_write_test_state state ; <nl> - gpr_timespec deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 20 ) ; <nl> + gpr_timespec deadline = grpc_timeout_seconds_to_deadline ( 20 ) ; <nl> grpc_endpoint_test_fixture f = <nl> begin_test ( config , " read_and_write_test " , slice_size ) ; <nl> grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT ; <nl> mmm a / test / core / iomgr / resolve_address_posix_test . c <nl> ppp b / test / core / iomgr / resolve_address_posix_test . c <nl> <nl> # include " test / core / util / test_config . h " <nl> <nl> static gpr_timespec test_deadline ( void ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 100 ) ; <nl> + return grpc_timeout_seconds_to_deadline ( 100 ) ; <nl> } <nl> <nl> typedef struct args_struct { <nl> mmm a / test / core / iomgr / resolve_address_test . c <nl> ppp b / test / core / iomgr / resolve_address_test . c <nl> <nl> # include " test / core / util / test_config . h " <nl> <nl> static gpr_timespec test_deadline ( void ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 100 ) ; <nl> + return grpc_timeout_seconds_to_deadline ( 100 ) ; <nl> } <nl> <nl> typedef struct args_struct { <nl> mmm a / test / core / iomgr / tcp_client_posix_test . c <nl> ppp b / test / core / iomgr / tcp_client_posix_test . c <nl> static int g_connections_complete = 0 ; <nl> static grpc_endpoint * g_connecting = NULL ; <nl> <nl> static gpr_timespec test_deadline ( void ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 10 ) ; <nl> + return grpc_timeout_seconds_to_deadline ( 10 ) ; <nl> } <nl> <nl> static void finish_connection ( ) { <nl> void test_succeeds ( void ) { <nl> " pollset_work " , <nl> grpc_pollset_work ( & exec_ctx , g_pollset , & worker , <nl> gpr_now ( GPR_CLOCK_MONOTONIC ) , <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) ) ) ) ; <nl> + grpc_timeout_seconds_to_deadline ( 5 ) ) ) ) ; <nl> gpr_mu_unlock ( g_mu ) ; <nl> grpc_exec_ctx_flush ( & exec_ctx ) ; <nl> gpr_mu_lock ( g_mu ) ; <nl> mmm a / test / core / iomgr / tcp_posix_test . c <nl> ppp b / test / core / iomgr / tcp_posix_test . c <nl> static void read_test ( size_t num_bytes , size_t slice_size ) { <nl> grpc_endpoint * ep ; <nl> struct read_socket_state state ; <nl> size_t written_bytes ; <nl> - gpr_timespec deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 20 ) ; <nl> + gpr_timespec deadline = grpc_timeout_seconds_to_deadline ( 20 ) ; <nl> grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT ; <nl> <nl> gpr_log ( GPR_INFO , " Read test of size % " PRIuPTR " , slice size % " PRIuPTR , <nl> static void large_read_test ( size_t slice_size ) { <nl> grpc_endpoint * ep ; <nl> struct read_socket_state state ; <nl> ssize_t written_bytes ; <nl> - gpr_timespec deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 20 ) ; <nl> + gpr_timespec deadline = grpc_timeout_seconds_to_deadline ( 20 ) ; <nl> grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT ; <nl> <nl> gpr_log ( GPR_INFO , " Start large read test , slice size % " PRIuPTR , slice_size ) ; <nl> void drain_socket_blocking ( int fd , size_t num_bytes , size_t read_size ) { <nl> " pollset_work " , <nl> grpc_pollset_work ( & exec_ctx , g_pollset , & worker , <nl> gpr_now ( GPR_CLOCK_MONOTONIC ) , <nl> - GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( 10 ) ) ) ) ; <nl> + grpc_timeout_milliseconds_to_deadline ( 10 ) ) ) ) ; <nl> gpr_mu_unlock ( g_mu ) ; <nl> grpc_exec_ctx_finish ( & exec_ctx ) ; <nl> do { <nl> static void write_test ( size_t num_bytes , size_t slice_size ) { <nl> uint8_t current_data = 0 ; <nl> grpc_slice_buffer outgoing ; <nl> grpc_closure write_done_closure ; <nl> - gpr_timespec deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 20 ) ; <nl> + gpr_timespec deadline = grpc_timeout_seconds_to_deadline ( 20 ) ; <nl> grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT ; <nl> <nl> gpr_log ( GPR_INFO , <nl> static void release_fd_test ( size_t num_bytes , size_t slice_size ) { <nl> struct read_socket_state state ; <nl> size_t written_bytes ; <nl> int fd ; <nl> - gpr_timespec deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 20 ) ; <nl> + gpr_timespec deadline = grpc_timeout_seconds_to_deadline ( 20 ) ; <nl> grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT ; <nl> grpc_closure fd_released_cb ; <nl> int fd_released_done = 0 ; <nl> mmm a / test / core / iomgr / tcp_server_posix_test . c <nl> ppp b / test / core / iomgr / tcp_server_posix_test . c <nl> static void test_no_op_with_port_and_start ( void ) { <nl> <nl> static void tcp_connect ( grpc_exec_ctx * exec_ctx , const struct sockaddr * remote , <nl> socklen_t remote_len , on_connect_result * result ) { <nl> - gpr_timespec deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 10 ) ; <nl> + gpr_timespec deadline = grpc_timeout_seconds_to_deadline ( 10 ) ; <nl> int clifd = socket ( remote - > sa_family , SOCK_STREAM , 0 ) ; <nl> int nconnects_before ; <nl> <nl> mmm a / test / core / iomgr / udp_server_test . c <nl> ppp b / test / core / iomgr / udp_server_test . c <nl> static void test_receive ( int number_of_clients ) { <nl> gpr_mu_lock ( g_mu ) ; <nl> <nl> for ( i = 0 ; i < number_of_clients ; i + + ) { <nl> - deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 10 ) ; <nl> + deadline = grpc_timeout_seconds_to_deadline ( 10 ) ; <nl> <nl> number_of_reads_before = g_number_of_reads ; <nl> / * Create a socket , send a packet to the UDP server . * / <nl> mmm a / test / core / memory_usage / server . c <nl> ppp b / test / core / memory_usage / server . c <nl> int main ( int argc , char * * argv ) { <nl> gpr_log ( GPR_INFO , " Shutting down due to SIGINT " ) ; <nl> grpc_server_shutdown_and_notify ( server , cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_completion_queue_shutdown ( cq ) ; <nl> shutdown_started = 1 ; <nl> mmm a / test / core / statistics / census_log_tests . c <nl> ppp b / test / core / statistics / census_log_tests . c <nl> static void writer_thread ( void * arg ) { <nl> This should never happen for circular logs . * / <nl> printf ( " Writer stalled due to out - of - space : % d out of % d written \ n " , <nl> records_written , args - > num_records ) ; <nl> - gpr_sleep_until ( GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( 10 ) ) ; <nl> + gpr_sleep_until ( grpc_timeout_milliseconds_to_deadline ( 10 ) ) ; <nl> } <nl> } <nl> / * Done . Decrement count and signal . * / <nl> mmm a / test / core / support / cpu_test . c <nl> ppp b / test / core / support / cpu_test . c <nl> static void worker_thread ( void * arg ) { <nl> uint32_t cpu ; <nl> unsigned r = 12345678 ; <nl> unsigned i , j ; <nl> - for ( i = 0 ; i < 1000 / GRPC_TEST_SLOWDOWN_FACTOR ; i + + ) { <nl> + for ( i = 0 ; i < 1000 / grpc_test_slowdown_factor ( ) ; i + + ) { <nl> / * run for a bit - just calculate something random . * / <nl> - for ( j = 0 ; j < 1000000 / GRPC_TEST_SLOWDOWN_FACTOR ; j + + ) { <nl> + for ( j = 0 ; j < 1000000 / grpc_test_slowdown_factor ( ) ; j + + ) { <nl> r = ( r * 17 ) & ( ( r - i ) | ( r * i ) ) ; <nl> } <nl> cpu = gpr_cpu_current_cpu ( ) ; <nl> mmm a / test / core / surface / alarm_test . c <nl> ppp b / test / core / surface / alarm_test . c <nl> static void test_alarm ( void ) { <nl> grpc_event ev ; <nl> void * tag = create_test_tag ( ) ; <nl> grpc_alarm * alarm = <nl> - grpc_alarm_create ( cc , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 1 ) , tag ) ; <nl> + grpc_alarm_create ( cc , grpc_timeout_seconds_to_deadline ( 1 ) , tag ) ; <nl> <nl> - ev = grpc_completion_queue_next ( cc , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 2 ) , <nl> + ev = grpc_completion_queue_next ( cc , grpc_timeout_seconds_to_deadline ( 2 ) , <nl> NULL ) ; <nl> GPR_ASSERT ( ev . type = = GRPC_OP_COMPLETE ) ; <nl> GPR_ASSERT ( ev . tag = = tag ) ; <nl> static void test_alarm ( void ) { <nl> grpc_event ev ; <nl> void * tag = create_test_tag ( ) ; <nl> grpc_alarm * alarm = <nl> - grpc_alarm_create ( cc , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 2 ) , tag ) ; <nl> + grpc_alarm_create ( cc , grpc_timeout_seconds_to_deadline ( 2 ) , tag ) ; <nl> <nl> grpc_alarm_cancel ( alarm ) ; <nl> - ev = grpc_completion_queue_next ( cc , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 1 ) , <nl> + ev = grpc_completion_queue_next ( cc , grpc_timeout_seconds_to_deadline ( 1 ) , <nl> NULL ) ; <nl> GPR_ASSERT ( ev . type = = GRPC_OP_COMPLETE ) ; <nl> GPR_ASSERT ( ev . tag = = tag ) ; <nl> mmm a / test / core / surface / completion_queue_test . c <nl> ppp b / test / core / surface / completion_queue_test . c <nl> static void test_too_many_plucks ( void ) { <nl> } <nl> <nl> / * wait until all other threads are plucking * / <nl> - gpr_sleep_until ( GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( 1000 ) ) ; <nl> + gpr_sleep_until ( grpc_timeout_milliseconds_to_deadline ( 1000 ) ) ; <nl> <nl> ev = grpc_completion_queue_pluck ( cc , create_test_tag ( ) , <nl> gpr_inf_future ( GPR_CLOCK_REALTIME ) , NULL ) ; <nl> typedef struct test_thread_options { <nl> } test_thread_options ; <nl> <nl> gpr_timespec ten_seconds_time ( void ) { <nl> - return GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 10 ) ; <nl> + return grpc_timeout_seconds_to_deadline ( 10 ) ; <nl> } <nl> <nl> static void free_completion ( grpc_exec_ctx * exec_ctx , void * arg , <nl> mmm a / test / core / surface / concurrent_connectivity_test . c <nl> ppp b / test / core / surface / concurrent_connectivity_test . c <nl> void create_loop_destroy ( void * addr ) { <nl> grpc_channel * chan = grpc_insecure_channel_create ( ( char * ) addr , NULL , NULL ) ; <nl> <nl> for ( int j = 0 ; j < NUM_INNER_LOOPS ; + + j ) { <nl> - gpr_timespec later_time = GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( DELAY_MILLIS ) ; <nl> + gpr_timespec later_time = <nl> + grpc_timeout_milliseconds_to_deadline ( DELAY_MILLIS ) ; <nl> grpc_connectivity_state state = <nl> grpc_channel_check_connectivity_state ( chan , 1 ) ; <nl> grpc_channel_watch_connectivity_state ( chan , state , later_time , cq , NULL ) ; <nl> - gpr_timespec poll_time = GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( POLL_MILLIS ) ; <nl> + gpr_timespec poll_time = <nl> + grpc_timeout_milliseconds_to_deadline ( POLL_MILLIS ) ; <nl> GPR_ASSERT ( grpc_completion_queue_next ( cq , poll_time , NULL ) . type = = <nl> GRPC_OP_COMPLETE ) ; <nl> } <nl> mmm a / test / core / surface / lame_client_test . c <nl> ppp b / test / core / surface / lame_client_test . c <nl> int main ( int argc , char * * argv ) { <nl> grpc_slice host = grpc_slice_from_static_string ( " anywhere " ) ; <nl> call = grpc_channel_create_call ( chan , NULL , GRPC_PROPAGATE_DEFAULTS , cq , <nl> grpc_slice_from_static_string ( " / Foo " ) , & host , <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 100 ) , NULL ) ; <nl> + grpc_timeout_seconds_to_deadline ( 100 ) , NULL ) ; <nl> GPR_ASSERT ( call ) ; <nl> cqv = cq_verifier_create ( cq ) ; <nl> <nl> mmm a / test / core / surface / sequential_connectivity_test . c <nl> ppp b / test / core / surface / sequential_connectivity_test . c <nl> static void run_test ( const test_fixture * fixture ) { <nl> for ( size_t i = 0 ; i < NUM_CONNECTIONS ; i + + ) { <nl> channels [ i ] = fixture - > create_channel ( addr ) ; <nl> <nl> - gpr_timespec connect_deadline = GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 30 ) ; <nl> + gpr_timespec connect_deadline = grpc_timeout_seconds_to_deadline ( 30 ) ; <nl> grpc_connectivity_state state ; <nl> while ( ( state = grpc_channel_check_connectivity_state ( channels [ i ] , 1 ) ) ! = <nl> GRPC_CHANNEL_READY ) { <nl> mmm a / test / core / util / port_server_client . c <nl> ppp b / test / core / util / port_server_client . c <nl> void grpc_free_port_using_server ( char * server , int port ) { <nl> grpc_resource_quota * resource_quota = <nl> grpc_resource_quota_create ( " port_server_client / free " ) ; <nl> grpc_httpcli_get ( & exec_ctx , & context , & pr . pops , resource_quota , & req , <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 10 ) , <nl> + grpc_timeout_seconds_to_deadline ( 10 ) , <nl> grpc_closure_create ( freed_port_from_server , & pr , <nl> grpc_schedule_on_exec_ctx ) , <nl> & rsp ) ; <nl> void grpc_free_port_using_server ( char * server , int port ) { <nl> " pollset_work " , <nl> grpc_pollset_work ( & exec_ctx , grpc_polling_entity_pollset ( & pr . pops ) , <nl> & worker , gpr_now ( GPR_CLOCK_MONOTONIC ) , <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 1 ) ) ) ) { <nl> + grpc_timeout_seconds_to_deadline ( 1 ) ) ) ) { <nl> pr . done = 1 ; <nl> } <nl> } <nl> static void got_port_from_server ( grpc_exec_ctx * exec_ctx , void * arg , <nl> grpc_resource_quota * resource_quota = <nl> grpc_resource_quota_create ( " port_server_client / pick_retry " ) ; <nl> grpc_httpcli_get ( exec_ctx , pr - > ctx , & pr - > pops , resource_quota , & req , <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 10 ) , <nl> + grpc_timeout_seconds_to_deadline ( 10 ) , <nl> grpc_closure_create ( got_port_from_server , pr , <nl> grpc_schedule_on_exec_ctx ) , <nl> & pr - > response ) ; <nl> int grpc_pick_port_using_server ( char * server ) { <nl> grpc_resource_quota_create ( " port_server_client / pick " ) ; <nl> grpc_httpcli_get ( <nl> & exec_ctx , & context , & pr . pops , resource_quota , & req , <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 10 ) , <nl> + grpc_timeout_seconds_to_deadline ( 10 ) , <nl> grpc_closure_create ( got_port_from_server , & pr , grpc_schedule_on_exec_ctx ) , <nl> & pr . response ) ; <nl> grpc_resource_quota_unref_internal ( & exec_ctx , resource_quota ) ; <nl> int grpc_pick_port_using_server ( char * server ) { <nl> " pollset_work " , <nl> grpc_pollset_work ( & exec_ctx , grpc_polling_entity_pollset ( & pr . pops ) , <nl> & worker , gpr_now ( GPR_CLOCK_MONOTONIC ) , <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 1 ) ) ) ) { <nl> + grpc_timeout_seconds_to_deadline ( 1 ) ) ) ) { <nl> pr . port = 0 ; <nl> } <nl> } <nl> mmm a / test / core / util / test_config . c <nl> ppp b / test / core / util / test_config . c <nl> <nl> # include " src / core / lib / support / env . h " <nl> # include " src / core / lib / support / string . h " <nl> <nl> - double g_fixture_slowdown_factor = 1 . 0 ; <nl> - double g_poller_slowdown_factor = 1 . 0 ; <nl> + int64_t g_fixture_slowdown_factor = 1 ; <nl> + int64_t g_poller_slowdown_factor = 1 ; <nl> <nl> # if GPR_GETPID_IN_UNISTD_H <nl> # include < unistd . h > <nl> static void install_crash_handler ( ) { <nl> static void install_crash_handler ( ) { } <nl> # endif <nl> <nl> + bool BuiltUnderValgrind ( ) { <nl> + # ifdef RUNNING_ON_VALGRIND <nl> + return true ; <nl> + # else <nl> + return false ; <nl> + # endif <nl> + } <nl> + <nl> + bool BuiltUnderTsan ( ) { <nl> + # if defined ( __has_feature ) <nl> + # if __has_feature ( thread_sanitizer ) <nl> + return true ; <nl> + # else <nl> + return false ; <nl> + # endif <nl> + # else <nl> + # ifdef THREAD_SANITIZER <nl> + return true ; <nl> + # else <nl> + return false ; <nl> + # endif <nl> + # endif <nl> + } <nl> + <nl> + bool BuiltUnderAsan ( ) { <nl> + # if defined ( __has_feature ) <nl> + # if __has_feature ( address_sanitizer ) <nl> + return true ; <nl> + # else <nl> + return false ; <nl> + # endif <nl> + # else <nl> + # ifdef ADDRESS_SANITIZER <nl> + return true ; <nl> + # else <nl> + return false ; <nl> + # endif <nl> + # endif <nl> + } <nl> + <nl> + bool BuiltUnderMsan ( ) { <nl> + # if defined ( __has_feature ) <nl> + # if __has_feature ( memory_sanitizer ) <nl> + return true ; <nl> + # else <nl> + return false ; <nl> + # endif <nl> + # else <nl> + # ifdef MEMORY_SANITIZER <nl> + return true ; <nl> + # else <nl> + return false ; <nl> + # endif <nl> + # endif <nl> + } <nl> + <nl> + int64_t grpc_test_sanitizer_slowdown_factor ( ) { <nl> + int64_t sanitizer_multiplier = 1 ; <nl> + if ( BuiltUnderValgrind ( ) ) { <nl> + sanitizer_multiplier = 20 ; <nl> + } else if ( BuiltUnderTsan ( ) ) { <nl> + sanitizer_multiplier = 5 ; <nl> + } else if ( BuiltUnderAsan ( ) ) { <nl> + sanitizer_multiplier = 3 ; <nl> + } else if ( BuiltUnderMsan ( ) ) { <nl> + sanitizer_multiplier = 4 ; <nl> + } <nl> + return sanitizer_multiplier ; <nl> + } <nl> + <nl> + int64_t grpc_test_slowdown_factor ( ) { <nl> + return grpc_test_sanitizer_slowdown_factor ( ) * g_fixture_slowdown_factor * <nl> + g_poller_slowdown_factor ; <nl> + } <nl> + <nl> + gpr_timespec grpc_timeout_seconds_to_deadline ( int64_t time_s ) { <nl> + return gpr_time_add ( <nl> + gpr_now ( GPR_CLOCK_MONOTONIC ) , <nl> + gpr_time_from_millis ( grpc_test_slowdown_factor ( ) * ( int64_t ) 1e3 * time_s , <nl> + GPR_TIMESPAN ) ) ; <nl> + } <nl> + <nl> + gpr_timespec grpc_timeout_milliseconds_to_deadline ( int64_t time_ms ) { <nl> + return gpr_time_add ( <nl> + gpr_now ( GPR_CLOCK_MONOTONIC ) , <nl> + gpr_time_from_micros ( grpc_test_slowdown_factor ( ) * ( int64_t ) 1e3 * time_ms , <nl> + GPR_TIMESPAN ) ) ; <nl> + } <nl> + <nl> void grpc_test_init ( int argc , char * * argv ) { <nl> install_crash_handler ( ) ; <nl> { / * poll - cv poll strategy runs much more slowly than anything else * / <nl> char * s = gpr_getenv ( " GRPC_POLL_STRATEGY " ) ; <nl> if ( s ! = NULL & & 0 = = strcmp ( s , " poll - cv " ) ) { <nl> - g_poller_slowdown_factor = 5 . 0 ; <nl> + g_poller_slowdown_factor = 5 ; <nl> } <nl> gpr_free ( s ) ; <nl> } <nl> - gpr_log ( GPR_DEBUG , " test slowdown : machine = % f build = % f poll = % f total = % f " , <nl> - ( double ) GRPC_TEST_SLOWDOWN_MACHINE_FACTOR , <nl> - ( double ) GRPC_TEST_SLOWDOWN_BUILD_FACTOR , g_poller_slowdown_factor , <nl> - ( double ) GRPC_TEST_SLOWDOWN_FACTOR ) ; <nl> + gpr_log ( GPR_DEBUG , <nl> + " test slowdown factor : sanitizer = % " PRId64 " , fixture = % " PRId64 <nl> + " , poller = % " PRId64 " , total = % " PRId64 , <nl> + grpc_test_sanitizer_slowdown_factor ( ) , g_fixture_slowdown_factor , <nl> + g_poller_slowdown_factor , grpc_test_slowdown_factor ( ) ) ; <nl> / * seed rng with pid , so we don ' t end up with the same random numbers as a <nl> concurrently running test binary * / <nl> srand ( seed ( ) ) ; <nl> mmm a / test / core / util / test_config . h <nl> ppp b / test / core / util / test_config . h <nl> <nl> extern " C " { <nl> # endif / * __cplusplus * / <nl> <nl> - # ifndef GRPC_TEST_SLOWDOWN_BUILD_FACTOR <nl> - # define GRPC_TEST_SLOWDOWN_BUILD_FACTOR 1 . 0 <nl> - # endif <nl> - <nl> - # ifndef GRPC_TEST_SLOWDOWN_MACHINE_FACTOR <nl> - # define GRPC_TEST_SLOWDOWN_MACHINE_FACTOR 1 . 0 <nl> - # endif <nl> - <nl> - extern double g_fixture_slowdown_factor ; <nl> - extern double g_poller_slowdown_factor ; <nl> + extern int64_t g_fixture_slowdown_factor ; <nl> + extern int64_t g_poller_slowdown_factor ; <nl> <nl> - # define GRPC_TEST_SLOWDOWN_FACTOR \ <nl> - ( GRPC_TEST_SLOWDOWN_BUILD_FACTOR * GRPC_TEST_SLOWDOWN_MACHINE_FACTOR * \ <nl> - g_fixture_slowdown_factor * g_poller_slowdown_factor ) <nl> + / * Returns an appropriate scaling factor for timeouts . * / <nl> + int64_t grpc_test_slowdown_factor ( ) ; <nl> <nl> - # define GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( x ) \ <nl> - gpr_time_add ( \ <nl> - gpr_now ( GPR_CLOCK_MONOTONIC ) , \ <nl> - gpr_time_from_millis ( ( int64_t ) ( GRPC_TEST_SLOWDOWN_FACTOR * 1e3 * ( x ) ) , \ <nl> - GPR_TIMESPAN ) ) <nl> + / * Converts a given timeout ( in seconds ) to a deadline . * / <nl> + gpr_timespec grpc_timeout_seconds_to_deadline ( int64_t time_s ) ; <nl> <nl> - # define GRPC_TIMEOUT_MILLIS_TO_DEADLINE ( x ) \ <nl> - gpr_time_add ( \ <nl> - gpr_now ( GPR_CLOCK_MONOTONIC ) , \ <nl> - gpr_time_from_micros ( ( int64_t ) ( GRPC_TEST_SLOWDOWN_FACTOR * 1e3 * ( x ) ) , \ <nl> - GPR_TIMESPAN ) ) <nl> + / * Converts a given timeout ( in milliseconds ) to a deadline . * / <nl> + gpr_timespec grpc_timeout_milliseconds_to_deadline ( int64_t time_ms ) ; <nl> <nl> # ifndef GRPC_TEST_CUSTOM_PICK_PORT <nl> # define GRPC_TEST_PICK_PORT <nl> mmm a / test / cpp / common / alarm_cpp_test . cc <nl> ppp b / test / cpp / common / alarm_cpp_test . cc <nl> namespace { <nl> TEST ( AlarmTest , RegularExpiry ) { <nl> CompletionQueue cq ; <nl> void * junk = reinterpret_cast < void * > ( 1618033 ) ; <nl> - Alarm alarm ( & cq , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 1 ) , junk ) ; <nl> + Alarm alarm ( & cq , grpc_timeout_seconds_to_deadline ( 1 ) , junk ) ; <nl> <nl> void * output_tag ; <nl> bool ok ; <nl> const CompletionQueue : : NextStatus status = cq . AsyncNext ( <nl> - ( void * * ) & output_tag , & ok , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 2 ) ) ; <nl> + ( void * * ) & output_tag , & ok , grpc_timeout_seconds_to_deadline ( 2 ) ) ; <nl> <nl> EXPECT_EQ ( status , CompletionQueue : : GOT_EVENT ) ; <nl> EXPECT_TRUE ( ok ) ; <nl> TEST ( AlarmTest , RegularExpiryChrono ) { <nl> void * output_tag ; <nl> bool ok ; <nl> const CompletionQueue : : NextStatus status = cq . AsyncNext ( <nl> - ( void * * ) & output_tag , & ok , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 2 ) ) ; <nl> + ( void * * ) & output_tag , & ok , grpc_timeout_seconds_to_deadline ( 2 ) ) ; <nl> <nl> EXPECT_EQ ( status , CompletionQueue : : GOT_EVENT ) ; <nl> EXPECT_TRUE ( ok ) ; <nl> TEST ( AlarmTest , RegularExpiryChrono ) { <nl> TEST ( AlarmTest , ZeroExpiry ) { <nl> CompletionQueue cq ; <nl> void * junk = reinterpret_cast < void * > ( 1618033 ) ; <nl> - Alarm alarm ( & cq , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 0 ) , junk ) ; <nl> + Alarm alarm ( & cq , grpc_timeout_seconds_to_deadline ( 0 ) , junk ) ; <nl> <nl> void * output_tag ; <nl> bool ok ; <nl> const CompletionQueue : : NextStatus status = cq . AsyncNext ( <nl> - ( void * * ) & output_tag , & ok , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 0 ) ) ; <nl> + ( void * * ) & output_tag , & ok , grpc_timeout_seconds_to_deadline ( 0 ) ) ; <nl> <nl> EXPECT_EQ ( status , CompletionQueue : : GOT_EVENT ) ; <nl> EXPECT_TRUE ( ok ) ; <nl> TEST ( AlarmTest , ZeroExpiry ) { <nl> TEST ( AlarmTest , NegativeExpiry ) { <nl> CompletionQueue cq ; <nl> void * junk = reinterpret_cast < void * > ( 1618033 ) ; <nl> - Alarm alarm ( & cq , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( - 1 ) , junk ) ; <nl> + Alarm alarm ( & cq , grpc_timeout_seconds_to_deadline ( - 1 ) , junk ) ; <nl> <nl> void * output_tag ; <nl> bool ok ; <nl> const CompletionQueue : : NextStatus status = cq . AsyncNext ( <nl> - ( void * * ) & output_tag , & ok , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 0 ) ) ; <nl> + ( void * * ) & output_tag , & ok , grpc_timeout_seconds_to_deadline ( 0 ) ) ; <nl> <nl> EXPECT_EQ ( status , CompletionQueue : : GOT_EVENT ) ; <nl> EXPECT_TRUE ( ok ) ; <nl> TEST ( AlarmTest , NegativeExpiry ) { <nl> TEST ( AlarmTest , Cancellation ) { <nl> CompletionQueue cq ; <nl> void * junk = reinterpret_cast < void * > ( 1618033 ) ; <nl> - Alarm alarm ( & cq , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 2 ) , junk ) ; <nl> + Alarm alarm ( & cq , grpc_timeout_seconds_to_deadline ( 2 ) , junk ) ; <nl> alarm . Cancel ( ) ; <nl> <nl> void * output_tag ; <nl> bool ok ; <nl> const CompletionQueue : : NextStatus status = cq . AsyncNext ( <nl> - ( void * * ) & output_tag , & ok , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 1 ) ) ; <nl> + ( void * * ) & output_tag , & ok , grpc_timeout_seconds_to_deadline ( 1 ) ) ; <nl> <nl> EXPECT_EQ ( status , CompletionQueue : : GOT_EVENT ) ; <nl> EXPECT_FALSE ( ok ) ; <nl> mmm a / test / cpp / grpclb / grpclb_test . cc <nl> ppp b / test / cpp / grpclb / grpclb_test . cc <nl> static grpc_slice build_response_payload_slice ( <nl> static void drain_cq ( grpc_completion_queue * cq ) { <nl> grpc_event ev ; <nl> do { <nl> - ev = grpc_completion_queue_next ( cq , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , <nl> + ev = grpc_completion_queue_next ( cq , grpc_timeout_seconds_to_deadline ( 5 ) , <nl> NULL ) ; <nl> } while ( ev . type ! = GRPC_QUEUE_SHUTDOWN ) ; <nl> } <nl> static void start_backend_server ( server_fixture * sf ) { <nl> GPR_ASSERT ( GRPC_CALL_OK = = error ) ; <nl> gpr_log ( GPR_INFO , " Server [ % s ] up " , sf - > servers_hostport ) ; <nl> ev = grpc_completion_queue_next ( sf - > cq , <nl> - GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 60 ) , NULL ) ; <nl> + grpc_timeout_seconds_to_deadline ( 60 ) , NULL ) ; <nl> if ( ! ev . success ) { <nl> gpr_log ( GPR_INFO , " Server [ % s ] being torn down " , sf - > servers_hostport ) ; <nl> cq_verifier_destroy ( cqv ) ; <nl> static void start_backend_server ( server_fixture * sf ) { <nl> error = grpc_call_start_batch ( s , ops , ( size_t ) ( op - ops ) , tag ( 102 ) , NULL ) ; <nl> GPR_ASSERT ( GRPC_CALL_OK = = error ) ; <nl> ev = grpc_completion_queue_next ( <nl> - sf - > cq , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 3 ) , NULL ) ; <nl> + sf - > cq , grpc_timeout_seconds_to_deadline ( 3 ) , NULL ) ; <nl> if ( ev . type = = GRPC_OP_COMPLETE & & ev . success ) { <nl> GPR_ASSERT ( ev . tag = tag ( 102 ) ) ; <nl> if ( request_payload_recv = = NULL ) { <nl> static void start_backend_server ( server_fixture * sf ) { <nl> grpc_call_start_batch ( s , ops , ( size_t ) ( op - ops ) , tag ( 103 ) , NULL ) ; <nl> GPR_ASSERT ( GRPC_CALL_OK = = error ) ; <nl> ev = grpc_completion_queue_next ( <nl> - sf - > cq , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 3 ) , NULL ) ; <nl> + sf - > cq , grpc_timeout_seconds_to_deadline ( 3 ) , NULL ) ; <nl> if ( ev . type = = GRPC_OP_COMPLETE & & ev . success ) { <nl> GPR_ASSERT ( ev . tag = tag ( 103 ) ) ; <nl> } else { <nl> static void perform_request ( client_fixture * cf ) { <nl> grpc_slice host = grpc_slice_from_static_string ( " foo . test . google . fr : 1234 " ) ; <nl> c = grpc_channel_create_call ( cf - > client , NULL , GRPC_PROPAGATE_DEFAULTS , <nl> cf - > cq , grpc_slice_from_static_string ( " / foo " ) , <nl> - & host , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , <nl> + & host , grpc_timeout_seconds_to_deadline ( 5 ) , <nl> NULL ) ; <nl> gpr_log ( GPR_INFO , " Call 0x % " PRIxPTR " created " , ( intptr_t ) c ) ; <nl> GPR_ASSERT ( c ) ; <nl> static void teardown_server ( server_fixture * sf ) { <nl> gpr_log ( GPR_INFO , " Server [ % s ] shutting down " , sf - > servers_hostport ) ; <nl> grpc_server_shutdown_and_notify ( sf - > server , sf - > cq , tag ( 1000 ) ) ; <nl> GPR_ASSERT ( grpc_completion_queue_pluck ( <nl> - sf - > cq , tag ( 1000 ) , GRPC_TIMEOUT_SECONDS_TO_DEADLINE ( 5 ) , NULL ) <nl> + sf - > cq , tag ( 1000 ) , grpc_timeout_seconds_to_deadline ( 5 ) , NULL ) <nl> . type = = GRPC_OP_COMPLETE ) ; <nl> grpc_server_destroy ( sf - > server ) ; <nl> gpr_thd_join ( sf - > tid ) ; <nl> mmm a / test / cpp / qps / gen_build_yaml . py <nl> ppp b / test / cpp / qps / gen_build_yaml . py <nl> def guess_cpu ( scenario_json , is_tsan ) : <nl> ' defaults ' : ' boringssl ' , <nl> ' cpu_cost ' : guess_cpu ( scenario_json , False ) , <nl> ' exclude_configs ' : [ ' tsan ' , ' asan ' ] , <nl> - ' timeout_seconds ' : 6 * 60 <nl> + ' timeout_seconds ' : 6 * 60 , <nl> + ' excluded_poll_engines ' : scenario_json . get ( ' EXCLUDED_POLL_ENGINES ' , [ ] ) <nl> } <nl> for scenario_json in scenario_config . CXXLanguage ( ) . scenarios ( ) <nl> if ' scalable ' in scenario_json . get ( ' CATEGORIES ' , [ ] ) <nl> def guess_cpu ( scenario_json , is_tsan ) : <nl> ' defaults ' : ' boringssl ' , <nl> ' cpu_cost ' : guess_cpu ( scenario_json , True ) , <nl> ' exclude_configs ' : sorted ( c for c in configs_from_yaml if c not in ( ' tsan ' , ' asan ' ) ) , <nl> - ' timeout_seconds ' : 6 * 60 <nl> - } <nl> + ' timeout_seconds ' : 6 * 60 , <nl> + ' excluded_poll_engines ' : scenario_json . get ( ' EXCLUDED_POLL_ENGINES ' , [ ] ) <nl> + } <nl> for scenario_json in scenario_config . CXXLanguage ( ) . scenarios ( ) <nl> if ' scalable ' in scenario_json . get ( ' CATEGORIES ' , [ ] ) <nl> ] <nl> mmm a / test / cpp / qps / qps_openloop_test . cc <nl> ppp b / test / cpp / qps / qps_openloop_test . cc <nl> static void RunQPS ( ) { <nl> client_config . set_async_client_threads ( 8 ) ; <nl> client_config . set_rpc_type ( STREAMING ) ; <nl> client_config . mutable_load_params ( ) - > mutable_poisson ( ) - > set_offered_load ( <nl> - 1000 . 0 / GRPC_TEST_SLOWDOWN_FACTOR ) ; <nl> + 1000 . 0 / grpc_test_slowdown_factor ( ) ) ; <nl> <nl> ServerConfig server_config ; <nl> server_config . set_server_type ( ASYNC_SERVER ) ; <nl> similarity index 100 % <nl> rename from third_party / Cronet / bidirectional_stream_c . h <nl> rename to third_party / objective_c / Cronet / bidirectional_stream_c . h <nl> mmm a / tools / distrib / python / grpcio_tools / grpc_version . py <nl> ppp b / tools / distrib / python / grpcio_tools / grpc_version . py <nl> <nl> <nl> # AUTO - GENERATED FROM ` $ REPO_ROOT / templates / tools / distrib / python / grpcio_tools / grpc_version . py . template ` ! ! ! <nl> <nl> - VERSION = ' 1 . 1 . 0 . dev0 ' <nl> + VERSION = ' 1 . 2 . 0 . dev0 ' <nl> mmm a / tools / doxygen / Doxyfile . c + + <nl> ppp b / tools / doxygen / Doxyfile . c + + <nl> PROJECT_NAME = " GRPC C + + " <nl> # could be handy for archiving the generated documentation or if some version <nl> # control system is used . <nl> <nl> - PROJECT_NUMBER = 1 . 1 . 0 - dev <nl> + PROJECT_NUMBER = 1 . 2 . 0 - dev <nl> <nl> # Using the PROJECT_BRIEF tag one can provide an optional one line description <nl> # for a project that appears at the top of each page and should give viewer a <nl> mmm a / tools / doxygen / Doxyfile . c + + . internal <nl> ppp b / tools / doxygen / Doxyfile . c + + . internal <nl> PROJECT_NAME = " GRPC C + + " <nl> # could be handy for archiving the generated documentation or if some version <nl> # control system is used . <nl> <nl> - PROJECT_NUMBER = 1 . 1 . 0 - dev <nl> + PROJECT_NUMBER = 1 . 2 . 0 - dev <nl> <nl> # Using the PROJECT_BRIEF tag one can provide an optional one line description <nl> # for a project that appears at the top of each page and should give viewer a <nl> mmm a / tools / doxygen / Doxyfile . core <nl> ppp b / tools / doxygen / Doxyfile . core <nl> PROJECT_NAME = " GRPC Core " <nl> # could be handy for archiving the generated documentation or if some version <nl> # control system is used . <nl> <nl> - PROJECT_NUMBER = 2 . 0 . 0 - dev <nl> + PROJECT_NUMBER = 3 . 0 . 0 - dev <nl> <nl> # Using the PROJECT_BRIEF tag one can provide an optional one line description <nl> # for a project that appears at the top of each page and should give viewer a <nl> mmm a / tools / doxygen / Doxyfile . core . internal <nl> ppp b / tools / doxygen / Doxyfile . core . internal <nl> PROJECT_NAME = " GRPC Core " <nl> # could be handy for archiving the generated documentation or if some version <nl> # control system is used . <nl> <nl> - PROJECT_NUMBER = 2 . 0 . 0 - dev <nl> + PROJECT_NUMBER = 3 . 0 . 0 - dev <nl> <nl> # Using the PROJECT_BRIEF tag one can provide an optional one line description <nl> # for a project that appears at the top of each page and should give viewer a <nl> mmm a / tools / run_tests / generated / configs . json <nl> ppp b / tools / run_tests / generated / configs . json <nl> <nl> } , <nl> { <nl> " config " : " helgrind " , <nl> - " timeout_multiplier " : 20 , <nl> " tool_prefix " : [ <nl> " valgrind " , <nl> " - - tool = helgrind " <nl> <nl> " config " : " asan - noleaks " , <nl> " environ " : { <nl> " ASAN_OPTIONS " : " detect_leaks = 0 : color = always " <nl> - } , <nl> - " timeout_multiplier " : 3 <nl> + } <nl> } , <nl> { <nl> " config " : " asan - trace - cmp " , <nl> " environ " : { <nl> " ASAN_OPTIONS " : " detect_leaks = 1 : color = always " , <nl> " LSAN_OPTIONS " : " suppressions = tools / lsan_suppressions . txt : report_objects = 1 " <nl> - } , <nl> - " timeout_multiplier " : 3 <nl> + } <nl> } , <nl> { <nl> " config " : " dbg " <nl> <nl> } , <nl> { <nl> " config " : " memcheck " , <nl> - " timeout_multiplier " : 10 , <nl> " tool_prefix " : [ <nl> " valgrind " , <nl> " - - tool = memcheck " , <nl> <nl> " environ " : { <nl> " ASAN_OPTIONS " : " detect_leaks = 1 : color = always " , <nl> " LSAN_OPTIONS " : " suppressions = tools / lsan_suppressions . txt : report_objects = 1 " <nl> - } , <nl> - " timeout_multiplier " : 3 <nl> + } <nl> } , <nl> { <nl> " config " : " tsan " , <nl> " environ " : { <nl> " TSAN_OPTIONS " : " suppressions = tools / tsan_suppressions . txt : halt_on_error = 1 : second_deadlock_stack = 1 " <nl> - } , <nl> - " timeout_multiplier " : 5 <nl> + } <nl> } , <nl> { <nl> " config " : " ubsan " , <nl> " environ " : { <nl> " UBSAN_OPTIONS " : " halt_on_error = 1 : print_stacktrace = 1 " <nl> - } , <nl> - " timeout_multiplier " : 1 . 5 <nl> + } <nl> } , <nl> { <nl> - " config " : " msan " , <nl> - " timeout_multiplier " : 4 <nl> + " config " : " msan " <nl> } , <nl> { <nl> " config " : " mutrace " <nl> mmm a / tools / run_tests / generated / sources_and_headers . json <nl> ppp b / tools / run_tests / generated / sources_and_headers . json <nl> <nl> " include / grpc / grpc_cronet . h " , <nl> " include / grpc / grpc_security . h " , <nl> " include / grpc / grpc_security_constants . h " , <nl> - " third_party / Cronet / bidirectional_stream_c . h " <nl> + " third_party / objective_c / Cronet / bidirectional_stream_c . h " <nl> ] , <nl> " is_filegroup " : true , <nl> " language " : " c " , <nl> mmm a / tools / run_tests / generated / tests . json <nl> ppp b / tools / run_tests / generated / tests . json <nl> <nl> " cpu_cost " : 1 . 0 , <nl> " exclude_configs " : [ ] , <nl> " exclude_iomgrs " : [ ] , <nl> - " flaky " : false , <nl> - " gtest " : true , <nl> + " flaky " : true , <nl> + " gtest " : false , <nl> " language " : " c + + " , <nl> " name " : " hybrid_end2end_test " , <nl> " platforms " : [ <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_servers \ " : 1 , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ <nl> + " poll - cv " <nl> + ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_servers \ " : 1 , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ <nl> + " poll - cv " <nl> + ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_servers \ " : 1 , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ <nl> + " poll - cv " <nl> + ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_servers \ " : 1 , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 100 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ <nl> + " poll - cv " <nl> + ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " tsan " , <nl> " asan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_servers \ " : 1 , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ <nl> + " poll - cv " <nl> + ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_secure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_servers \ " : 1 , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : { \ " use_test_ca \ " : true , \ " server_host_override \ " : \ " foo . test . google . fr \ " } , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ <nl> + " poll - cv " <nl> + ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_unary_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_servers \ " : 1 , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " UNARY \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ <nl> + " poll - cv " <nl> + ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> { <nl> " args " : [ <nl> " - - scenarios_json " , <nl> - " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " num_servers \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> + " { \ " scenarios \ " : [ { \ " name \ " : \ " cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_insecure \ " , \ " warmup_seconds \ " : 0 , \ " benchmark_seconds \ " : 1 , \ " server_config \ " : { \ " async_server_threads \ " : 0 , \ " security_params \ " : null , \ " payload_config \ " : null , \ " server_type \ " : \ " SYNC_SERVER \ " } , \ " num_servers \ " : 1 , \ " num_clients \ " : 0 , \ " client_config \ " : { \ " client_type \ " : \ " ASYNC_CLIENT \ " , \ " security_params \ " : null , \ " payload_config \ " : null , \ " client_channels \ " : 64 , \ " async_client_threads \ " : 0 , \ " outstanding_rpcs_per_channel \ " : 10 , \ " rpc_type \ " : \ " STREAMING \ " , \ " load_params \ " : { \ " closed_loop \ " : { } } , \ " histogram_params \ " : { \ " max_possible \ " : 60000000000 . 0 , \ " resolution \ " : 0 . 01 } } } ] } " <nl> ] , <nl> " boringssl " : true , <nl> " ci_platforms " : [ <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ <nl> + " poll - cv " <nl> + ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> " stapprof " , <nl> " ubsan " <nl> ] , <nl> + " excluded_poll_engines " : [ ] , <nl> " flaky " : false , <nl> " language " : " c + + " , <nl> " name " : " json_run_localhost " , <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 00a1b8e686014202baacdc052a38d392dff11432 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 008d276f01f9371a5956cccf2eeeadb790728a84 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 00c7c2cc7f90842e766645310e4a439e7b188473 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 00a1b8e686014202baacdc052a38d392dff11432 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 00f89898cb8f3e3c20e7be1d8c7a1544fb81ea5e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 00ba96baafa4595f2d41c2fcf0a27f4e9be5c44d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 01 . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 00c7c2cc7f90842e766645310e4a439e7b188473 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0159f564d91869bc07239f5551a493c2845a4524 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 00f89898cb8f3e3c20e7be1d8c7a1544fb81ea5e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0170e921ff5d052b228a26529116ea47fe9d3f0b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 01 . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0173fb5c52d97d0d63266a529bf2f6442894b0c6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0159f564d91869bc07239f5551a493c2845a4524 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 01a344a0256386cc8abb8dcb65cb55e1244f7f97 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0163bae995fe67a902eabf9f2644726d4767184c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 01c59f0a030fa11c4af1b7c0cc85846e9ef3f6b9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0170e921ff5d052b228a26529116ea47fe9d3f0b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 01f52e31dfffdab89d83acd39925c3dd81baa76f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0173fb5c52d97d0d63266a529bf2f6442894b0c6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 02 . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 01a344a0256386cc8abb8dcb65cb55e1244f7f97 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 020d06c319b6e511021d21316ba283bca9b40dc9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 01c59f0a030fa11c4af1b7c0cc85846e9ef3f6b9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0211f960c2da343c3cde6406e650d73278e01e47 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 01f52e31dfffdab89d83acd39925c3dd81baa76f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0236f28708dcc2e044d67ecf93539ce6c33a727a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 02 . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0242a9f4d4fafc96ee9ed762b610e3c68d6efdec " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 020d06c319b6e511021d21316ba283bca9b40dc9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 02434dcdaca96b9eacee76eb351e99f015eaa05e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0211f960c2da343c3cde6406e650d73278e01e47 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 02c3cf8d52fbc43f89b5f516a17cea23b68fc8d5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0236f28708dcc2e044d67ecf93539ce6c33a727a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 03 . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0242a9f4d4fafc96ee9ed762b610e3c68d6efdec " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0302b90625ac9f61f45b45d043fda23b5472d711 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 02434dcdaca96b9eacee76eb351e99f015eaa05e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 032744b59cafd3320cc932ad39926a9bc92f589e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 02c3cf8d52fbc43f89b5f516a17cea23b68fc8d5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0385c7b41263419e25a4342fbfc44fbd65eb2ed5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 03 . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 04 . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0302b90625ac9f61f45b45d043fda23b5472d711 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0433cabb8c28820bda0a6eac35d17d120f1b6865 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 032744b59cafd3320cc932ad39926a9bc92f589e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0452ea591951af85724608917fda16926dad7451 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0385c7b41263419e25a4342fbfc44fbd65eb2ed5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0468ab4bf4f7e10b680f43efae4bf9686834d220 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 03eb66a763e065772bbb09e9a55baf081814ff25 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 04a5f10d2ebc712cf13c05b5ed0fafb31b42737c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 04 . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 04d93c9df413717f71abd091592b5238afb799e8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0433cabb8c28820bda0a6eac35d17d120f1b6865 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 04e01f399f194434b2b724877df64828e8f52c14 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0452ea591951af85724608917fda16926dad7451 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 05 . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0468ab4bf4f7e10b680f43efae4bf9686834d220 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0539bf31b2310091ce30d0123142d63589939105 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 04a5f10d2ebc712cf13c05b5ed0fafb31b42737c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0542a0e5aeb1658cc965724bfced56770569263b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 04d93c9df413717f71abd091592b5238afb799e8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 056e56878b249c7fd0b95576b352ab2f4d46582e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 04e01f399f194434b2b724877df64828e8f52c14 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0598f8881c26b7e9562cdc4c3f86749dd49598d6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 05 . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 05dee1c3847f2bca29bd14ed701ce64999b298b2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0539bf31b2310091ce30d0123142d63589939105 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 06 . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 053b47093c2145d00b8d53ea58b80afcc876109b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 064d3beeef29a647deb1b345426ea7212de71cfe " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0542a0e5aeb1658cc965724bfced56770569263b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 064d50aee4416ccf32f4e4fe7b770b7802265ffe " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 056e56878b249c7fd0b95576b352ab2f4d46582e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 066e7fcb68e83b432c414f63f6de73e5f5099e49 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0598f8881c26b7e9562cdc4c3f86749dd49598d6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 067298a97640cc5e212647864d21bc1fa6bb7e75 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 05dee1c3847f2bca29bd14ed701ce64999b298b2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 06b63ac01c261518e291461fb4707cb29d74e9c5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 06 . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 06c714e289673cf982ce2ac0670707a15f2ac5ea " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 064d3beeef29a647deb1b345426ea7212de71cfe " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 06eced19ea6819d7b0855c62da49a193b50067ab " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 064d50aee4416ccf32f4e4fe7b770b7802265ffe " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 06eee533524c6723881c1591956edf704e0180d9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 066e7fcb68e83b432c414f63f6de73e5f5099e49 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 07 . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 067298a97640cc5e212647864d21bc1fa6bb7e75 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 070aca38b5cd06626dfc98126ef1225595800427 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 06a298ad14533924c9fcb2df0d462c44a206f64b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 070c7005e63abba72c6bc1a0ee6d44e340f2d2be " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 06b63ac01c261518e291461fb4707cb29d74e9c5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 071247b8fddda8aa520d9142c89039fbf8bf6cee " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 06c714e289673cf982ce2ac0670707a15f2ac5ea " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 071b85ef412067e7db9188bee7c92e4fd661e021 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 06d20c59bcbeb0deff39619455a713691191bccd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 07674d39538e07c29342cb2ee8856bc71fc06638 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 06eced19ea6819d7b0855c62da49a193b50067ab " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0768af66da5e344f21337df8eb0a1c8c955f4244 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 06eee533524c6723881c1591956edf704e0180d9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 077202f145bfc7dff77e820cbe6ac6e4ae76e1ed " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 07 . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0783c943aa7cdb8fdef5f7b1cf73e2bb2daf17f4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 070aca38b5cd06626dfc98126ef1225595800427 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 07aa7d6c71878eb78b25ca12d79082f70ae7f64c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 070c7005e63abba72c6bc1a0ee6d44e340f2d2be " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 07ae5ed3dedbd83e376c892a9546cc0cd733c26f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 071247b8fddda8aa520d9142c89039fbf8bf6cee " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 07cb3b9baca1bbcce2e199e551073ba2fdd4e05c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 071b85ef412067e7db9188bee7c92e4fd661e021 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 07cc8b298d1502d0c30f3f160871e66e5a1f3fe1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 07674d39538e07c29342cb2ee8856bc71fc06638 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 07e7bbb0005535e901b7f50e13cba9d5da51c2a5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0768af66da5e344f21337df8eb0a1c8c955f4244 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 07fa2b6ed650d436f423adcccfcbe63ce6253de0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 077202f145bfc7dff77e820cbe6ac6e4ae76e1ed " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 08 . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0783c943aa7cdb8fdef5f7b1cf73e2bb2daf17f4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 081e3248dfca2b32837c4738daee3a4698caaf15 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 07867ad24a27ff8675dc36a1d8da833f9ee9434b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 08398518b9b4e98d4625dfb063ab0b6d9399a239 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 07aa7d6c71878eb78b25ca12d79082f70ae7f64c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 08455b3ef9d516deb8155d8db7d51c43ce0ff07a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 07ae5ed3dedbd83e376c892a9546cc0cd733c26f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 085865a209776911782f592c9f30ffe0ad3814a0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 07cb3b9baca1bbcce2e199e551073ba2fdd4e05c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 088bf259e854abd9508d91b23983737f8e9e242c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 07cc8b298d1502d0c30f3f160871e66e5a1f3fe1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 08a6761ed9d5298fc0d0fe9e75196f7527e488d4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 07e7bbb0005535e901b7f50e13cba9d5da51c2a5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 09 . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 07fa2b6ed650d436f423adcccfcbe63ce6253de0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 092575ab527ffb459d2e1eed593902820bb462c0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 08 . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 092b85d1f5c922287e476e6e75ad8a0a80c779a6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 081e3248dfca2b32837c4738daee3a4698caaf15 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0963f5f7578c64e9c17d0ad9e4a99ced875cf813 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 08398518b9b4e98d4625dfb063ab0b6d9399a239 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 096f9413b1bf712e092cf8bd70754014d6242f12 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 08455b3ef9d516deb8155d8db7d51c43ce0ff07a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0976de1461fb037c6987d77d088416440b524dde " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 085865a209776911782f592c9f30ffe0ad3814a0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 09923e3ef02243b1902406c637f9516cbe99d7cb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 088bf259e854abd9508d91b23983737f8e9e242c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 09985e738bf04fb7827367f2ae70f4697ff5aaf0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 08a6761ed9d5298fc0d0fe9e75196f7527e488d4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 099d967555bfc237238c93f9d884c004c773b33b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 09 . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0a . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0914e4f6ee18c9d15b8df1858a7745b86d875970 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0a71ae781345f9ee2b08008a81f9055e6c1d5256 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 091f02cc858a89253748b7d1051b8728d0e34015 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0a7aad5682c304b0cbda31445b221238e0293a9f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 092575ab527ffb459d2e1eed593902820bb462c0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0a85889229b729883f4c0420d1a13d9f0a2ca7c2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 092b85d1f5c922287e476e6e75ad8a0a80c779a6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0a90826e3173642be15ea005c2cbe8ca36ac1c3d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 095e3fa32a271ef9326d4dcd59fbd003977fdcfa " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0adaf5f559e1fb9cd8cd5b29911e13bca315c606 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0963f5f7578c64e9c17d0ad9e4a99ced875cf813 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0af5adf68560b3a7036ad23af62e4f9749eca690 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 096f9413b1bf712e092cf8bd70754014d6242f12 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0b . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0976de1461fb037c6987d77d088416440b524dde " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0b08fc5a8eb4a23766be7b3082308959955d4b13 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 097f758de0f31691fac6637bf8ac5ac946d5b079 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0b151bf8080f87bd38c9b8521b3b96c40c708463 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 09923e3ef02243b1902406c637f9516cbe99d7cb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0b6f0ea99a329e054032e6c292b99c3bcad0c9f2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 09985e738bf04fb7827367f2ae70f4697ff5aaf0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0bbd89b21cfd192174c25803c7f1afeec88e6524 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 099cc7faaaa2620df22c9bcd6e6d49730e4788b3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0becc6ede499ddc452fd4e6c3c0413a1107a8373 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 099d967555bfc237238c93f9d884c004c773b33b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0bf51cb435845a49311a7ddc7341b5cfc8e5ab10 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0a . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0a3f1f614446ded112775bbbc5c61513ad78e12e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c088a8261de0bf3b996cc1e7889399acb03fd5a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0a4b84c2a50ba66f06c99e945912972cdcfc96be " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c10483d4f5018b899483bcf23094f9119919ca4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0a71ae781345f9ee2b08008a81f9055e6c1d5256 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c531e03e56a5cf48bdd531a8c11a19e4a3b0aeb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0a7aad5682c304b0cbda31445b221238e0293a9f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c653a4b68bd77eec050b66ff2d8eae13001c505 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0a85889229b729883f4c0420d1a13d9f0a2ca7c2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c65733bc09e8527347e20f5c876c5b64570d423 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0a90826e3173642be15ea005c2cbe8ca36ac1c3d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c7b763d22885462527123656fa17af7520fc55d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0ab436006cb2ecd8ecb2400fed982886e4589360 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0cd9696699bd190463ecef91968624601b64cd8b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0adaf5f559e1fb9cd8cd5b29911e13bca315c606 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0af5adf68560b3a7036ad23af62e4f9749eca690 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d16d6c2c128ac4ee7b596b763822b4194968533 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0b . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d19e60f4eb1b729e272dd5dec68e8b67f03a5f4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0b08fc5a8eb4a23766be7b3082308959955d4b13 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d604693a9d3e76f54d28a26142abd729b0a9acd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0b151bf8080f87bd38c9b8521b3b96c40c708463 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d8bd296d63a5aca5f80d7a7d00387048babda36 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0b6f0ea99a329e054032e6c292b99c3bcad0c9f2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d993b34021ec088f1aa3e5acdd98089b4104b07 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0bbd89b21cfd192174c25803c7f1afeec88e6524 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d9d8241c5568fea586d21f91ae1891dac31ba24 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0becc6ede499ddc452fd4e6c3c0413a1107a8373 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0deeaca17aa93f66291407d3d2438685be5b85ba " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0bf51cb435845a49311a7ddc7341b5cfc8e5ab10 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0def53b5575cc6ab2fbbd17e2bc6a24de9656f84 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0df8bd9c41fb5d8ce8a0f2f28ca16be96bd9997e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c088a8261de0bf3b996cc1e7889399acb03fd5a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0dfd0ea582476b3861106c143c70d7af0f3d1357 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c10483d4f5018b899483bcf23094f9119919ca4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c26c7da58087406c491efb8f8f721eb934e6a5a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e0ecc8214b5083b75216857b967621c0648afc9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c531e03e56a5cf48bdd531a8c11a19e4a3b0aeb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e2a9ad3aacba320563095a874768a9e546a3db2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c653a4b68bd77eec050b66ff2d8eae13001c505 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e2ddbe92c08eb9ad3cbee1d0db2264baaca12df " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c65733bc09e8527347e20f5c876c5b64570d423 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e5aa755fff40b487617e01f6812d85ad310b727 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0c7b763d22885462527123656fa17af7520fc55d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e79b68aa8b9c336f0bbf9029928c53079711423 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0cd9696699bd190463ecef91968624601b64cd8b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e91ce40cf8882adc75b8b532556d48a2b605ced " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0ea509d249ae28faba8980aacb972c7ea28d3fd5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d16d6c2c128ac4ee7b596b763822b4194968533 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0f . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d19e60f4eb1b729e272dd5dec68e8b67f03a5f4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0f10d36e818e41f1737245c2bb8cb83a69421cb1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d25b57b2ac671377f8042015896619c09a2f9b5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0f16eeeecdebcb59022bda5a0972d1b3429648fd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d604693a9d3e76f54d28a26142abd729b0a9acd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0f2831e0f73521a0991e11115c16847afca16bb3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d8bd296d63a5aca5f80d7a7d00387048babda36 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0f81830560dbb9c6d3889b5d581b918c6cade65f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d993b34021ec088f1aa3e5acdd98089b4104b07 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 0fa216ec645b3973b5e6d28baedd5acc1542e69e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0d9d8241c5568fea586d21f91ae1891dac31ba24 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 10302aa7598eb36d0ac22d0478eb0f2a6b010ea6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0deeaca17aa93f66291407d3d2438685be5b85ba " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 105d9784648fe2d6c22fbefa69c9a26fff1c6481 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0def53b5575cc6ab2fbbd17e2bc6a24de9656f84 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 10ee46dc1973472ead36ec4b8a1ea90200637c73 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0df8bd9c41fb5d8ce8a0f2f28ca16be96bd9997e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 10f53c34f02d8c051fe0b8759aec08057433a497 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0dfc84a6703bdbe9a6acb72e178353d5d69f5814 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1109cb814fd134862a3f5ef5c9b2244585882b8f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0dfd0ea582476b3861106c143c70d7af0f3d1357 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 110e019793b395202dfd8b499edc372cdaccff21 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 11153bfeee3cdede86a52151dbb939c3ffee48ed " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e0ecc8214b5083b75216857b967621c0648afc9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 113c1d1bac15d550124f1ffb9012c32755adf27f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e2a9ad3aacba320563095a874768a9e546a3db2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 11759723c597e6806f8873e5062d31516cdb97ea " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e2ddbe92c08eb9ad3cbee1d0db2264baaca12df " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 119410315423e5f37919886ced7f03235e5792aa " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e5aa755fff40b487617e01f6812d85ad310b727 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 12083209096187575021a775826b08b70b39ed4c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e79b68aa8b9c336f0bbf9029928c53079711423 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 122b6fc72956541812dd653b726b073b77ca33be " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e7a05178db60007ff4a8dea0e22b60825976c51 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1239eef13562df4ff59856900eee2f871a2fd0f3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0e91ce40cf8882adc75b8b532556d48a2b605ced " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1254c9256157e6362003c97c8c93d8cd67a28772 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0ea509d249ae28faba8980aacb972c7ea28d3fd5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 12a97827d0f817e3ffd8d9cf1bdba0f945b6fda4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0ec11a92c1830b4c2f56a0979dd9e3c7162bd624 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 12abf5dcf2aba770f7b94ce5d96d7a8565a9aa19 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0f . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 12b904b97ed234fa45073b4e346ebe3211558528 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0f10d36e818e41f1737245c2bb8cb83a69421cb1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 12c00ed8945bdae03f03142cb964a47ea0c5786e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0f16eeeecdebcb59022bda5a0972d1b3429648fd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 12ef45f6beba92677a2a7508fc5e1bfef30ded66 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0f2831e0f73521a0991e11115c16847afca16bb3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 12f977ee18a7499d18a503a47e71b4f241052640 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0f81830560dbb9c6d3889b5d581b918c6cade65f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 130c41e2dd87c36b4079c8e5bd380dbe3e0a2b38 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0fa216ec645b3973b5e6d28baedd5acc1542e69e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 13b2e7a9d9f07a9e06ed96957c56e968f3b6070d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 0feaff8d6ad28109f35d6c6080504456b242c8ce " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 13c269dc54b84acbf75b78db730c25311a61c4ab " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 10302aa7598eb36d0ac22d0478eb0f2a6b010ea6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 13c409dcf7752c25b2b51ac5fad9201b505d7059 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 105d9784648fe2d6c22fbefa69c9a26fff1c6481 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 140219fcde79e1de47129172abaef4e06e72534d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 10b47823e11c988222f5f778146f9cf922b286bf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 14064ac4844c709b247a4345a92d8be9766785c4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 10ee46dc1973472ead36ec4b8a1ea90200637c73 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 143789594154049441d565b65ce725fc4f8c12bc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 10f53c34f02d8c051fe0b8759aec08057433a497 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 145acf7c03a0bc6c4a40d710ba5813b9f28efe2a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1109cb814fd134862a3f5ef5c9b2244585882b8f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 149044286608a7945721c61f12196bebd5adb2ee " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 110e019793b395202dfd8b499edc372cdaccff21 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 14ccbe1d9d7302d642e51ede3d4d846e85310fc2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 11153bfeee3cdede86a52151dbb939c3ffee48ed " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1560af88445d6c1e8b1300047f33056dce198e02 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 113c1d1bac15d550124f1ffb9012c32755adf27f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 157586c7c0ba8fd0dc9bfc2426229a7da934cec2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 11759723c597e6806f8873e5062d31516cdb97ea " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1586adc8c21b5796ba52203379faeb5f251f5c1d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 119410315423e5f37919886ced7f03235e5792aa " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 15890f893ee7bddcc08f831d684b10d19c369def " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 12083209096187575021a775826b08b70b39ed4c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 15c37fe5be9f23c0f0e59e12ee7666007acdb3c5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 122b6fc72956541812dd653b726b073b77ca33be " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1608a688768bdecdb205a455401ce5d9a1424a22 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1239eef13562df4ff59856900eee2f871a2fd0f3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 162b4ec7cf39df091898e01057b2fa39605b34bb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1254c9256157e6362003c97c8c93d8cd67a28772 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1661d0799cbf2015fd64e9f648ebb49281d41c6d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 128a7ef7f9b87c4f299d3cafe2dfdb9b161756bd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1671cf01e5baf796c5572b7b0e15d226a5c93f23 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 12a97827d0f817e3ffd8d9cf1bdba0f945b6fda4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 16858f1f9db0e248a15ce09d9848612de1f4bba6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 12abf5dcf2aba770f7b94ce5d96d7a8565a9aa19 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 16a9beb811f836a444172a5da9290b47d77c32ef " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 12b904b97ed234fa45073b4e346ebe3211558528 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 16b69b968a140abb00dd5c79ea7d0c1b23510fe7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 12c00ed8945bdae03f03142cb964a47ea0c5786e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 16d52016278caebf92ba455f7ac8a8c7482c3563 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 12ef45f6beba92677a2a7508fc5e1bfef30ded66 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 16e681f1867a1ac5612e1a88fddaed0bcb4521e7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 12f977ee18a7499d18a503a47e71b4f241052640 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 16ebac3f7cea2b46f660ec6a5ef3401c3e17a2e9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 130c41e2dd87c36b4079c8e5bd380dbe3e0a2b38 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 16f798191df0c173217cdcb4ec8edd3e4f7fb99b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 13b2e7a9d9f07a9e06ed96957c56e968f3b6070d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1727c0f6369bfb17d1b40ffa3d3f6b8be8a45c62 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 13c269dc54b84acbf75b78db730c25311a61c4ab " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 17381a0515458a92bc8248051b600da4020a1207 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 13c409dcf7752c25b2b51ac5fad9201b505d7059 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 173ebf4139ee6d7a574b6767059d82375674bbf4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 140219fcde79e1de47129172abaef4e06e72534d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 17647336806cf94a0224516f3d8caa22367c7c5a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 14064ac4844c709b247a4345a92d8be9766785c4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 179817dab786637b3621ace60a9ab4c7c79432a4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 143789594154049441d565b65ce725fc4f8c12bc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 17c7024889cc97a8afd3133b55a147ba75d17188 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 145acf7c03a0bc6c4a40d710ba5813b9f28efe2a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 17cfb281eaa8a17d77e08c3648bb93f3b5aa5297 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 149044286608a7945721c61f12196bebd5adb2ee " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 17ec0503991dc248d2b188edfa3d28573a1c2154 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 14ccbe1d9d7302d642e51ede3d4d846e85310fc2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 17fa8e029e35c88857b7abcad88609cf2d1ca9a4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 14ee9fbfe5284650e3a3de83ecc3e09abdc48c16 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 17fb35db0b73c331a66120dbc491300b2d1665e0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1560af88445d6c1e8b1300047f33056dce198e02 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 183c878064b6a0ddf6a22dc4a2aa0d33a2d802d0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 157586c7c0ba8fd0dc9bfc2426229a7da934cec2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1870298c7042983e7716097018a031d105e397fd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1586adc8c21b5796ba52203379faeb5f251f5c1d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1887558eb48d6a4341610fd0395cef8e87744044 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 15890f893ee7bddcc08f831d684b10d19c369def " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 18c856af1e2ebb934401e523043eaf80aecc8363 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 15c37fe5be9f23c0f0e59e12ee7666007acdb3c5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 18f2d7626b6ad4859e735e448b00b6916f1d3e2e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1608a688768bdecdb205a455401ce5d9a1424a22 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1901234bd7c9cb6ee19ff8b17179c481bdc7c5f2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 162b4ec7cf39df091898e01057b2fa39605b34bb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 190c4ca0cf29c99bc987d2792c7f62e1007c0245 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 163cf93cebfb32d617830aa4e69e8b5f59bd3a08 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1917c5996ac82e13143a414eb9448f171fdd751a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1661d0799cbf2015fd64e9f648ebb49281d41c6d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 194027acca76bf2e874aa672b4491f0b7fe32187 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1671cf01e5baf796c5572b7b0e15d226a5c93f23 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1949f4a75f7d501d5279a01f58a444640379bd78 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 16858f1f9db0e248a15ce09d9848612de1f4bba6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 19549ded404f9a9581d32a1827da96ff1420f0ae " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 16a9beb811f836a444172a5da9290b47d77c32ef " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1972f535ae202777efdd15a09138efc37e07ac01 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 16b69b968a140abb00dd5c79ea7d0c1b23510fe7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 198e691a9dabd23ed5c156f3a6e2c06a4379c15b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 16d52016278caebf92ba455f7ac8a8c7482c3563 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 19dcc3082c76b85177ce6a56d195473aaa285268 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 16e681f1867a1ac5612e1a88fddaed0bcb4521e7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1a16a4b32cb0cb3a759ec20edf332cdfc5d1717e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 16ebac3f7cea2b46f660ec6a5ef3401c3e17a2e9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1a6119919790570e3c15bb371648fc7929c72ea2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 16f798191df0c173217cdcb4ec8edd3e4f7fb99b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1a6b907bfa02ceebeb80aab47b3c3c51161eb868 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1727c0f6369bfb17d1b40ffa3d3f6b8be8a45c62 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1abcbb03796c6512f5b8a977532fbcf6368b45b0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 17381a0515458a92bc8248051b600da4020a1207 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1af0744fe0ccad11d6df023803ab699e1464c8da " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 173ebf4139ee6d7a574b6767059d82375674bbf4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1b09a1e5994952cda58b8339492f6850936a61f4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 17582452219fc4a27058a789f416a56631461296 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1b699132724acab3d42fb5210c07b74343449873 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 17647336806cf94a0224516f3d8caa22367c7c5a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1b6d8326532cea974655dc86657d8e3b9ba021de " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1776f4c32c11490c65b81d0b7ae2ece4a3d1e9a7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1b78d906803b539ea9f135e41b58257365948855 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 179817dab786637b3621ace60a9ab4c7c79432a4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1ba0190ef2cde93332f850753a05b89ae5f39f1f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 17a1354d2bfe982e9db1bac550fe01dd105f81c3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c0417c96e6408d2902ef8fe4b8cd05f1ce4a50f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 17bc3a2ae619ef05ad35b147f4916c0453ebacf1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c0dc85faed94bb89bc90f87799d7383cf9907cf " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 17c7024889cc97a8afd3133b55a147ba75d17188 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c1a1980a1959423766c5a26ac79d07264224278 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 17cfb281eaa8a17d77e08c3648bb93f3b5aa5297 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c24396c21f2c6aa2ad9b9a14877b7edf0ce61d2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 17e562d437fd283e58a5621c33b13191333b279f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c6e5ad8dbff133707cc85b05a0057abf55d08ad " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 17ec0503991dc248d2b188edfa3d28573a1c2154 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c73564518349ebc87c4023b9d9a3cbc4fbc6cdd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 17fa8e029e35c88857b7abcad88609cf2d1ca9a4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c86c4f2d173059e5cfe67b446fdfa285743f61f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 17fb35db0b73c331a66120dbc491300b2d1665e0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c98433d827ea4aae2ba8a68c4d11bc2527cb15d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 183c878064b6a0ddf6a22dc4a2aa0d33a2d802d0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1cbbae18babaa20229b42b4633ef812bd3b40ad4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1847f224b543fd0592e9cf365b8eddb61c140d82 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1ccd81836f26b7ececde2b02a22b19ab2a498631 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1870298c7042983e7716097018a031d105e397fd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1cd257e53b8d5a57c9feabcfd9f8f22c30cdb4a8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1887558eb48d6a4341610fd0395cef8e87744044 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1d259d9c908db8a0a7012c054bfde7f86474dab7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 18c856af1e2ebb934401e523043eaf80aecc8363 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1d505e827d0036b3d8eab87439d31da5f901aed1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 18f2d7626b6ad4859e735e448b00b6916f1d3e2e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1d55650c5bc30ea68168a9287820e25d2d53ab4c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1901234bd7c9cb6ee19ff8b17179c481bdc7c5f2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1d795268725d3a08883b05b021a437654aaed908 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 190c4ca0cf29c99bc987d2792c7f62e1007c0245 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1d7bd5961f6963c65054fb9a24d913601f37bf3d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1917c5996ac82e13143a414eb9448f171fdd751a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1d8b40b4798e652184df3bcffe1b1d7e32648f79 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 194027acca76bf2e874aa672b4491f0b7fe32187 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1dd9698ad85c7ab577bbc9b36180ef2641d8525c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1949f4a75f7d501d5279a01f58a444640379bd78 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1e4a2a6998218ea8f475aa2ee27869207b33b612 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 19549ded404f9a9581d32a1827da96ff1420f0ae " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1e55e5f47b550bab133099e5a98d7c751a0a2d7b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1972f535ae202777efdd15a09138efc37e07ac01 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1e7d2d8f6109f4c02815ce8582c799134f2ff5dc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 198e691a9dabd23ed5c156f3a6e2c06a4379c15b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1eefda69c1787cc55a8bd43774ca13563e0972bc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 19dcc3082c76b85177ce6a56d195473aaa285268 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1f4d0adab39a988792cca201626c28293e247226 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 19fdd6cdeee7a5cbc991d0e3242c23d5aaff2fbf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1f7847ed44c5acbc52c5d16b0222b44067076478 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1a16a4b32cb0cb3a759ec20edf332cdfc5d1717e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1fd33a83549fb9fc5e7d05a2c308a044b7c9b167 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1a6119919790570e3c15bb371648fc7929c72ea2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 1fda93a85f7b5b7a0c2d68a03123e58a6d20f124 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1a6b907bfa02ceebeb80aab47b3c3c51161eb868 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 200521ca3891bfed841ca8c22691196a1a03ccd3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1abcbb03796c6512f5b8a977532fbcf6368b45b0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 202a15693f991889b5fdd97f016a5410778b07e1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1af0744fe0ccad11d6df023803ab699e1464c8da " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 20322515ebf6df572cb2f596d8a20d3d8893193d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1b09a1e5994952cda58b8339492f6850936a61f4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 205dd562c7202d4231b232a6804889e77eba5292 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1b331dfc1d9d535063f0cc6f7a709499a5f8cb59 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 207c5a0f80f052ac7b48f6dd45cd33987be27f32 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1b50ba2e44a359f37205ae476682495cff96838d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2099db589f606dd8932a950280f5d2b23751af9f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1b699132724acab3d42fb5210c07b74343449873 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 20a10c9a0c8cc48fd6317000f70070a0b2451e60 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1b6d8326532cea974655dc86657d8e3b9ba021de " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 20ff1f8d5d34cb01d58aa334dc46a6644e6e1d12 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1b78d906803b539ea9f135e41b58257365948855 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 21357c3613a47180eb668b1c6c849ce9096a46eb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1ba0190ef2cde93332f850753a05b89ae5f39f1f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 217785067a28a2dcdf7c5cea9ef8c10817889aa7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c0417c96e6408d2902ef8fe4b8cd05f1ce4a50f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2193a1e20caee37676d08c88154a462acf120fb0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c0dc85faed94bb89bc90f87799d7383cf9907cf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 21af47d84b1aa84e8b4021765203c8951239fe41 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c1a1980a1959423766c5a26ac79d07264224278 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 21da45db854aeae9bef8576d6cb5859c0cf7a34c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c24396c21f2c6aa2ad9b9a14877b7edf0ce61d2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 21f3be485826850e4f4670bb81982e2827815426 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c6e5ad8dbff133707cc85b05a0057abf55d08ad " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 226b0315f87b08521c9a2d3e2b50c01ec421be14 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c73564518349ebc87c4023b9d9a3cbc4fbc6cdd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 22967e8ed837f03b76a980cc1d25054fb84b40e9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c86c4f2d173059e5cfe67b446fdfa285743f61f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 22c9ed2979d9963bce6500997f1e0433988e7e37 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c968074e9dcd8e9922e6c01ecfedcaf7b2fe5a3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 22d23ae7b0a9c4ac6ffefe6b6b47bb5f54226ae1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1c98433d827ea4aae2ba8a68c4d11bc2527cb15d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2339fcca7f93814c587aba47fff2210875a41f49 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1ca16103f5175b0607b579e0c3734b59843e27b0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2372fe3d96fda1dae8846a781905c6c408555d3a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1cae148c387cd20a1742d902543c2c8396589479 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2378c3f1206f20711468391ce739116ffe58374b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1cbbae18babaa20229b42b4633ef812bd3b40ad4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 23982956d17d2f55e61a5d9111b1c0c7ee530214 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1ccd81836f26b7ececde2b02a22b19ab2a498631 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 239b03041efe9bf24982b0ecbb66d5abea4a28d0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1cd257e53b8d5a57c9feabcfd9f8f22c30cdb4a8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 240afe42d3e2834c46a79d9df0dd6ca018831398 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1cfd4875b6708b439f1db655abfdd57c1141348a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 247d0d09deeeb76422cd1d06305a63378a498656 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1d10780f4cb83cb9f6762548ae133d2115c4354f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 24a87af0954c808fbd3f2c55185d4b1fa9459f4e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1d259d9c908db8a0a7012c054bfde7f86474dab7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 24d630240f673498d784cecb66d73e9b1d981493 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1d505e827d0036b3d8eab87439d31da5f901aed1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 24df70902c288fcac060365c2e6f61269a3606b4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1d55650c5bc30ea68168a9287820e25d2d53ab4c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 24fbdfa73f26686633871ddad9698d7059db488f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1d795268725d3a08883b05b021a437654aaed908 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2500fc12d5d1b5ed99fc3fe518c28849d1c8d6e8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1d7bd5961f6963c65054fb9a24d913601f37bf3d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2501c7c3f78829725e6bf556277785588318106b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1d8b40b4798e652184df3bcffe1b1d7e32648f79 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2507810915aecd3adf1287edf8c9f54b23a8ebd5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1dba0d6c34b03b19e648e2fc9cb3aa7a13e713a2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2533c4ed207eed715756142667128f6eb01309e0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1dd9698ad85c7ab577bbc9b36180ef2641d8525c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2535940afe69b3106b7696a486a2617d0d9a7150 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1de191d81c4c7bf0e026bff0a040165c084fd630 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 253b8946a7cf403dd466f1685df2f741d4660a34 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1e1f1e0230004479b502603a1b60552192559679 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 255ab618b474a659914f5167f6e89ae3f1376788 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1e4a2a6998218ea8f475aa2ee27869207b33b612 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2577397157d02cde4544e70fd6c3ff68704dd13b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1e55e5f47b550bab133099e5a98d7c751a0a2d7b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 25a2c5d4f55a083d2535b46a82e295fb169ffb32 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1e7d2d8f6109f4c02815ce8582c799134f2ff5dc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 25aa74daea95f9fc46a78239bd2e78ccf0fb3ffc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1eefda69c1787cc55a8bd43774ca13563e0972bc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 25c8a5f8fbaf47c8a398a284008d90d088c652b2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1f3f61bbe6ea0c7e9b447f134742b3e7909b9198 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 26865cd90c1461694d94d96232436372df2a91fb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1f4d0adab39a988792cca201626c28293e247226 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 26930c35fbe83e4d165b8b7f218ac8ea231c87dd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1f7847ed44c5acbc52c5d16b0222b44067076478 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 26b6654b4efb469d4c8202dfc2ddafe4fc15e2d1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1fd33a83549fb9fc5e7d05a2c308a044b7c9b167 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 26dfa46c2bb2e6af6f52bac6f03a9e4406c6e700 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 1fda93a85f7b5b7a0c2d68a03123e58a6d20f124 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2721f5503254227af744243957ee859fa903e066 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 200521ca3891bfed841ca8c22691196a1a03ccd3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2743ee5a764fb0c4e04cdf84c9b3810ac8093998 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 202a15693f991889b5fdd97f016a5410778b07e1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2748d28f2e03d740a89f7a50ea52450d0c5523f1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 20322515ebf6df572cb2f596d8a20d3d8893193d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 27a8643ba6047e12de1b2a4f7d0994a2c095a6d5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 205dd562c7202d4231b232a6804889e77eba5292 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 27f5e317e8a3a1098e786b96175c15d0855c4855 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 207c5a0f80f052ac7b48f6dd45cd33987be27f32 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2806c68471ca16df5356ef6a3379ea46c73c57cc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2099db589f606dd8932a950280f5d2b23751af9f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 282003073c8b88d7ad43ce75677777cdb754228c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 20a10c9a0c8cc48fd6317000f70070a0b2451e60 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2835dc7045dff8fd93a6e50bfd8775a50fce7599 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 20ff1f8d5d34cb01d58aa334dc46a6644e6e1d12 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2837baed2fbf1612f88224e91ddc46241dd9d972 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 21357c3613a47180eb668b1c6c849ce9096a46eb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2858613c057a236dbe306cca44df29232f6b48b3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 217785067a28a2dcdf7c5cea9ef8c10817889aa7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 285b0b9b11fe506527c880d3a866ba94f8038cdf " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2193a1e20caee37676d08c88154a462acf120fb0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 28851da472cd09123465241e0d59697f563f53a8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 21af47d84b1aa84e8b4021765203c8951239fe41 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 28c56acb0f9b47ead49f34c0d92a661fa04952c2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 21da45db854aeae9bef8576d6cb5859c0cf7a34c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 28f73943647c3bfbd96e8d1a6188c428b15fdf12 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 21f3be485826850e4f4670bb81982e2827815426 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 28f8c7af6aab3bbabe028f780e174b27b924a146 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 224b2255a1bd250102481abc3e823090650e231e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2923d9c864597016358f37ce4014c61648b7290a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 226b0315f87b08521c9a2d3e2b50c01ec421be14 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2942908b7973da7113098a0ea25487e3372db173 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 22967e8ed837f03b76a980cc1d25054fb84b40e9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 295d24a7705fe1821606f9224f241a7596481bed " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 22c7bfb3460529c77255e9cb82ef8f7d8381f8f3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 296c3f5b9880fe7ccff4d2a67f489b38b5b6fd6e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 22c9ed2979d9963bce6500997f1e0433988e7e37 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 29a6d7ab3e7ea8d331358df45e5b0926e768e227 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 22d23ae7b0a9c4ac6ffefe6b6b47bb5f54226ae1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 29f39c36ffc68643789cd59ab9311a899fd9cfa6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2339fcca7f93814c587aba47fff2210875a41f49 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2a08eb351e08f0e6ac1e1416b43ff962a4e3735c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2372fe3d96fda1dae8846a781905c6c408555d3a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2a1d70b04f4aba0ec93899485f0807a209a4b207 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 23746fe5e477430aec8b12e9d7de0f86f6a6e191 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2a2ca2f6a1c03067f87bad61515688edc234bacc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2378c3f1206f20711468391ce739116ffe58374b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2a410e3d783bc93e63206e28f92b6a40e1db09cf " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 23982956d17d2f55e61a5d9111b1c0c7ee530214 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2a4fc709f61977f0f6c75760af2b33007ecd5941 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 239b03041efe9bf24982b0ecbb66d5abea4a28d0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2a600cae342e8e9e23406bb1e76133f48d936766 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 240afe42d3e2834c46a79d9df0dd6ca018831398 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2aaee068ca624dcb746af9dc14591b24db033ffc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 247a7d3e0061dd0f32c3f6b2fc43a08e2cc8cf72 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ab009994e603404e194ebe0120840d388fb765e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 247d0d09deeeb76422cd1d06305a63378a498656 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ad5ed48b598bd9e2d486a21eed5314736e5b56a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 24a87af0954c808fbd3f2c55185d4b1fa9459f4e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2aee21e4d1175963fa719d376406bb10d4818bdd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 24d630240f673498d784cecb66d73e9b1d981493 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2af392765963966f2d1ddd5d5af4fcadd93c3b06 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 24df70902c288fcac060365c2e6f61269a3606b4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2af4e625522d128d03252f35b5fa5094cbcebc9f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 24fbdfa73f26686633871ddad9698d7059db488f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2afc0ae3e27ba7ab7ea26d656a01da4d85e0bbea " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2500fc12d5d1b5ed99fc3fe518c28849d1c8d6e8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2b6a001c2274e347cbfc6fe2e3bf4f7d7e79f5fe " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2501c7c3f78829725e6bf556277785588318106b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2b80854b52267dd70b622670e401280387f15dd2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2507810915aecd3adf1287edf8c9f54b23a8ebd5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2b931953e9bd02c3310a05234e91550bcd8ddf62 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2533c4ed207eed715756142667128f6eb01309e0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2b933a0ede25a06e32c7d9cc5a3eda78086f3060 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2535940afe69b3106b7696a486a2617d0d9a7150 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2bbe5b2c12a964b53a5e6f78cdd5f595d95082a9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 253b8946a7cf403dd466f1685df2f741d4660a34 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2bc326b3ecf6d069595bc27cc1bca76b374c8e85 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 255ab618b474a659914f5167f6e89ae3f1376788 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2bc40826844d2232d9d36699432a30b4b1e5dd3a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2577397157d02cde4544e70fd6c3ff68704dd13b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2bcd71048dec1df45e36fde6deeb8f04bbd01cd4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 25a2c5d4f55a083d2535b46a82e295fb169ffb32 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2bfa23d5d476e4266cba3979f81a9ebdc26993e1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 25aa74daea95f9fc46a78239bd2e78ccf0fb3ffc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2c5b259108eb1a9735d7a89609d96bc043914cdb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 25c8a5f8fbaf47c8a398a284008d90d088c652b2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2c917a39d34aad10d611a1647a6df6502b4d4d59 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 26794761df5dc7f093d2395b81a32af5e6b54392 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ce30739d22f5380f96400f261fd26e95cc33927 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 26865cd90c1461694d94d96232436372df2a91fb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d5613b7bc0f5060eb1fa0449face6a9c503b589 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 268d8763bb7846f4c9ebb4fbea476a5bc8fcc389 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d61ec2cff75eadbc47e0932998b8a797e0cd96c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 26930c35fbe83e4d165b8b7f218ac8ea231c87dd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d742d21ecbf421506ecf19b23d6075feca4350b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 26b6654b4efb469d4c8202dfc2ddafe4fc15e2d1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d7f42d3df4a206d09a9fa3126333a61f5e678ec " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 26dfa46c2bb2e6af6f52bac6f03a9e4406c6e700 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d82b2376d689485814ade91df8f65ee08395a02 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2721f5503254227af744243957ee859fa903e066 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d9440daa210b9298f34982dcf7adc3564ad965c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2743ee5a764fb0c4e04cdf84c9b3810ac8093998 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d974f9fd1c57bce55cb9f1bbc25eb1e7a10454b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2748d28f2e03d740a89f7a50ea52450d0c5523f1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2db3a358c43c179a728f0650a00be295e88f8060 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 27a8643ba6047e12de1b2a4f7d0994a2c095a6d5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2dd76fc710e3e78eaf4e5069fa227de678d0830d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 27f5e317e8a3a1098e786b96175c15d0855c4855 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2df65610f1c24ad1cf9a5b22614434c96ffc12fb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2806c68471ca16df5356ef6a3379ea46c73c57cc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2e21a2f9bff2514667aaec75629c82daa067ff57 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 282003073c8b88d7ad43ce75677777cdb754228c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2e40d861a9fec3742c31971b583e28bf40e28dbe " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2835dc7045dff8fd93a6e50bfd8775a50fce7599 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2e48a9c8d204975060e81f37c7a46ab501750067 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2837baed2fbf1612f88224e91ddc46241dd9d972 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2e7441eacf8fcc7043f24b3beba4fcbe3c0c5ea0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2858613c057a236dbe306cca44df29232f6b48b3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2e82bfb7e8eede401ce75f6afe8c15ffd06130db " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 285b0b9b11fe506527c880d3a866ba94f8038cdf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ec78409a7d3625126387512a1c58cae2ff0bcf7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 28851da472cd09123465241e0d59697f563f53a8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ef149e8fd68e06fcb7ba2fb43a17cc1dcfd989b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 289c2b6211858aa4a46b5b489bc4c9dd47828d21 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2f0a8f0f96402ba1681ab3a9095a3dea47cdc53f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 28c56acb0f9b47ead49f34c0d92a661fa04952c2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2f120ceed5250084f62010df9bf8fe8e8f3f643b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 28cbfc7c1b760d216cc592a273088b31833ee707 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2f35914500b09477fe245bc130f86bbd15112ce7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 28f73943647c3bfbd96e8d1a6188c428b15fdf12 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2f44fd38efef5818750f9adc9b133e40f9cdec71 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 28f8c7af6aab3bbabe028f780e174b27b924a146 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2f57224df35ff1583d14436a477330db23d70b0a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 28fc3136371b5bcac84045ab6cc93e77298760e2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2f8262de35a8314655d55f10ca46db441577ba36 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2923d9c864597016358f37ce4014c61648b7290a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2f9dd3b98b22bf2d4af5c2922977c8bb5699c367 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2942908b7973da7113098a0ea25487e3372db173 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2fa6a874e625ca4d71941408d94698f898be4ea1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 295d24a7705fe1821606f9224f241a7596481bed " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2fece42b158854855dd42eac3fc7b8f1eb61fb04 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 296c3f5b9880fe7ccff4d2a67f489b38b5b6fd6e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ff0986c252d462149597fd83bd5753926d343a0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 29a6d7ab3e7ea8d331358df45e5b0926e768e227 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ffb878075ebb3d2d778c8aabcb0e96cb51060f0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 29f39c36ffc68643789cd59ab9311a899fd9cfa6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3017e9f66dacf5a01f8c7d65b8a72d4f68aa6a28 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2a08eb351e08f0e6ac1e1416b43ff962a4e3735c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 301c057536319f49dcec68ab96677714e3dbf793 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2a1d70b04f4aba0ec93899485f0807a209a4b207 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3037118f9983abef4c9757742269f00cc90c0609 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2a2ca2f6a1c03067f87bad61515688edc234bacc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 30694ac08ff5a6a10cc781b9042c89f4019cfe0a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2a410e3d783bc93e63206e28f92b6a40e1db09cf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 307a91e344b94923837e01a1657ff277f44db07d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2a4fc709f61977f0f6c75760af2b33007ecd5941 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 30948ba77c2e56903a9ad5190cc74e59d42f67fe " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2a600cae342e8e9e23406bb1e76133f48d936766 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 30c74b7b5c92bb602d26c3d703c267e288b432a2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2aaee068ca624dcb746af9dc14591b24db033ffc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 30d6ca02d96fe1d1b91b7fa5180789a6cc9d0d45 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ab009994e603404e194ebe0120840d388fb765e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 30fbe0ac4c74e2be3edd4f21b72bcae02e6c623f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ad5ed48b598bd9e2d486a21eed5314736e5b56a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 30fc581d975cd8384b86be0ae59792a605ca68c6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2aee21e4d1175963fa719d376406bb10d4818bdd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 312b8910d1965fbfb09f0cb73e7e9d28316677bb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2af392765963966f2d1ddd5d5af4fcadd93c3b06 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 313001e1cc15ef9887b43e0c6de398eea2f20e00 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2af4e625522d128d03252f35b5fa5094cbcebc9f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 31429d04a34cc6643eebed7eeb8a807a83b57b1f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2afc0ae3e27ba7ab7ea26d656a01da4d85e0bbea " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 31498be283beb45294fb96f15b3af4e7de0ce584 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2b6a001c2274e347cbfc6fe2e3bf4f7d7e79f5fe " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 314ea0a2c481639b6559b063399299259c43c9bb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2b80854b52267dd70b622670e401280387f15dd2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3152365a4d8540623c9fb3a93712d096bf6b34e6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2b931953e9bd02c3310a05234e91550bcd8ddf62 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 315d27e12f2214a56fb9901dacff14852ff2ac0f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2b933a0ede25a06e32c7d9cc5a3eda78086f3060 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 31ef9c4ed85ae1b4e8a027fc5a1d3037dbbf3b3a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2bb76eff88c5af98c4b8828047837fe97b50cfeb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 321e6127d6f5619c88e31037f7fdec581acf75e8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2bbe5b2c12a964b53a5e6f78cdd5f595d95082a9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3230d9876d770657d86dfb768b80494cda52abc8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2bc326b3ecf6d069595bc27cc1bca76b374c8e85 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 324b9341bfc56b24a60f0687a52981fcdeaa8733 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2bc40826844d2232d9d36699432a30b4b1e5dd3a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 32594aaa716c1a04b0f927ef964f1593735cb289 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2bcd71048dec1df45e36fde6deeb8f04bbd01cd4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 327e5a755e3307b121700f1ba23000a844e70596 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2bfa23d5d476e4266cba3979f81a9ebdc26993e1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 32a6ea045d1288418617e5e0c52ae02c1f6598aa " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2c5b259108eb1a9735d7a89609d96bc043914cdb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 32b9de8461fd32b1236abb86abc91c82652d6e2c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2c917a39d34aad10d611a1647a6df6502b4d4d59 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 32c108ead009572fbe9a216b372e5c0b3843238e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ce30739d22f5380f96400f261fd26e95cc33927 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 33306900f08f0b618c2bf4ba6f6144be9d19cb97 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ce3268455c461a30eb30f4792087df411548c13 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3356fa1721a0dec9fedacba8d86e6100a49d5316 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d03c424dd0677a68f28bb94536f49844d79d00a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3396a31b1075465bf358eb7836e6f5347a0be591 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d5613b7bc0f5060eb1fa0449face6a9c503b589 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3399ac8bb9e0d3a2cbf22a95d1e20c70e2415e41 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d61ec2cff75eadbc47e0932998b8a797e0cd96c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 33af00c8deb0f0fdfc113f21c3cb5769aa474587 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d742d21ecbf421506ecf19b23d6075feca4350b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 33b7cb7d4dcd380b207f1137722fe394de2a0f8e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d7f42d3df4a206d09a9fa3126333a61f5e678ec " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 33ff864434b4f0c0e08c00ec2442cb521e9f79ed " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d82b2376d689485814ade91df8f65ee08395a02 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 34052cc2fa2be6543184db85d0b9ad33ae17029c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d9440daa210b9298f34982dcf7adc3564ad965c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 342d148e59fb500ad76d583cf828c16cd3d3ed2e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2d974f9fd1c57bce55cb9f1bbc25eb1e7a10454b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3465fb573ac3c59a0804aadeba2f205870abcc3d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2db3a358c43c179a728f0650a00be295e88f8060 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 34aca5e37920615e8c141ed1fe4e419ae2e4df65 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2dbe958ef23ade1b8bbb9669e590fa99454970b4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 350a1f6d0fe784667d7ae78e1ed783cdf2263bfd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2dd76fc710e3e78eaf4e5069fa227de678d0830d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 351c6aabe840d69a16ca0f630c6c5a11d42cb85c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2df65610f1c24ad1cf9a5b22614434c96ffc12fb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 352599b2850ac5a96ec656788c897c4b36114cc4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2df7ea9c0c488fc8f79d33b6bce5667a2f051a65 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 35623259c0d5d73d23ea52efc3e4bd808c119440 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2e21a2f9bff2514667aaec75629c82daa067ff57 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 35b84f9f429e72230f0e9f6400ae5052c961fb27 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2e40d861a9fec3742c31971b583e28bf40e28dbe " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 35ba1a4df4d362ea98e9386269bfbb95c5ed4874 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2e48a9c8d204975060e81f37c7a46ab501750067 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 35cf9a1a6f81db0829d854fd3716916bae081c8c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2e7441eacf8fcc7043f24b3beba4fcbe3c0c5ea0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 35f172b0168cd0b2da4509c3463c2502274e01a6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2e82bfb7e8eede401ce75f6afe8c15ffd06130db " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3606c0748089f53e252b577ff7ab2df203d098ff " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ec78409a7d3625126387512a1c58cae2ff0bcf7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 364f0605fd2d145db6ee6c7b01affb8833379db4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ef149e8fd68e06fcb7ba2fb43a17cc1dcfd989b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 364f77bffd55805e2be9d2b3a071012e8fc3a083 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2f0a8f0f96402ba1681ab3a9095a3dea47cdc53f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3662f5312562bbe4503018a820692962e7dd66c8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2f120ceed5250084f62010df9bf8fe8e8f3f643b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 368d2b5d4c6776afbed8e5e76cc3a4ccdde1df42 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2f35914500b09477fe245bc130f86bbd15112ce7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 368f9368e43f7e743653d46360836b3db1b1ba8a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2f44fd38efef5818750f9adc9b133e40f9cdec71 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 36dea0ab5bc764c2eb2f428bcbe2786e64da8bd3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2f57224df35ff1583d14436a477330db23d70b0a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 371d4ed270fb3cc3858a33fc0a857da2a21e6478 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2f8262de35a8314655d55f10ca46db441577ba36 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 37309bbfb4f0d78e6138b13a4e5da5944c95b97d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2f9dd3b98b22bf2d4af5c2922977c8bb5699c367 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 376f42635e918cc28706b82ad8923cc7401aa9e6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2fa6a874e625ca4d71941408d94698f898be4ea1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 37b8a63d83441e64e279457d0e8318581ad3a7e6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2feac28b1f508d6086f4cb0972800a77e1d01201 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 37bc0646132afe8c79cda5e76de150a473fc0680 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2fece42b158854855dd42eac3fc7b8f1eb61fb04 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 37c26aa03db5daa01d7233f3c9fc474f81a724d1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ff0986c252d462149597fd83bd5753926d343a0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 37cf256347732e86fa92089847b7381e964cc83f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 2ffb878075ebb3d2d778c8aabcb0e96cb51060f0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 383043f6c05edc5a18f5c8e7b9d0314db63eab5e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3017e9f66dacf5a01f8c7d65b8a72d4f68aa6a28 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3850b085a0a33fa2a08630dddb03e0f1adb1bee9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 301c057536319f49dcec68ab96677714e3dbf793 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 385626d51cd29e1b32befeaecde5df7248270754 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3037118f9983abef4c9757742269f00cc90c0609 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 38a55e83e685617cdf72e95f1303857b627ae346 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 30694ac08ff5a6a10cc781b9042c89f4019cfe0a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 38c609f72f5a2cf977788afef9c34652f754add0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 307a91e344b94923837e01a1657ff277f44db07d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 38eb06643f87fff21483433dc4169e0388b0c9e1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 307aaef3b3982cf8d4780a1f896d5392037c5db2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 39160bc99597105d50cf7a15698090399a2482ea " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3082fa77cc2942ae425a6577d1f9c0dddd2949be " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 391ef74273ae5e1cd8a2342c5370fde5df1a7140 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 308fbf16b3f3747423b2ff69ef5930b01ca9b728 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 39330aec49922885cf84803d7a5ee61d5948ee66 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 30948ba77c2e56903a9ad5190cc74e59d42f67fe " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 39525bbff413519199d1cf2c564d62b9c3c7736e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 30c74b7b5c92bb602d26c3d703c267e288b432a2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 39b6daa9ae088667c5080709ca829cf51e66212d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 30d2e4b3cac45cbcfe76459c90c49e085914c154 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3a07fd9ba009b9a57e298343e815abab13a16f5c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 30d6ca02d96fe1d1b91b7fa5180789a6cc9d0d45 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3a287590e2d38d5dbc0b85d29ae2497d27aa0305 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 30fbe0ac4c74e2be3edd4f21b72bcae02e6c623f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3a4fa4e81b78cae093b2d53b0a6f272a398a7cda " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 30fc581d975cd8384b86be0ae59792a605ca68c6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3a74f1be7106c7dea533a34bd8a88974f69a5d71 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 312b8910d1965fbfb09f0cb73e7e9d28316677bb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3a90fbc998ad7219e447db6155e6174e0117dd49 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 313001e1cc15ef9887b43e0c6de398eea2f20e00 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3abac3ec4db280fe9b8893b5f42986508dd87201 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 31429d04a34cc6643eebed7eeb8a807a83b57b1f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3adaa0aea970123baa8ddb2560842c43bd19eb3f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 31498be283beb45294fb96f15b3af4e7de0ce584 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3adc410756f3e9cb929570bd5e5107663e8eed80 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 314ea0a2c481639b6559b063399299259c43c9bb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3aee5ced2869452b8ed65313d01b9b9c87144cd4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3152365a4d8540623c9fb3a93712d096bf6b34e6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3af9522626ddfeb1ef461e3ba0f397ea4b2d99fb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 315d27e12f2214a56fb9901dacff14852ff2ac0f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3b002ab57ff8080fbb1e72d985ca6f59f96a171e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 31d8226b1d767fc895e87d7feede0e2d7c6c0b66 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3b114f7e66bf6cbf256a5e656ab6620e3f31277f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 31ef9c4ed85ae1b4e8a027fc5a1d3037dbbf3b3a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3b60e6663ac7ceaa40f91d3a68fcb9c35e3e99b8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 321e6127d6f5619c88e31037f7fdec581acf75e8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3bdfaad171c20468a866329355621cd579eff21c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3230d9876d770657d86dfb768b80494cda52abc8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3c18f7c2d8fef6f119fe5bdbb5d191a92c627cb3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 324b9341bfc56b24a60f0687a52981fcdeaa8733 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3c2b6ebd2cd3fa2ea216ed01c4a7275ecbaa40c0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 32594aaa716c1a04b0f927ef964f1593735cb289 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3c84d21c46b89e7573750dd4517ea2eb58e37e27 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 327e5a755e3307b121700f1ba23000a844e70596 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3c8e6352f6c2a07bd5ef2b9a93c103935c8eaf0d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 32a6ea045d1288418617e5e0c52ae02c1f6598aa " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3c933aea09501c81d7e065c671cdc3bd55f8caf9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 32b9de8461fd32b1236abb86abc91c82652d6e2c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3c94ad60589b22d99dd03f98b37c609c180a755d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 32c108ead009572fbe9a216b372e5c0b3843238e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3cac139b58decec7c0d1f1318e8f1f28f9650c19 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 33252c0d4edb12370235c0179abd87a5efb59d29 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3cd19f8138a81f242cb92212df2b4812cde8385a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 33306900f08f0b618c2bf4ba6f6144be9d19cb97 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3d48a5c5a6188238bffee78f07b7cf6bb854258d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3356fa1721a0dec9fedacba8d86e6100a49d5316 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3d770d35de84de36ce4ed5b22f782edc99ecc634 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3396a31b1075465bf358eb7836e6f5347a0be591 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3d7d13b272c46ccceca36729e9893e5142961fd3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3399ac8bb9e0d3a2cbf22a95d1e20c70e2415e41 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3d8c66be71e0ae0dfb0c2c7b84e4d8336f92b7ab " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 33af00c8deb0f0fdfc113f21c3cb5769aa474587 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3d9534f373e79edd704cc9529600efd62451fb78 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 33b7cb7d4dcd380b207f1137722fe394de2a0f8e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3db644687c6a09fae4267f05b63a969f28024f87 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 33d926a04c1868c3393b3129968ffd32049a1c64 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3dc1bcb27ed0616a2b905025a8898759d94a934d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 33f0e1b78dd158df720604cbb4c9a0c90eece435 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3dedcaf501bc9718e5d372862b081fc9fdfb3959 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 33ff864434b4f0c0e08c00ec2442cb521e9f79ed " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3df06a68edfc53fa88634c657a50cc6820354165 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 34052cc2fa2be6543184db85d0b9ad33ae17029c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3e0407abf398a7c40a34df7ed33ff23de02a2a6b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 342d148e59fb500ad76d583cf828c16cd3d3ed2e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3e4c1755d1ad78103f10c2af7c7d2f86326f02f6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3465fb573ac3c59a0804aadeba2f205870abcc3d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3e539f323c6ddea1bd3e34599a3c47b4457acdcf " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 34aca5e37920615e8c141ed1fe4e419ae2e4df65 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3e8bef87bb89525914b5e7964969a66eabc78eee " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 34e2445f42fd82c5ce229782a93764def3aae0e7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3ed3fbcdae0ab5b185d6e7f1f46c2440f656e8d6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 350a1f6d0fe784667d7ae78e1ed783cdf2263bfd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3ef10f7eba289d88e82f3678434ecc1218a47ee3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 351c6aabe840d69a16ca0f630c6c5a11d42cb85c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f2429e3255ae36fecb57559b57d2b0cb88f5dd1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 352599b2850ac5a96ec656788c897c4b36114cc4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f2e5f90e1a93df61a1c9c09b8c9116149eec526 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 35623259c0d5d73d23ea52efc3e4bd808c119440 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f31d328c16207904d201406f7e9708360d5799b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 35b84f9f429e72230f0e9f6400ae5052c961fb27 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f36ae935255c4bbd2bd8d4a85bfa92bba02225c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 35ba1a4df4d362ea98e9386269bfbb95c5ed4874 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f464011f8620f227309f6b2c84df6fffb8ed962 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 35cf9a1a6f81db0829d854fd3716916bae081c8c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f47ad9ab401599f42d3c4f37ab9f702e3ff0fc9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 35d6503b48b5acc5486a158696ae98a98f46e1a4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f4ab27065d2a4fed7d011af384e03150b72eda5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 35ea066b0fc90521bd8401ef4c52cdc9897d35d4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f4ee68f1f22eabcd01c2a7c1c6c8ccc299aa97d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 35f172b0168cd0b2da4509c3463c2502274e01a6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3fada97db682f675597cb58c5d43a72e283ab960 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3606c0748089f53e252b577ff7ab2df203d098ff " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 3fbf231b2182dc58d2cdf1c62f01a8b709752505 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 364f0605fd2d145db6ee6c7b01affb8833379db4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 40640a91fda4e4e42d3063a28b9ffbba1b8c3701 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 364f77bffd55805e2be9d2b3a071012e8fc3a083 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 40b4b92460c4e76a39af9042fb3d86d491a98e16 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3662f5312562bbe4503018a820692962e7dd66c8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 40b500d38927c62c6966039b8557f810b3c19dc1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 368d2b5d4c6776afbed8e5e76cc3a4ccdde1df42 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 40fb9f1d9086ace2de0ad59648d196ba0705ae00 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 368f9368e43f7e743653d46360836b3db1b1ba8a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4141d93d6c387967967844423a6a83ad1793010a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3698d88414f52b7c4759bfdadb53161b226faf8c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 41921ba00dfc038778074b1af81104555ca74927 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 36dd4f4239b63b9cf379b354de0dc72e6356fba5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 41bda7ff09175f821992adf4314a8ec3007ffe55 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 36dea0ab5bc764c2eb2f428bcbe2786e64da8bd3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 41de80653b78b98f5caa7f6d00a96d72bc245068 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 371d4ed270fb3cc3858a33fc0a857da2a21e6478 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4212d95c0bfdf34b9c7fbd05bc732fa1bbb226ce " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 37309bbfb4f0d78e6138b13a4e5da5944c95b97d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 42324d3d9e013cd43d4feeed1b48fbe1ea18a732 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 376f42635e918cc28706b82ad8923cc7401aa9e6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4236180c7d6f2edba5355b79bbe1a5c16266dd95 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 37b8a63d83441e64e279457d0e8318581ad3a7e6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 424b6a20be32318d920d83aa2a292a0aba013a1b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 37bc0646132afe8c79cda5e76de150a473fc0680 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 427392659bf3a945097c6c754a17d8c15e23816f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 37c26aa03db5daa01d7233f3c9fc474f81a724d1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 428b5b04a92ad6c28fc38451236c85338b9f8ce0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 37cf256347732e86fa92089847b7381e964cc83f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 42a8e7c267f66a0747f30b4053ec79325074dc97 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 38259d219a41c1bc60e3867dc60e3473f98cef64 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 42a92ac224829067ee7dbadafb777bd38f076c6f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 383043f6c05edc5a18f5c8e7b9d0314db63eab5e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 42b3c2bc6a11cea9d3ac86fbb8411360da676268 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3850b085a0a33fa2a08630dddb03e0f1adb1bee9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 42bcf462c3b918f07c52e87bcea6fd69a1f291b1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 385626d51cd29e1b32befeaecde5df7248270754 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 42c2e90f2e228d6bec0d81e55f08647a2d651bbe " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 38a55e83e685617cdf72e95f1303857b627ae346 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 42c3c4a4e7d21e79d1e36494d5324f10a5ecbb04 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 38c609f72f5a2cf977788afef9c34652f754add0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 42c50f9543819ff7f440a7ac660cea374355c455 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 38eb06643f87fff21483433dc4169e0388b0c9e1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 42c5f1965243b4bdf0212123d3430010bdacefaa " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 390daee799863cdd0533f35b15b5c0a4f5d79a79 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 42e6fb19dac07a0cbe747dfc8f1c90bae1d58cec " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 39160bc99597105d50cf7a15698090399a2482ea " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4305b19e8a214d2cf47436d964d52d10e430575f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 391ef74273ae5e1cd8a2342c5370fde5df1a7140 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 43646936116c18140ff0f01306d16280943eedac " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 39330aec49922885cf84803d7a5ee61d5948ee66 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 43676969fb81dcc1699b6a17eb465ef3cd4c2ab8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 39525bbff413519199d1cf2c564d62b9c3c7736e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 43874e2bb721b485a93d80b7f1c3e3630f746b02 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 39b6daa9ae088667c5080709ca829cf51e66212d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 439d4e4ed3ab9fe77e2bbda5b2be3d123beefa00 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3a07fd9ba009b9a57e298343e815abab13a16f5c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 43d52b36766d71176a2fc9f2a4be385bd2638570 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3a287590e2d38d5dbc0b85d29ae2497d27aa0305 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 43ed8f46ad700ddd4c2a7a15f0cd209954f0a774 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3a4fa4e81b78cae093b2d53b0a6f272a398a7cda " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 43f79e748c5da73a13555b00cf5050af68f07829 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3a74f1be7106c7dea533a34bd8a88974f69a5d71 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 43ff758aba2eca1e355f0062ca8fa2dcc8edc69c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3a90fbc998ad7219e447db6155e6174e0117dd49 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 441c94c010d19206c337d3c850cc449523ab480d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3abac3ec4db280fe9b8893b5f42986508dd87201 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4427b547b6693c39f08ba67c5d2ad012d5088f83 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3adaa0aea970123baa8ddb2560842c43bd19eb3f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 442bb0df4955b8dc95cc69af79a522a04c23dfe1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3adc410756f3e9cb929570bd5e5107663e8eed80 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 44378830a865936e205bb757a69bdf8d788bf26e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3aee5ced2869452b8ed65313d01b9b9c87144cd4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4449ec3eda232c394fad83e34b002e9bb46862e1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3af9522626ddfeb1ef461e3ba0f397ea4b2d99fb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4471ee009359844e7600175546a3b36a21329666 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3b002ab57ff8080fbb1e72d985ca6f59f96a171e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 449ece0109a8543f26311f3ddc23525a2f288b64 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3b114f7e66bf6cbf256a5e656ab6620e3f31277f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 44bf16b9eb7302a6b02a600ac92dadf916c4e629 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3b60e6663ac7ceaa40f91d3a68fcb9c35e3e99b8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 44e1fdcc46db56bf61a6702fd10766b56d35bc74 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3bdfaad171c20468a866329355621cd579eff21c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 44e696d37d7c113cf070d19871d5cc4e24a861d2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3c18f7c2d8fef6f119fe5bdbb5d191a92c627cb3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 44ec5dcc4133f1786084202bf41d877702ce9277 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3c2b6ebd2cd3fa2ea216ed01c4a7275ecbaa40c0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 454fb5eab23aacdba559ed9a9a36941732eb3276 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3c84d21c46b89e7573750dd4517ea2eb58e37e27 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 45657516294c5426c490e6aa522a79077c972856 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3c8e6352f6c2a07bd5ef2b9a93c103935c8eaf0d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 461949a48f4f2234cce6bfc1476bc9fd96552c0e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3c933aea09501c81d7e065c671cdc3bd55f8caf9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 462ae7e1d7eb4a4d8b4d5daaa1422b7cf835e127 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3c942f9491b1e8b5bb9761a4dbb1bc7165850dfc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 46325fcd7a3a718f2188f49e28ad9d0c9dcd06a9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3c94ad60589b22d99dd03f98b37c609c180a755d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 463a882b12f48bf803b650e95f3968a28732fc02 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3c9a414ad8fcc53c3271bbc8375086d8d1fa450c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 464ad6f3ca7fdcaf80dd97478b6aa3b7005db6f2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3cac139b58decec7c0d1f1318e8f1f28f9650c19 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 465b299ab3509b61016406e0d1d93f7774c03c8c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3cac506501825fadf2e4adf7619d16f72cfd8832 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4667156173c437c62fdea99a199f3aed0b504fe0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3cc56c99c6046f0d66c50c4062d90608064fd742 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 467971d589278cc348786054add9f1efda2fef9e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3cd19f8138a81f242cb92212df2b4812cde8385a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 46efabc911aab09a5e7a34a19ef97ce710594a77 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3d48a5c5a6188238bffee78f07b7cf6bb854258d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 46f88af92fbd99c386bd24d8a045a9a9c2469d53 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3d770d35de84de36ce4ed5b22f782edc99ecc634 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 47062580b496ad925d4d2faf1baec14bfe69a95b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3d7d13b272c46ccceca36729e9893e5142961fd3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 472adcbc2a1970f2392e596c28bd44087b8f3431 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3d8c66be71e0ae0dfb0c2c7b84e4d8336f92b7ab " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4799a2aacdba08bd3e418c5659060829a997d715 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3d929a8f8e77e038ddaecf9d149189cfeeec30fc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 47e402f3386843e0055431750f30b710e10295dd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3d9534f373e79edd704cc9529600efd62451fb78 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 47ecf4079ea23d4de5fd9282f733eb5429f7ab05 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3db644687c6a09fae4267f05b63a969f28024f87 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 47f2ead1b9cd99a8603dc5fd583afe3d4287deab " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3dc1bcb27ed0616a2b905025a8898759d94a934d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 484ab9d070fffe7e3d1a1704c9fa2ce01e192450 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3de19989758b5b68b29af3dfc6c0e55d414dca32 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 484ba3a787c8dab704c5d451e834044b46e35cdd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3dedcaf501bc9718e5d372862b081fc9fdfb3959 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 485410954a625f5749bce6ae923a620371542ed8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3df06a68edfc53fa88634c657a50cc6820354165 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3e0407abf398a7c40a34df7ed33ff23de02a2a6b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3e4c1755d1ad78103f10c2af7c7d2f86326f02f6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 48b3180434c4a21b334d7032ded763ef62b501bc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3e539f323c6ddea1bd3e34599a3c47b4457acdcf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 48ca1abe666bbf83a81d5c3be2d72017131ca4bf " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3e82319f1a44ea9224d65feb07ee0ef622709dac " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 48caf755ddcc6c45d3416ba6ab44709f360eb82b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3e8bef87bb89525914b5e7964969a66eabc78eee " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 48f56289592da153b3c50bcc26ad6d4d3a7e443b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3ed3fbcdae0ab5b185d6e7f1f46c2440f656e8d6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4905b3fb0f7d2196a5612e8e432abda666e4317d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3ef10f7eba289d88e82f3678434ecc1218a47ee3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 490f5aa97dc05ef1ce089fa9d4fd377bacafcf18 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f2429e3255ae36fecb57559b57d2b0cb88f5dd1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 494f747fe7c326002c3fb676c35d5dca2e28fd89 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f2e5f90e1a93df61a1c9c09b8c9116149eec526 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 49d0085058d7fa81247f51b802c0f4206854b4dc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f31d328c16207904d201406f7e9708360d5799b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 49d816ae44b329820f47979c5790eebc8eadafd7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f36ae935255c4bbd2bd8d4a85bfa92bba02225c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 49f564289c79de9e0342f8b0821a167bc8c5ec00 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f464011f8620f227309f6b2c84df6fffb8ed962 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 49ff30e0f070fe37b642dd0d361c5cbca139f223 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f47ad9ab401599f42d3c4f37ab9f702e3ff0fc9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a2ee017facf4df1929e7db4b34b12018b64461c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f4ab27065d2a4fed7d011af384e03150b72eda5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a3eae69f4c5dc768b166620af348316c9fac3e6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3f4ee68f1f22eabcd01c2a7c1c6c8ccc299aa97d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a4675803915c9dafe85b8026c93a0ca9c498233 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3fada97db682f675597cb58c5d43a72e283ab960 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a4ed32b4433e3cd99a4cd3cea00551074d07c9d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 3fbf231b2182dc58d2cdf1c62f01a8b709752505 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a6c8938a8a30567a481599eddfc137fa5454b21 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4004d9ccc668572796770fb3401376844e1574ae " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a7f8838cbf48e54b6649e62a32d4f0173ada959 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 40640a91fda4e4e42d3063a28b9ffbba1b8c3701 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a97016bb83b0db1c51fbb4d4f9c909dd85bdb41 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 409d7e2c0173b5a00a475f79e2fbdbe596d8368a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4aac2683fc841a2b5da166889c54c01aa2ab9c6c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 40b4b92460c4e76a39af9042fb3d86d491a98e16 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4b011706723e645407b871241c2c11004103d628 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 40b500d38927c62c6966039b8557f810b3c19dc1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4b08cbe9580dee1321fca514e74fbdd0022ec574 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 40fb9f1d9086ace2de0ad59648d196ba0705ae00 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4b303d7f245a569f507013af0b3afb2f033b6741 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4141d93d6c387967967844423a6a83ad1793010a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4b538eda0a7ad5d38b9d95867b7c181cbe84589b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 41921ba00dfc038778074b1af81104555ca74927 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4bedfc6d01a2d6bc0911d48123d6b8b30a46732e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 41bda7ff09175f821992adf4314a8ec3007ffe55 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4c03f9d60bfc5a2ab41c1703672a339838890ef3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 41de80653b78b98f5caa7f6d00a96d72bc245068 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4c34bbb26218f40a8ea1bafc8c50cd814a781cd2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4212d95c0bfdf34b9c7fbd05bc732fa1bbb226ce " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4c3dcb9cb14f89b3616fc7cca78f2ebc502907eb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 421feb3fe383541082a65a447a51b4af991ceb7e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4c6258b5299bd03560e292fcf3008efc60bc6cd1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 42324d3d9e013cd43d4feeed1b48fbe1ea18a732 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4c686a41d4d2226b3cc76b8154d8df090d075f00 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4236180c7d6f2edba5355b79bbe1a5c16266dd95 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4d345f45f808c5b0541976b5dff98c603611e9ab " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4239c3636053665277d07bafda37ee84c114b13a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4d472e5a8e8ee92be6f23a101babbc601dd2512c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 424b6a20be32318d920d83aa2a292a0aba013a1b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4d4aa6ddd6404300e5278682e560f25292e9804e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 426b7f180ab26cf276a223246d4d6bd972ccf55a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4d5e7091c1c67867f2760543d9a8a7256007bdef " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 427392659bf3a945097c6c754a17d8c15e23816f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4d7b5b98536de248387605efd813ba23b8b613dd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 428b5b04a92ad6c28fc38451236c85338b9f8ce0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4d800cf62e39478c1bc1db8222a8d810fff6ad85 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 42a8e7c267f66a0747f30b4053ec79325074dc97 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4d81efc0d5945caada326e2f6e55167120f0d3ce " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 42a92ac224829067ee7dbadafb777bd38f076c6f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4df3330a4c9a861ed98d0c5a19f7388ab1c9840d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 42b3c2bc6a11cea9d3ac86fbb8411360da676268 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4e36813fde9b5de1b62de95f498f2e0a48b5c5f7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 42bcf462c3b918f07c52e87bcea6fd69a1f291b1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4e4e5902e6d79c5d57bbf631863ab51b8b07943a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 42c2e90f2e228d6bec0d81e55f08647a2d651bbe " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4e8dbf3eb7d11a4fdb994f281454be2a7ebb091c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 42c3c4a4e7d21e79d1e36494d5324f10a5ecbb04 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4ea18756816848daf5e799ce1d75ecf52353eb08 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 42c50f9543819ff7f440a7ac660cea374355c455 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4eb0173ccf074ec6d8c1943f3ab2464184262426 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 42c5f1965243b4bdf0212123d3430010bdacefaa " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4eedb47e422ce761fc5b279582e56c7d1f3ed180 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 42e6fb19dac07a0cbe747dfc8f1c90bae1d58cec " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4ef22ea5b0aa8b80a180a9654f5aef121c5aad83 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4305b19e8a214d2cf47436d964d52d10e430575f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4f320381bfd3927493db8037238bdce1766c68ee " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 43646936116c18140ff0f01306d16280943eedac " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 4f53cc7b3ed0c77c3b5e4478f54caa40e0bf64b6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 43676969fb81dcc1699b6a17eb465ef3cd4c2ab8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5000fa3e29de15e7533b0e04b37eb1985ae69891 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 43874e2bb721b485a93d80b7f1c3e3630f746b02 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 50125f617f85b033f72e4938f227fc771083e9d1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 439d4e4ed3ab9fe77e2bbda5b2be3d123beefa00 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 507865c4a5ce880b80400d93fa85def2682581cb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 43d52b36766d71176a2fc9f2a4be385bd2638570 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 507b8ecbb9fd3eea9084087bce22a94cca8a7c41 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 43ed8f46ad700ddd4c2a7a15f0cd209954f0a774 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 50841095cafd9f9de6684fb3d89cd5fe148494ef " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 43f79e748c5da73a13555b00cf5050af68f07829 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 509fa48e02986acab87796b1976e78a6ec243b79 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 43f8e0abe3f647350ab1d8d368cca9af6ca47729 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 50a96367b6a52c58a36364f4b1ec0583c7f315a5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 43ff758aba2eca1e355f0062ca8fa2dcc8edc69c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 50bfe6100bf11339372ba29fe0c9b38c3ec2ebf0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 441c94c010d19206c337d3c850cc449523ab480d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5109721ea8f74b08d455968fce90dd74c29aa95a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4427b547b6693c39f08ba67c5d2ad012d5088f83 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5151ad7147bbb75b1b377ce03f4ef5ef0f4f1c82 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 442bb0df4955b8dc95cc69af79a522a04c23dfe1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 51a2c3035dc5359f9887b588b922faa6789c7ea7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 44378830a865936e205bb757a69bdf8d788bf26e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 51be7e2267e32f2eb8079349882f8247dc397d0f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4449ec3eda232c394fad83e34b002e9bb46862e1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 51d7466ac65468db7094bdedc60d1604231acc05 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4471ee009359844e7600175546a3b36a21329666 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 51ed796a5f8d8fccebe013ccccdc1ed5d8b8b4c0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 449ece0109a8543f26311f3ddc23525a2f288b64 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 521e1e27b0997a0dc168f628e8a0497f7f93ea6d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 44bf16b9eb7302a6b02a600ac92dadf916c4e629 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5220909c423d2b321e8459355c965fb330288565 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 44e1fdcc46db56bf61a6702fd10766b56d35bc74 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5259807dc13effc44f0785be11f5dc0c0f35a659 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 44e696d37d7c113cf070d19871d5cc4e24a861d2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 528cc09294d2288fc91a4bab7cf6ec621c6621b0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 44ec5dcc4133f1786084202bf41d877702ce9277 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5298ce28a7eab28c99964c0d838b017355607c92 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4523e89844538d8de502907f143c35624182f76c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 52b5c86f262d46624b2211151a38cbd69c705734 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 453861de5ab948236f13ebff66c8e82e4e789db6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 52dba1b997f903c5fa3d7da71421b36d96d9f55c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 454fb5eab23aacdba559ed9a9a36941732eb3276 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 531c6bd636d1d022ecdabf41243c1f036162bd8b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 45657516294c5426c490e6aa522a79077c972856 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5347599c4246a004f9cbecfa78d39168237b6394 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 461949a48f4f2234cce6bfc1476bc9fd96552c0e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5356dcd6b1d0487f9723663f8a3dc955b7e09273 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 462ae7e1d7eb4a4d8b4d5daaa1422b7cf835e127 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5394ae134e9023432ac137789815e2b24d1bab3b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 46325fcd7a3a718f2188f49e28ad9d0c9dcd06a9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 53d637a3f0b9fc07dee0de089080e5c105381eb1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 463a882b12f48bf803b650e95f3968a28732fc02 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 53e68cd362f3c8d64941efbb0b527c52da5e8424 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 464ad6f3ca7fdcaf80dd97478b6aa3b7005db6f2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 53e9f9a4b0347651b3833c3e153e743a1194e0fa " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 465b299ab3509b61016406e0d1d93f7774c03c8c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 541e87b9d3dc75ad40cb47935ed4de83b25af5b9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4667156173c437c62fdea99a199f3aed0b504fe0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 543ea879faab347874ad5e297684a62a1555e1ab " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 467971d589278cc348786054add9f1efda2fef9e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 546fe2e2b1e2756c3f121d0545866798c85c9b8b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 46e1492e19d0cffdadc1050cc22d505b4e057759 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 548190b9eb539e0841bcdd6e2c095cbef6ebd119 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 46efabc911aab09a5e7a34a19ef97ce710594a77 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 54a0a2c37ce1830f241f6e2828adc8057cfa385f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 46f88af92fbd99c386bd24d8a045a9a9c2469d53 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 54d5ac6cc4bd944e60b7464e36c5d1b144c17da4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 47062580b496ad925d4d2faf1baec14bfe69a95b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5515fa05b890973031b0e2cc8c2925f3974e2821 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4725b858491e1517af1032efba6bb198f39fd62d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 559d537675dd3fc5e0c6d40e94133e9016014f6c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 472adcbc2a1970f2392e596c28bd44087b8f3431 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 55c1b1bd6e532928ad47cadd8e5c5363849d7df5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4799a2aacdba08bd3e418c5659060829a997d715 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 55ed466781b547db5957233bd8db0ce1f189183f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 47e402f3386843e0055431750f30b710e10295dd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 560fe3fe0bb266ccb8c59ce19302bce23835097d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 47ecf4079ea23d4de5fd9282f733eb5429f7ab05 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5611060a04db105e03cc74da57352b8a09c411e0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 47f2ead1b9cd99a8603dc5fd583afe3d4287deab " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5677b3500e9353856c8d87fbe1476a22df4231f8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 48062d4824e8ba697cdd16a46b85d82ff445e649 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 568af7c1199c646c500e287b50abada8ac0ff2da " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 484ab9d070fffe7e3d1a1704c9fa2ce01e192450 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 56ac47e07bf3f42310773a4c66ee9d3afc27a8a3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 484ba3a787c8dab704c5d451e834044b46e35cdd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 56be7398f856423e2252d1a4e31103ebaebcc15b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 485410954a625f5749bce6ae923a620371542ed8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 56e0bd235d4ea1de80d753b2b12d03d43cd0aa06 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4857011f92ceaed4fee4d7612e1c46930903c95b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 56f3ca8174d263240113de88e7547e7b1c5cb2cf " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 48b3180434c4a21b334d7032ded763ef62b501bc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 56fb970061e8b61059130c0ac642bd0ceb0ea26d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 48c1691a919f1055f748e43cd799770f00c1c38a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 570215c70de40add2ad62bed9ce47f8b6b231de6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 48ca1abe666bbf83a81d5c3be2d72017131ca4bf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 572ab3983e406a82325f02edfdd7981d040cfbdb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 48caf755ddcc6c45d3416ba6ab44709f360eb82b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 573665d817a96a324fb8ba40a06425f572327b78 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 48f56289592da153b3c50bcc26ad6d4d3a7e443b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5748d19bd88d2495f0ced135e70b5bb4fe0b4148 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4905b3fb0f7d2196a5612e8e432abda666e4317d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 57798cc4375de344391221fd07d591f5c64d646d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 490f5aa97dc05ef1ce089fa9d4fd377bacafcf18 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 57bc1a4501ceb31b4ead1c2428798be073eb9db3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 49254390bbc7e7b9eb58ddb1ac54a1e7eacee168 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 57d4ef9e72f97aa8a1e6689f3be092fc2b24315c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 494f747fe7c326002c3fb676c35d5dca2e28fd89 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 57da1745490c2f21ecb86370f1f72f77752bc739 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 49d0085058d7fa81247f51b802c0f4206854b4dc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 57dea4528141649208fa2af10c18e98e80c1758b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 49d816ae44b329820f47979c5790eebc8eadafd7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 587d211412b8405e82245f511007083dd60b7477 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 49f564289c79de9e0342f8b0821a167bc8c5ec00 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 588f9166c839baf3102185d38f77f9a750e62c7f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 49ff30e0f070fe37b642dd0d361c5cbca139f223 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 58c57e0ef4c2a630150f53ccdc2bfa798d5b9eae " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a2ee017facf4df1929e7db4b34b12018b64461c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 58f2f1f487dcd6cc6f2126835ec647c73f0d371a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a3eae69f4c5dc768b166620af348316c9fac3e6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 58f87cac2d3f564f1afe4ca85637e47b758796a5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a4675803915c9dafe85b8026c93a0ca9c498233 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5928c7d56230ac7c10860c64ebfa6aa243f2966c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a4ed32b4433e3cd99a4cd3cea00551074d07c9d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5939ec5fd8f4e02ff0720cfa3ef685876bb3549d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a5a1abe7b402338c625013caa9bc8464a3d0bf2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 594d676c8c05d75ba8587d9e900850dff5e21ff8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a6c8938a8a30567a481599eddfc137fa5454b21 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 595603f4ed37e3716cbe53b3ef180e5cdf8005f0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a7f8838cbf48e54b6649e62a32d4f0173ada959 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5967be7b53e3bac677c726d30a513949e06e1fde " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4a97016bb83b0db1c51fbb4d4f9c909dd85bdb41 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 598c513564bc043f831876ea61cb8283d43f6726 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4aac2683fc841a2b5da166889c54c01aa2ab9c6c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 59db3f98b38747d4a35524c1b3d31b5e90f53775 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4ad1a61051d0db46638b774c61392b9d1c360410 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 59de0a42d012ca3dd8b7fa2f1b1c6642cb86fad4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4aecde7ffaea881f42e693858b25c334df711b27 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a1d370abacb9f46fa966c8e58992897606a7900 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4b011706723e645407b871241c2c11004103d628 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a34e7fd2ff3f8e32ce85138931a387dc5f15db0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4b08cbe9580dee1321fca514e74fbdd0022ec574 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a3c9d98651a315b5bde737482ff54f6b90361e0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4b0e9a84edc3eb0e6c377e860f5ecfca1bf64baa " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a3d25f74f7629c675be11faaea35921229b8757 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4b303d7f245a569f507013af0b3afb2f033b6741 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a3dbe637791a9a7c5005b985c1cc3e7066f8f50 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4b538eda0a7ad5d38b9d95867b7c181cbe84589b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a6491ab9c23fae58967d4a4b5d5cfb23f620001 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4bedfc6d01a2d6bc0911d48123d6b8b30a46732e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a85c9bd6a6d7a2f753dd315e4747fc0249c8799 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4c03f9d60bfc5a2ab41c1703672a339838890ef3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a8ca84c7d4d9b055f05c55b1f707f223979d387 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4c34bbb26218f40a8ea1bafc8c50cd814a781cd2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ad89e10b538191d22187503233223d2e520d80f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4c3dcb9cb14f89b3616fc7cca78f2ebc502907eb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ae4d5439ec6910a5fcd9c41f20ae843942853c6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4c6258b5299bd03560e292fcf3008efc60bc6cd1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5b1d5721f3828cb73647cbf8c9e6b456a505a00b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4c686a41d4d2226b3cc76b8154d8df090d075f00 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5b3f6f20f348cc4e5fb07cdb6e8614ca24f2cf13 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4d345f45f808c5b0541976b5dff98c603611e9ab " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5b8bc6a61171513d5c9a96cb340e0a435c524017 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4d472e5a8e8ee92be6f23a101babbc601dd2512c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5bcde4a99b8ad54a5b8ba9b5131842c6c7c0ef19 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4d4aa6ddd6404300e5278682e560f25292e9804e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5be956066b72ea1799e333a7bd17fb0b8fc2b91c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4d5e7091c1c67867f2760543d9a8a7256007bdef " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5c117dbd5d3146fd94c667f15f4c006fea88d14d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4d7b5b98536de248387605efd813ba23b8b613dd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5c37a2f980223e737574dba8239378f643800c28 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4d800cf62e39478c1bc1db8222a8d810fff6ad85 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5c388b60e622e14c9abfb5b46c65207a319e09e4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4d81efc0d5945caada326e2f6e55167120f0d3ce " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5c43f3a5de9c581693432dbb2ad604550c3948f5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4df3330a4c9a861ed98d0c5a19f7388ab1c9840d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5cce719931cf1f07536401134de4325b942be87d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4e36813fde9b5de1b62de95f498f2e0a48b5c5f7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5cd1f23514773a7c5dd30be268b6fcfd1ace84b3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4e4e5902e6d79c5d57bbf631863ab51b8b07943a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5cd55495dee689728feee959bcb09e2ab13d013d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4e8dbf3eb7d11a4fdb994f281454be2a7ebb091c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5cf8b4c70476c124711e731cd2e00f67906bd457 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4ea18756816848daf5e799ce1d75ecf52353eb08 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5d0137a19ae57cfdf5172a8b51e8ea0a0a893690 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4eb0173ccf074ec6d8c1943f3ab2464184262426 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5d2f29b31d78b47077b15779d620747034d18c05 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4eedb47e422ce761fc5b279582e56c7d1f3ed180 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5d5ce71ab1258e014e06e6a2edb94a47a4ae1b35 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4ef22ea5b0aa8b80a180a9654f5aef121c5aad83 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5d765c856a9a8650e1b17813340b9b6ba0989b58 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4f320381bfd3927493db8037238bdce1766c68ee " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5d76fdb98fb38243a1f1c5f96d31ece34c5a91b7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 4f53cc7b3ed0c77c3b5e4478f54caa40e0bf64b6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5d8bc49f1deb0199a806113ab049df418a9d9316 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5000fa3e29de15e7533b0e04b37eb1985ae69891 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5da04bc3d5b4889de2f12508ef13bcb490787854 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 50125f617f85b033f72e4938f227fc771083e9d1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5da437d4fd58607deeed34bcb21accece71a056b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5035db01a56a34061837c4d0214f6e5112d81ff3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ddcbde7afa43e7fe4e44ef1470fc0c282873cae " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 503649137cea18ced8a57e7c644162bee8885ed1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ddce6103cb33bc58571c8135b620443740e3646 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 507865c4a5ce880b80400d93fa85def2682581cb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5e1391f44f904fa54e66ec174e4c8879921e842a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 507b8ecbb9fd3eea9084087bce22a94cca8a7c41 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5e31ededf3b3189d252148c450de7a8778653e72 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 50841095cafd9f9de6684fb3d89cd5fe148494ef " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5e880db498f9baae544cdbc23476873d8766ac58 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 509fa48e02986acab87796b1976e78a6ec243b79 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ea01efbec747fc55ae29eb2b779f00889ca6922 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 50a96367b6a52c58a36364f4b1ec0583c7f315a5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5eae70ef8ab19fead6a9275e3e40df6b201159b1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 50bfe6100bf11339372ba29fe0c9b38c3ec2ebf0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ed431181bedd9a496aa3bb2330957c621f1443d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5109721ea8f74b08d455968fce90dd74c29aa95a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ed8998cfc22cce008e3988b3591b1c9ddbfaa75 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5151ad7147bbb75b1b377ce03f4ef5ef0f4f1c82 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5f07e5246d765494ee26c689072ab3ced452f30e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 51716d5683d5c762298fdfa6b57ecf17d6892fe6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5f2fdb01d8ff632803ca2b732a7c088c6843d7d3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 51a2c3035dc5359f9887b588b922faa6789c7ea7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5f52309deaa1b641fe199889d18f921d6909fc14 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 51adadd4662ab165a203afdbdbc470b62ac24d36 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5f61659c332f6153f9a59746bc02064155443b4a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 51be7e2267e32f2eb8079349882f8247dc397d0f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5f7eee027cbd6ae8e989150d9bd8a4fd39654c01 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 51d7466ac65468db7094bdedc60d1604231acc05 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 5fe822a742cf2f5328cec86c0972b0c7b4bd4460 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 51ed796a5f8d8fccebe013ccccdc1ed5d8b8b4c0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 600096fe00d5f67726674fb9b0d2a6621a25e79c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 521e1e27b0997a0dc168f628e8a0497f7f93ea6d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6016f65e62600b73d18ca8548591034fcddf440c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5220909c423d2b321e8459355c965fb330288565 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 60ad6847b1fe72ee81decf28dcffa30ce372af6a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5259807dc13effc44f0785be11f5dc0c0f35a659 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 60b4c79213b97204d1e4f6819ad1ed5f6e191789 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 528cc09294d2288fc91a4bab7cf6ec621c6621b0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 60e8618c075ec5fd47a1699271c6da1b5befd579 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5298ce28a7eab28c99964c0d838b017355607c92 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6123f6116f3cacb4aabdbe26aed24ed0981d6c1c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 52ac4e5a6c433b7e135e817b797f9bc85d4c619a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 614dbc86b17270ef1d5ab705ecbe88c742815ce7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 52b5c86f262d46624b2211151a38cbd69c705734 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 61614f406af22aa805e6a2cfb24519ffd058d575 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 52dba1b997f903c5fa3d7da71421b36d96d9f55c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 617a2a3f6b6d5d53993db606a8818235ae8d9b96 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 531c6bd636d1d022ecdabf41243c1f036162bd8b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 617ef08330c0e852f9aae6c63ddc5893b8b2c722 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5347599c4246a004f9cbecfa78d39168237b6394 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6184ea16753b0827f728285f18dad4b3bde00024 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5356dcd6b1d0487f9723663f8a3dc955b7e09273 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6186bfc21ff7df3982e5d9757e5c7160da0f493a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 536b5c0bf942c03bf9d4a4cc27c97c1230128ede " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 618e64836dc7f374745be963b7b3c62cc02ae2ca " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5394ae134e9023432ac137789815e2b24d1bab3b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6196eb700471a9678e3e68526ab65bf4346c5bad " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 53d637a3f0b9fc07dee0de089080e5c105381eb1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 61ce843c87f7bda1fabcb6ae3f41e85e6e2332ac " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 53e68cd362f3c8d64941efbb0b527c52da5e8424 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 61de97a9d6c4b082602c02277d8d763921f5f95b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 53e7030d5de06dcf80e1a60aa467e6e31bec6515 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 61f410c711bc5d53be9e932217ebd035f2716417 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 53e9f9a4b0347651b3833c3e153e743a1194e0fa " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 622a3505d10767b795fc2c2922c0d5305d9b84e6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 54168e5030c8a7cdd58162dee7c2583bb4caaf64 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6230cce2862a18c4c92dc6fb4e034a1d15e1ff18 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 541e87b9d3dc75ad40cb47935ed4de83b25af5b9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6245a105123761558a71a9207b3048d2f3d691f0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 543ea879faab347874ad5e297684a62a1555e1ab " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 629eac0e7443a273b5c351757c03fe15a0b87c1c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 546fe2e2b1e2756c3f121d0545866798c85c9b8b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 62b039b8a318cc08471f13629da08c68c414d8e7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 548190b9eb539e0841bcdd6e2c095cbef6ebd119 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 62c995646f15be1819bd13e32a60af46297d73b4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 54a0a2c37ce1830f241f6e2828adc8057cfa385f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 62fbfe90a1b9ac471bc2644c896f64515f6b3c7e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 54d5ac6cc4bd944e60b7464e36c5d1b144c17da4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 634d809c430738b89f0e677eec36506e537e86b3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5515fa05b890973031b0e2cc8c2925f3974e2821 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 63626e71d4e8e15905f13933f5b88d89073b3411 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5559428fa9a1f1701e81eec11a3571be403bf627 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 638c36cfe098b98008e594eddf90fdacfc078fae " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 559d537675dd3fc5e0c6d40e94133e9016014f6c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 63b74d17bfbd015bb55dda59a05101bee001369c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 55a71f74f233ea8ce88967c5660aaa532fbc985c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 63b91deaac58a7b64fb5999628ff3ff5d32b719d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 55c1b1bd6e532928ad47cadd8e5c5363849d7df5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 63babc04d35adbe48add6e93386dfc838b0bbd25 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 55da9fe903905e9852dedf6b664a4a589efeeec5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 63d83cb5580d3222eb5e2d7982f7f995634ba5c1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 55ed466781b547db5957233bd8db0ce1f189183f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 641739453f7d4d3b55a1c7b79bed7da6dfd62ae0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 560fe3fe0bb266ccb8c59ce19302bce23835097d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6421db654fff309bc191aba0330fbcd1347655e3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5611060a04db105e03cc74da57352b8a09c411e0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 645b8377f905399af625a01c76ff088745fe1640 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 567026bafbad3be6a7bd430577e7d39ec3d56af6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 646c501021c79bf6eb1a39a9bcc82e018f31bca2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5677b3500e9353856c8d87fbe1476a22df4231f8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 649cf0ee983cb5792042687181ce7e4d81f090a5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 568af7c1199c646c500e287b50abada8ac0ff2da " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 64c572e594c2d491a902e8fdff7b617ac0c6881b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 56ac47e07bf3f42310773a4c66ee9d3afc27a8a3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 64ce7e5553de2c081991af4fc386bffdd8d2e210 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 56be7398f856423e2252d1a4e31103ebaebcc15b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 64d55e872c2148eefb0d7c3df101fd955b709f24 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 56e0bd235d4ea1de80d753b2b12d03d43cd0aa06 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 64eb970cc80162a4b80d49364f4227db3429e156 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 56f240463ef197b49c7e271e74412f62909974dc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6531f1c311678c9247ad6820519bc7e73f56cb81 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 56f3ca8174d263240113de88e7547e7b1c5cb2cf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 655b880459e6e00100727af9df52b64f6d77a653 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 56fb970061e8b61059130c0ac642bd0ceb0ea26d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 655f952ec49cbc6176ad1bcfa45a87bd6c3542f0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 570215c70de40add2ad62bed9ce47f8b6b231de6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6589505362ffb5164a3c7cb1b9feadcddfba44e9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 572ab3983e406a82325f02edfdd7981d040cfbdb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 65afd7305e481da5ffc44a6a66eb3117744ae77d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 573665d817a96a324fb8ba40a06425f572327b78 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 65d8075993dbb2ed83dea46cd76e974352916eac " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5748d19bd88d2495f0ced135e70b5bb4fe0b4148 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 660c071578cbdccb503317ecbf2fd331bc4ac82d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 57798cc4375de344391221fd07d591f5c64d646d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6619768ddd830ebe29021e827961fddb78751086 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 57b087d753a6af79c0b58ca2c9aa5c92bc18a6a5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6639deedbf04eceba6017f712b287235540b5528 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 57bc1a4501ceb31b4ead1c2428798be073eb9db3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 663e7fc276b902cd6efb5bc944c4c7af90ca916d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 57d4ef9e72f97aa8a1e6689f3be092fc2b24315c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 665d7b4f8082be87864e6ad3a6a3faa1d52ad6e5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 57da1745490c2f21ecb86370f1f72f77752bc739 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 66ac31199d08e7a3b066059cd409457a850847b2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 57dea4528141649208fa2af10c18e98e80c1758b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 66ef59d5da68fdb5e55b60fc8a8a764afb021b4b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 587d211412b8405e82245f511007083dd60b7477 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 66f0ed73b2d4ca3edbd23d5b669e75e4d0ffd292 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 588f9166c839baf3102185d38f77f9a750e62c7f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 671d63b9968444308d4908eb6a26bccdf32e5e29 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 58c57e0ef4c2a630150f53ccdc2bfa798d5b9eae " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6722929b4924f4d50ccfb999460e9a31ca104b4c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 58f2f1f487dcd6cc6f2126835ec647c73f0d371a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6730972339225220310ac8c09c0f776ae465fc87 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 58f87cac2d3f564f1afe4ca85637e47b758796a5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6810347353fd417add645af90476310bbf572788 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5928c7d56230ac7c10860c64ebfa6aa243f2966c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 682cb8ad9fe4641e7a140ae3d3ee27c841ba397f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5939ec5fd8f4e02ff0720cfa3ef685876bb3549d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 682fdabcfc7243e9c93108d6b2d7d3e920e81970 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 594d676c8c05d75ba8587d9e900850dff5e21ff8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6839920a4e7e998a8f30e6679934b91a819bebc9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 595603f4ed37e3716cbe53b3ef180e5cdf8005f0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6868e669f4b9a77ae5227767ec455fe6f82e55a1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5967be7b53e3bac677c726d30a513949e06e1fde " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6887af467b343d6e1a8125ef10eb0a630f2dc06d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 598c513564bc043f831876ea61cb8283d43f6726 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 68c65dc60f887050eb8cd7f946bf37aea2ade9f2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 59b547627a6b1aef96f6c5e3b7dc08c3e1244368 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 68d88fa596ebee37d7c0251c0abcd844b452cf28 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 59db3f98b38747d4a35524c1b3d31b5e90f53775 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 68f9d39b83bbc7cb4f743c8814800e6692988897 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 59de0a42d012ca3dd8b7fa2f1b1c6642cb86fad4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6914f5f380c83ff9e3e90fc60d5048e47e5e77d9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a1d370abacb9f46fa966c8e58992897606a7900 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 696ea30e2e1490f2f31b153641b2c29152ded5c2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a34e7fd2ff3f8e32ce85138931a387dc5f15db0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 69d0f8b4a9452d11620c7d3c1fa532a618d65858 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a3c9d98651a315b5bde737482ff54f6b90361e0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6a0c934ac351b40c8815d7812a2bb1b0ca30940f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a3d25f74f7629c675be11faaea35921229b8757 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6a10118289fe7179c4e9bb6a1b466ba34c582bfb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a3dbe637791a9a7c5005b985c1cc3e7066f8f50 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6a1d877fe1eed1199511b8f28889d8f17665708e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a6491ab9c23fae58967d4a4b5d5cfb23f620001 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ac88da4119df5e1592a05bac7ecb92af59dc1d1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a85c9bd6a6d7a2f753dd315e4747fc0249c8799 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ad3a1170ef884a884a6f340101549df624bf5a4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5a8ca84c7d4d9b055f05c55b1f707f223979d387 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ad7afcf2d12025faf0e1812ee7a0a5d754620c6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ac0e42338f7b064f5c23697f1174a10b42e7ed8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ae8b3afc4f6e3a26fec5eaeb2bf64727927552b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ac8cb08604c86b9e8ca24482ca963eddac2efbe " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ae9bab625e9ac8210953a7363167d6deaf194ec " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ad89e10b538191d22187503233223d2e520d80f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6b1e10a936df3b42720ebc9179fb74aa147f8b14 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ae4d5439ec6910a5fcd9c41f20ae843942853c6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6b6a9a2ecc635bd8d76b00b64aeb6297e04683b6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5b1d5721f3828cb73647cbf8c9e6b456a505a00b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6bd27df0dc9a3f73108de7bad443433aa5ee1175 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5b3f6f20f348cc4e5fb07cdb6e8614ca24f2cf13 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6bddcd6ce1ff68320e3cc62bc215acf04de36ed2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5b8bc6a61171513d5c9a96cb340e0a435c524017 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6be9f2d2967566ac929c27a27de40af792a6da90 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5bc4eddc2a2881d4b6b4f9532f4fb381e4cc9529 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6bfbea131237606756a12f275e736045c0956536 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5bcde4a99b8ad54a5b8ba9b5131842c6c7c0ef19 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6c1c2177f3483086607c717d0c6c35a81d79e18e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5be0001be32d9e619769c7cc6cb9f541efe4996c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6c34a6b47ef9e11e02f7675087d888c2c994b010 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5be956066b72ea1799e333a7bd17fb0b8fc2b91c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6c3c3119fabe838b2600e24651931f3012338e3b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5c117dbd5d3146fd94c667f15f4c006fea88d14d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6c5707e8b1aa9a70ec87014cd660df4a7b910ee3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5c37a2f980223e737574dba8239378f643800c28 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6c91623f5a30f65110a4083897bad2882f032c51 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5c388b60e622e14c9abfb5b46c65207a319e09e4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6c9b144f4e6dae6944b524a077dde07ac79e58d5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5c43f3a5de9c581693432dbb2ad604550c3948f5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ca83e5d3f4544a14da513dc798f02464febdcd8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5c6debdb92eb9089773cc8d092d7f62d521ae029 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6cb17148d52be437332b6fd6f2fc8328bfb63fb0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5cce719931cf1f07536401134de4325b942be87d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6cb9930369caf7584015d3a17c37e144d23b79ce " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5cd1f23514773a7c5dd30be268b6fcfd1ace84b3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ce0f95767e8b1c58ff313d10f1a3eb1f9ab8496 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5cd55495dee689728feee959bcb09e2ab13d013d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ce9895c780428861d12440946508c6641352544 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5cf8b4c70476c124711e731cd2e00f67906bd457 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6cfe000a50ad8b908b3efa3af94c5df6382ff33d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5cfdc00a568d97b09e720a72eac7e5fbbf76247b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6d6d70df4499b8595851100ffb833d397cc87a18 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5d0137a19ae57cfdf5172a8b51e8ea0a0a893690 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ded157ecd3fce79fa69c51ee9ecb4639013e6ba " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5d2f29b31d78b47077b15779d620747034d18c05 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6df1c575d7f8fdf5593f1f60d9dc540d018fc58c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5d5ce71ab1258e014e06e6a2edb94a47a4ae1b35 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6e1cf196e7c8ad4226d89f3ca2c6f7949598bec2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5d765c856a9a8650e1b17813340b9b6ba0989b58 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6e3d43e98d7be45ecc1863eedfeb85a4cae4a007 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5d76fdb98fb38243a1f1c5f96d31ece34c5a91b7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6e77e1cd328bb98d954043230716863c5133c1c4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5d8bc49f1deb0199a806113ab049df418a9d9316 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6e97f4e782ca976d4890199d48fcfd64173e24f9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5da04bc3d5b4889de2f12508ef13bcb490787854 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ea192b1d4c4577ca7511f8ce5027b31b2e0d75d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5da1a1a4ee88d2a2b6e9470dd7be9e2dd9eecc4d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ef96bc0c5b6ab5f8a4453b9cf5784fd55e3b59f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5da437d4fd58607deeed34bcb21accece71a056b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6f0bbfce7c5027932fb0f809494413e12a4ad3c1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ddcbde7afa43e7fe4e44ef1470fc0c282873cae " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6f39da8f5bbae89a13dd36755f7b3c4a30c25833 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ddce6103cb33bc58571c8135b620443740e3646 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6f68ff31046fd15930657516873b8835fdbadfe3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5e0c4179d297f5bafe86b9e256bf75d54cfd1fb0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6f72c05f90d289ad239cff682d8e911cbbb416dc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5e1391f44f904fa54e66ec174e4c8879921e842a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6f88ae246aa4af9c74732d87a758ba5ca0f40caf " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5e31ededf3b3189d252148c450de7a8778653e72 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6f8ffc96f9ebe390929165e32bdc187afb7a40ce " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5e880db498f9baae544cdbc23476873d8766ac58 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6f93d27e20d9158285cdc0193757daa2e34190b1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ea01efbec747fc55ae29eb2b779f00889ca6922 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6fa93aadbb6ecdc32c9111be7692ec28ec11be72 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5eae70ef8ab19fead6a9275e3e40df6b201159b1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6fb7b01c1b363390eb9188bcac05f8f11e20c01d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ed431181bedd9a496aa3bb2330957c621f1443d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6fbbaf9f6f49fabad4a0e47cea9e4048d8f130ed " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5ed8998cfc22cce008e3988b3591b1c9ddbfaa75 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6fc72a2c1ff9a11539ae35b197a79786496c2257 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5eeb786fa5735ef9b98c40e205f2eba24223acfd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6fe041f1468b495d3186da906f9a5091e5761387 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5f07e5246d765494ee26c689072ab3ced452f30e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 6fff95a8d3566b2721fa46e9828b47635f13d9ef " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5f2fdb01d8ff632803ca2b732a7c088c6843d7d3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 700f56e26286daf472d371effb9bca13fffa3d77 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5f3a4ed52525d1db60b45d79057a6e276395e562 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7025657232cd9bcb8fcd6edebdff268cf8e74db8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5f52309deaa1b641fe199889d18f921d6909fc14 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7030cb2c62b289459e459bc54bd84c8d7e6f5a98 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5f61659c332f6153f9a59746bc02064155443b4a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 705c87b99197c87eb2ed148f8b3fdc60f8616f15 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5f7eee027cbd6ae8e989150d9bd8a4fd39654c01 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 70bd921a3d4700d49ad6b99e0cfee42c36a13b3a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5fbffd9d324ad078bf6f5fdd39e5e4a27afd5965 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7108fee873f0120d41f469944cf1e24bd33ad684 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 5fe822a742cf2f5328cec86c0972b0c7b4bd4460 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 710f61e5765c91bcf9cf2e07264771cf2feae48d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 600096fe00d5f67726674fb9b0d2a6621a25e79c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 713f66791d0f23b7b7b0ec9c40b6d51f7b214c9a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6016f65e62600b73d18ca8548591034fcddf440c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 718d23058d5c805a2984c087cd89f9cb6af065b4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6042b1bbaf3ceac51c11a472ea07a75e822b7bc5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 71961e53698b07bfd57e9ea37067e0dd52298a3d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 60ad6847b1fe72ee81decf28dcffa30ce372af6a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 71c01818823d5c5fd8a3d1cb4c5db4aca51efdb2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 60b4c79213b97204d1e4f6819ad1ed5f6e191789 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 71e2b03b503dbbdc0d2e724c562b9f1c77f972fa " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 60e8618c075ec5fd47a1699271c6da1b5befd579 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 71ef778b5cb623be033026d5a6968e49a9581dc2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 60eec02f3b3aa23b12261ed00163d122b24ab5af " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 71f9eafe17e974062938a6a12433ce723fe07d40 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6108ac96de85e973db42982eff9d2f877a36699d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 72160b48e0995ee82f116d77a7fb23a028c10932 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6123f6116f3cacb4aabdbe26aed24ed0981d6c1c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7217d93c1da3ae8ed085a5e6988227dcf430cd89 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 614dbc86b17270ef1d5ab705ecbe88c742815ce7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 72205156cfb4fe412e4838b771dc9c9a8f1441d1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 61614f406af22aa805e6a2cfb24519ffd058d575 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 724063b7a5ee36246d72923e776331487434b81a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 617a2a3f6b6d5d53993db606a8818235ae8d9b96 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7240f3408714c2dcdcb448f234efef4f08e6b2fb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 617ef08330c0e852f9aae6c63ddc5893b8b2c722 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 724f5400f19e5a0be97022341c39eeaaaffeb390 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6184ea16753b0827f728285f18dad4b3bde00024 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7254b9ff59ab3fcf345effdabbc25ebd2e907b23 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6186bfc21ff7df3982e5d9757e5c7160da0f493a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 727f43500183aec9c0d9be7d2363fa1761cda5d5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 618e64836dc7f374745be963b7b3c62cc02ae2ca " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 72a3729a9bb74378156dcd42171e39ec348c71d7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6196eb700471a9678e3e68526ab65bf4346c5bad " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 72a79517b8f9b57f62dc1203a6b5eefadf27c088 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 61ce843c87f7bda1fabcb6ae3f41e85e6e2332ac " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 72b0bead5c0425173f696ff8efd7c726dcc4ecf8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 61de97a9d6c4b082602c02277d8d763921f5f95b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 72c363848fe754c23e1f9f2acc2f025666417d2d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 61f410c711bc5d53be9e932217ebd035f2716417 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 72c747d699af2733d0b93e6fa7afa0f88d05eed7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 622a3505d10767b795fc2c2922c0d5305d9b84e6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 72f71befa8ebb4b2c1842aec78d840b2a4abdb85 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6230cce2862a18c4c92dc6fb4e034a1d15e1ff18 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7365085e946d2c950beafa73b8631b82010acaed " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6245a105123761558a71a9207b3048d2f3d691f0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 73889340124f1f88859aab4e6ce36c0019a44218 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 62515c0e559e40838126e5be6ede5440875a3f70 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 73a6e07089ee011746c1ec3146b8a1b4b82c835e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 629eac0e7443a273b5c351757c03fe15a0b87c1c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 73b467524ba4f55fd030be6b0602389b9af4fa1a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 62b039b8a318cc08471f13629da08c68c414d8e7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 73c6386046061350e70fbd846e7dba1428a43857 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 62c995646f15be1819bd13e32a60af46297d73b4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7421d8acd877abd9d437ad447dfae29893cd2f37 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 62fbfe90a1b9ac471bc2644c896f64515f6b3c7e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7436e1a9a62ad1f40320da321698477ed8f2b577 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 634d809c430738b89f0e677eec36506e537e86b3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7462e4d1834938e8a5fb975da6865cc7d6b225f3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 63626e71d4e8e15905f13933f5b88d89073b3411 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 746477e7e8f093f87cb6924ab6476cda9689607d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 638c36cfe098b98008e594eddf90fdacfc078fae " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 746d9837f0fc3c989b7fe0585b8365478f1c21fc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 63b74d17bfbd015bb55dda59a05101bee001369c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 746ecd23f1c41206dd4180a7afb032411f315d73 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 63b91deaac58a7b64fb5999628ff3ff5d32b719d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7487f56a435277d9bd7ef38d361e8ad7cdf62375 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 63babc04d35adbe48add6e93386dfc838b0bbd25 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 74b69a49c2df95009ff18d820bbe7fe6ae797aae " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 63d83cb5580d3222eb5e2d7982f7f995634ba5c1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 74cc62178f9c631dc49cf09b0ff5884322d33969 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 63f1e7c7eb4d0ee635c3794993d2e2132cba72d4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 74eef5817db3984a020b2868f3c9979d0220c829 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 641739453f7d4d3b55a1c7b79bed7da6dfd62ae0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7515e494e0ac5d2d3b53151b3d10bfcf81578c99 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6421db654fff309bc191aba0330fbcd1347655e3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 75652d3d4f913e10f7edef130e3d82a03b82247f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 645b8377f905399af625a01c76ff088745fe1640 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 756d77e9fb9ed9dac1db0b1c8cdcc6e05e47329b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 646c501021c79bf6eb1a39a9bcc82e018f31bca2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 75755ae5cb0ae4f711dd15925f9f681d23408bb8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 649cf0ee983cb5792042687181ce7e4d81f090a5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 758ce3af56f75edb8faa20ef78ffda5511dffb3a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 64c572e594c2d491a902e8fdff7b617ac0c6881b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7590589db6b56b4e7db9333fba8d723b6461e0a6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 64ce7e5553de2c081991af4fc386bffdd8d2e210 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 75a242a8e6a0c453ac785fe6495d408e9650e17d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 64d1666dc1b1126bb99e3792040dff64b336ae36 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 75aa409bfe540a3ad31f8bc504131eb41128404d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 64d410e245db26eb7996c20bee1e3dfd77c43ebc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 761f683f6486e3efb606bf08fa527a4c1a51f302 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 64d55e872c2148eefb0d7c3df101fd955b709f24 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 76487a234f6f7276d8eba4edabef7623a592fdf6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 64eb970cc80162a4b80d49364f4227db3429e156 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 764deb515100de2b3d375d2689fd2c9e55eb8cd6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6531f1c311678c9247ad6820519bc7e73f56cb81 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 767c4f399ccca740ea3032eeade86851f12e7f9a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 655b880459e6e00100727af9df52b64f6d77a653 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 767d136ac4b3e33d9aa5320d941693e09648e59b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 655f952ec49cbc6176ad1bcfa45a87bd6c3542f0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 768b6302130ac824947f956e062184afaafcdbab " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6589505362ffb5164a3c7cb1b9feadcddfba44e9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7697d76245fff3d4a58fb04745c2a6197c9eeb54 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 65afd7305e481da5ffc44a6a66eb3117744ae77d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 76ecc734e931672cb80c9b9e31ebe5ec552bb126 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 65d8075993dbb2ed83dea46cd76e974352916eac " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 76fc91359df03ef449e35588909eb949e05d50d5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 660c071578cbdccb503317ecbf2fd331bc4ac82d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 774a64c60765d78b3b980ff9a6538219d6908a3d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6619768ddd830ebe29021e827961fddb78751086 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7752153d87017b85112a49ea95aa25ca78d24431 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6639deedbf04eceba6017f712b287235540b5528 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 77662d88e025c080212dd2dc4dd2030810926f40 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 663e7fc276b902cd6efb5bc944c4c7af90ca916d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 77d4480781e1e1a9d5d5c02ff53fba10127f8b6a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 665d7b4f8082be87864e6ad3a6a3faa1d52ad6e5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 77dfcf5329baff3430c0bb270ee43fcf6b216238 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 66ac31199d08e7a3b066059cd409457a850847b2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 77e8407dfe09892312213f7d6b2ad8a961b6b88e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 66ef59d5da68fdb5e55b60fc8a8a764afb021b4b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 783b1f17ae90eba0ff7728e767b56ea6885e0b28 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 66f0ed73b2d4ca3edbd23d5b669e75e4d0ffd292 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 78499fa2980dce2fde92b74421f486bf544cfb8f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 671d63b9968444308d4908eb6a26bccdf32e5e29 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 784d6f5c093ab5360670173ce001e1a446f95822 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6722929b4924f4d50ccfb999460e9a31ca104b4c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 788f18727a0aeb5e200527bca7c889c9954be343 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6730972339225220310ac8c09c0f776ae465fc87 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 78c3bbeaeb266aac1df0d4abe78bbca68fb085a8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6757865ccfef9bf8f1ba4302be9767758390fa92 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 78d8b2a1732c4528d6acdb21c236f417a0f85798 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6810347353fd417add645af90476310bbf572788 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 792276ed826b9078ecfbd51e0136962f5e10ed6e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 682cb8ad9fe4641e7a140ae3d3ee27c841ba397f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 79328fdc89d0af0e38da089dab062fd3ea5aae59 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 682fdabcfc7243e9c93108d6b2d7d3e920e81970 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7957953ca449974ec39c6a137c0acdedb71c3b02 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 68359027351be494040cc9ae6d4ccfc248fe6fcd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 798e448161e03d40712655f913464a276b6d6129 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6839920a4e7e998a8f30e6679934b91a819bebc9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 798fd96821ee3d91952373024f35cdceb10ccbed " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6868e669f4b9a77ae5227767ec455fe6f82e55a1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 79975e5fb34f3569b0d2e40d34d6f7ab1bf82cf2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6887af467b343d6e1a8125ef10eb0a630f2dc06d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 79ac297c667d2ae77c05d2af275b05138439ee5b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 68c65dc60f887050eb8cd7f946bf37aea2ade9f2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 79b2bfe9fcf1eab62e921dcc2f64b778d34802d8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 68d88fa596ebee37d7c0251c0abcd844b452cf28 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 79da19253d7fea59733d2a5276bb393918f014d1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 68f9d39b83bbc7cb4f743c8814800e6692988897 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7a0b2f8659484409af6a76d1df273b8dc66e3439 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6914f5f380c83ff9e3e90fc60d5048e47e5e77d9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7a17b28c4e274868a9f9a8430ddd12d07221396e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6951632faa6eee58b6480b7cae00ee8ea1223658 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7a2569f4daf4480ad142cb4ee7c675bed82db74c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 696ea30e2e1490f2f31b153641b2c29152ded5c2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7a5a769942efac79863bb154cf1e7574e6d98e22 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 69c6c28a67fe1b5ea32cab0f06564c59ec3fcbab " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7aabe800afb737ea6e5e6068d89c76fdbfd448d0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 69d0f8b4a9452d11620c7d3c1fa532a618d65858 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7abe8c414aa1418157c2d7ae5e70a84ffb61c027 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6a0c934ac351b40c8815d7812a2bb1b0ca30940f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7ac32e7febefac7cda0a019b2b9276b97bb91c4a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6a10118289fe7179c4e9bb6a1b466ba34c582bfb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7b1ad173c2ce60dd9f82143be5db1cbd317f8a6e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6a1d877fe1eed1199511b8f28889d8f17665708e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7b44a92a28ff5c96be7c4dae5c56a9e5fa272ad3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6a2b1a1222017169ff83695bb42bf760c8126a2d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7b4b493ac5a36d3b3fed0b66bc504206548a3537 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6a3dee1cefadc15954dafe424c73b78a3b5c1b22 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7b747e0fabbfae7ecb4e9e8261121aaa42a21cc2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ac88da4119df5e1592a05bac7ecb92af59dc1d1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7bb25e1821f1ff6ea4c85259444f7f40b430aa1f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ad3a1170ef884a884a6f340101549df624bf5a4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7bd75ddceb75724e5e9205cf7fadec03d8e1aca2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ad7afcf2d12025faf0e1812ee7a0a5d754620c6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7bd868f9aba4f89259c14358aff16d00114b2897 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ae25d59c9f771291edddc6c71d01c855883b99b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7bdc25dc79ca942673e515126e22474fd89ce55e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ae8b3afc4f6e3a26fec5eaeb2bf64727927552b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7be89fb64b3d931387e8a5b1ef51bf9cda18006a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ae9bab625e9ac8210953a7363167d6deaf194ec " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7bf8d2b77d85e4042e47d0dbe6da9441c6d9530b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6b1e10a936df3b42720ebc9179fb74aa147f8b14 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7c026422a34cb34de673a1d6702cbde67d112d27 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6b6a9a2ecc635bd8d76b00b64aeb6297e04683b6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7c193442a422da21cdeb14f681b0d4179aaeaf5f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6bd27df0dc9a3f73108de7bad443433aa5ee1175 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7c58daa09675ba2b11e69636bb78dc0d1343bb51 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6bddcd6ce1ff68320e3cc62bc215acf04de36ed2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7c6a381eac8fbc8fccada2b2069c3f773a9c6961 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6be9f2d2967566ac929c27a27de40af792a6da90 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7c70dd584df7a4fda61d08ab8ef85ec70c85b7f5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6bfbea131237606756a12f275e736045c0956536 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7c9b4e2ea03542254235893edd042a822145e504 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6c1c2177f3483086607c717d0c6c35a81d79e18e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7c9b85db0b4648d13fd8a0de2de9bebdba555fa8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6c34a6b47ef9e11e02f7675087d888c2c994b010 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7cc958be492e942df2b784fcc08a63d57c7fef92 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6c3c3119fabe838b2600e24651931f3012338e3b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7cdff0948ef64e551ad02f857acd5956d91530c9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6c5707e8b1aa9a70ec87014cd660df4a7b910ee3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7cfe9fd65c3daa43067dfc99dac2814b763b9f48 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6c91623f5a30f65110a4083897bad2882f032c51 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7d33039255c9611d0e9e0cc7e230f87ad55c007f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6c9b144f4e6dae6944b524a077dde07ac79e58d5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7d3ff63f0b0019fef80e5e3cd82de8dfbcd07103 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ca83e5d3f4544a14da513dc798f02464febdcd8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7d6713afac17551fc2628c0f9f18c41a1aa9c2f1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6cb17148d52be437332b6fd6f2fc8328bfb63fb0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7d88455cc77259c8bf17c1cdc0b24edf5667c79c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6cb9930369caf7584015d3a17c37e144d23b79ce " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7d8eeb8778051e621abf74daf43dd4010117d9f9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ce0f95767e8b1c58ff313d10f1a3eb1f9ab8496 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7de73ddcb20d0940b937323599a5094bfb26ae6c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ce9895c780428861d12440946508c6641352544 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7e29172a1d27c4f8a0b138306db1043373b2d0ba " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6cfe000a50ad8b908b3efa3af94c5df6382ff33d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7e75ea44aa7347c2f827beecb27e3bf5b1907b8a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6d6d70df4499b8595851100ffb833d397cc87a18 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7e8f7517bb0bb95011b48f1f4f4a631d4d756a5f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ded157ecd3fce79fa69c51ee9ecb4639013e6ba " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7ec62c16916c2c30847b578d2148893924287bfe " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6df1c575d7f8fdf5593f1f60d9dc540d018fc58c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7eea6a4b31c4f10281f31a7461f35af7331becf2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6e1cf196e7c8ad4226d89f3ca2c6f7949598bec2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7efac665d3dabc2162f4407e3bedbd65b3007335 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6e3d43e98d7be45ecc1863eedfeb85a4cae4a007 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7f2a2a365669c88559036ed998b074b1b9a31e0b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6e77e1cd328bb98d954043230716863c5133c1c4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7fe27d0f43c09c4070f479163e1479440c4bc7cc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6e97f4e782ca976d4890199d48fcfd64173e24f9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 7fe7a6ab57422c40c7e0e2333c3bbb6ae6a0d9a3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ea192b1d4c4577ca7511f8ce5027b31b2e0d75d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 801f08f6085a2986fb868d326c71bdcb16df1481 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ed943877a76ab6b17443e5b194012d9008612ad " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 807a48bd33ce375438dbc158c1531891c5b54a51 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6eef551288136e9fb2d9de210b14148746203472 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 80a249d17248e0dc7dcc9fb64d8ac2dd0320a544 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6ef96bc0c5b6ab5f8a4453b9cf5784fd55e3b59f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 80a56bd23287d856a653f22f57f7d1442235b713 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6f0bbfce7c5027932fb0f809494413e12a4ad3c1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 80b6a3cf5bb7cdeffcb6cbaaa10889168542a25a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6f39da8f5bbae89a13dd36755f7b3c4a30c25833 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 80ecd5087801e974eae7db730a496d2aca110648 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6f68ff31046fd15930657516873b8835fdbadfe3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8102033256a24f00a59a0f23640d379eaeaba37d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6f72c05f90d289ad239cff682d8e911cbbb416dc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 811533455c494627bb5b5802f4ed7a386f57cb1e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6f88ae246aa4af9c74732d87a758ba5ca0f40caf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8123e9dc4d43115412f07fcf9946c99d9a1a55c3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6f8ffc96f9ebe390929165e32bdc187afb7a40ce " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 81437c61aeca9becc91003af7b835dc65a3e03e4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6f93d27e20d9158285cdc0193757daa2e34190b1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 81489a0c6a71c48e9f343cb5ff8e8b5693d5df19 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6fa93aadbb6ecdc32c9111be7692ec28ec11be72 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 815f39659d787ccae06bc7d1e0564525c27b9b79 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6fb7b01c1b363390eb9188bcac05f8f11e20c01d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 816a1c7d02100fb495ab698923f8f4e550583e91 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6fbbaf9f6f49fabad4a0e47cea9e4048d8f130ed " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 819cac3befd0d7b12ffd734c26df1cdf43c376a2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6fc72a2c1ff9a11539ae35b197a79786496c2257 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 81e64ec00272538edef6336423738277647b5ed0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6fe041f1468b495d3186da906f9a5091e5761387 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 81f8c545d77d93e6cb8239e9e4a4d7f8f8beeee9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 6fff95a8d3566b2721fa46e9828b47635f13d9ef " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 820b97903732cf20dae26cdba0717220fa042a49 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 700f56e26286daf472d371effb9bca13fffa3d77 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 820d5ba2e9d91563dae39a1b02833fbef1e6d8f1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7025657232cd9bcb8fcd6edebdff268cf8e74db8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 82182d7a9c73a70f5eec58c03b1db511d7feb95d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7030cb2c62b289459e459bc54bd84c8d7e6f5a98 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8272e45483cb4cc7113b0ffad71f9218542f9cd7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 705c87b99197c87eb2ed148f8b3fdc60f8616f15 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 829a44d34a4c591b8808aa5eb283869e0fece45b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 70bd921a3d4700d49ad6b99e0cfee42c36a13b3a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 83371e1fa4720aae8035d7dc955d376678e102ef " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 70cf4c8bdd833f8c62d8c89ef50d50008457f5ac " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 83566906d8ca1b2296d7d9042e1196a1cf69ab9c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7108fee873f0120d41f469944cf1e24bd33ad684 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 839b0cad1196be563cec8e8a55184fc001b8401a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 710f61e5765c91bcf9cf2e07264771cf2feae48d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 83b2491b16c26c0dbb6aef5a9df10a3fa83beea2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 713f66791d0f23b7b7b0ec9c40b6d51f7b214c9a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 83b62e268ed5ffc26a1a97562e087791f46d3552 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 71403746b8e54a5f9b6fa1882a7ff5322180dd01 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 83c29132911949c65d508753420708e9a0ffd6ab " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 718d23058d5c805a2984c087cd89f9cb6af065b4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 83df07a7e069d0932a221e28a2d47e449ca37c3f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 71961e53698b07bfd57e9ea37067e0dd52298a3d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 83e2bd562704e16ac57589b4273d0c61775d7c9c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 71a0dd688553c753919c58d00c8e8db130726b3b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 840928fe62714fdb003b3f0a40c2c4897f9d7938 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 71c01818823d5c5fd8a3d1cb4c5db4aca51efdb2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 840959b26ce65b833d488ebb7b1d8431839fe701 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 71cbd5e4e98344dd16df8b21546439cdb0879e0f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 84316630fa8962f4753dda6e6c75625c47d19675 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 71e2b03b503dbbdc0d2e724c562b9f1c77f972fa " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 84505278558cc406dc36109deab239f1e4cf1518 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 71ef778b5cb623be033026d5a6968e49a9581dc2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 84650393df0dca7ca3244faa7ac036873d3dcce1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 71f9eafe17e974062938a6a12433ce723fe07d40 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8492f54a92f9a2a05af1a078489a3a68145d8985 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 72160b48e0995ee82f116d77a7fb23a028c10932 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 84c995b299f8d6fa0733d11f0b1a0b4414a7e232 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7217d93c1da3ae8ed085a5e6988227dcf430cd89 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 85220ed0c63891f376bee53c785b407fd9548f8b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 72205156cfb4fe412e4838b771dc9c9a8f1441d1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8525fa2b11288eda66418be4ecfcf8d7731d75a6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 724063b7a5ee36246d72923e776331487434b81a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8554d0f8fc68c84fbd8515165a3d98aad0dfab3e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7240f3408714c2dcdcb448f234efef4f08e6b2fb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 856fb7cd57f36cfcc8a2cad0cf61f9fff9696776 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 724f5400f19e5a0be97022341c39eeaaaffeb390 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 858a8d611419ced08aa85e89b75ff7baa1d9a791 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7254b9ff59ab3fcf345effdabbc25ebd2e907b23 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 85a50177266a832eca0563d37ccb03890f12c665 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 727f43500183aec9c0d9be7d2363fa1761cda5d5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 85afba0cb1eb440ed95ee5793a70c7e5d8465148 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 72a3729a9bb74378156dcd42171e39ec348c71d7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 85bd45792a3cf2116fab5e99e2d824ee804af843 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 72a79517b8f9b57f62dc1203a6b5eefadf27c088 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 86bac2d397ae2c0c178171f1f9daf7a8603c6d7a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 72b0bead5c0425173f696ff8efd7c726dcc4ecf8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 871196ccb877b7c6c7d6cafe3324fde440706de3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 72c363848fe754c23e1f9f2acc2f025666417d2d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8711e2f477871e3ca68642bbb388e7f473f25394 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 72c747d699af2733d0b93e6fa7afa0f88d05eed7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8713d28e8cf45d3670ad40829a83b1fc7cd41a75 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 72f71befa8ebb4b2c1842aec78d840b2a4abdb85 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 87489d217ddd2fa2803947a38d66a9935f64fe63 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7365085e946d2c950beafa73b8631b82010acaed " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 875280c0c54d1662b07150e728f9ac0c1af7bf66 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 73889340124f1f88859aab4e6ce36c0019a44218 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8778868ac7a23d552d93772aa8566cf427a0c1f1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 73a6e07089ee011746c1ec3146b8a1b4b82c835e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8791b58ad0dbfdf9c37d48bc60940f86c6c7e3b4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 73b467524ba4f55fd030be6b0602389b9af4fa1a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 879979038a496564beb9a0ae1d70cb20c7e6db75 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 73c6386046061350e70fbd846e7dba1428a43857 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 87a300cd25d2e57745bd00499d4d2352a10a2fa1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7421d8acd877abd9d437ad447dfae29893cd2f37 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 87add83a18a25fe585df8adc124eae6d70733f74 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7436e1a9a62ad1f40320da321698477ed8f2b577 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 87e510c4dd906ec4de0066e93b2475480fc0768b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7462e4d1834938e8a5fb975da6865cc7d6b225f3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 880070b48f04fd1c8ffafd750e1c4d37ff404c6c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 746477e7e8f093f87cb6924ab6476cda9689607d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 88139a0d01f144556ef861af4450f466081443f5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 746d9837f0fc3c989b7fe0585b8365478f1c21fc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 882b03ed3abc37b43412e8396cdf3fb8b0eeb931 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 746ecd23f1c41206dd4180a7afb032411f315d73 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 885267691bb42bc807b6e578571430a81513eee0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7487f56a435277d9bd7ef38d361e8ad7cdf62375 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8854a331f3c5ddc4ace70e0505901e53aa48e386 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 74b69a49c2df95009ff18d820bbe7fe6ae797aae " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 885a929a4baa3d32ce354f4815476530122ff85d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 74cc62178f9c631dc49cf09b0ff5884322d33969 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 88600f27cb602db290f07eb0e8b6f10488c0760f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 74eef5817db3984a020b2868f3c9979d0220c829 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8892fb3ac741bd31d9181ea72dd948e1ee0b1b21 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 750668bd25d3c4d5c8ff863185749d31978b88e5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 88be31c841a66f523045f7bd1708ce64272e4276 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7515e494e0ac5d2d3b53151b3d10bfcf81578c99 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 88cfd0e937486a6488e0e9f1fcd7ffeafcb4d6fb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 755e5b679c1bb2720590e166d5047588a0e2f8b0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 893ea11ec0c4425940d18a32acf23d5967d98dd9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 75652d3d4f913e10f7edef130e3d82a03b82247f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8949e5c946cf6ec7d1981d553972d4f3a6026987 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 756d77e9fb9ed9dac1db0b1c8cdcc6e05e47329b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8979c4017b72b970dc33095be26788f52f37a959 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 75755ae5cb0ae4f711dd15925f9f681d23408bb8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 89d8350297ce5dfc2a69e6e96afc86dba2bc3548 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 758ce3af56f75edb8faa20ef78ffda5511dffb3a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a034b07b9baf1b441c0fb0322652772973f20ff " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7590589db6b56b4e7db9333fba8d723b6461e0a6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a13b47235d2967f5a5419cb0ad8d241a750a365 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 75a242a8e6a0c453ac785fe6495d408e9650e17d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a1c629910280f8beebb88687696de98da988ecc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 75aa409bfe540a3ad31f8bc504131eb41128404d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a4183e6bb75036228a42039d678fca0ea6751b7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 75af1ed0b83b24a1d5201038a4b382d0ace6222f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a6ccd18dbc530ed34afd4a73beeff0449040c25 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 75cd5b751f530f494c224304b4024d490032e65a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a912877743b165b233303efaf502f5092b3c5b0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 75f9b79cacbfef018bb131af2e2ba0735b2640ec " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a93c1f4fb3540901374100ee96dfb892bbbd767 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 76116b26156d91b16a70f28a126ed5f05ce55548 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a9f7329b30a562837353767313df7fa9a1f31f7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 761f683f6486e3efb606bf08fa527a4c1a51f302 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8aaa277cf855a972c6dec9fc49b171ce3232a26a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 76487a234f6f7276d8eba4edabef7623a592fdf6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8ab19633328ea9e493dee313e135e7d851aa7911 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 764deb515100de2b3d375d2689fd2c9e55eb8cd6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b00c51372acb33d4714fd7e012749bf44cf7b3b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 766995b9faa25c3b2c825413e5e9a702721de7fa " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b253ba946d6768c147f5d52552e150b703437e0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 767c4f399ccca740ea3032eeade86851f12e7f9a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b30c1f058ac421b6c51c4591ef9e4adc2886b44 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 767d136ac4b3e33d9aa5320d941693e09648e59b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b37ce939cb8d42c459f5e286de980c7b62f14be " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 768b6302130ac824947f956e062184afaafcdbab " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b37d35809a85ae26de6537b3a48da7b7b62bea8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7697d76245fff3d4a58fb04745c2a6197c9eeb54 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b53f252f8558726dc0daaee84e2b4d2f0835f44 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 76ecc734e931672cb80c9b9e31ebe5ec552bb126 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b7ebe7fb16e63e2584595ee77afb19359356eda " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 76fc91359df03ef449e35588909eb949e05d50d5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8ba87aeecf944e0eb387f8f2d9e30964c9f860de " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 774a64c60765d78b3b980ff9a6538219d6908a3d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8bd94413e2d60effc2806dd7153216a1b6487162 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7752153d87017b85112a49ea95aa25ca78d24431 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8bdd4dc6dee56fb6965655425ca378f784a42b6a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 77662d88e025c080212dd2dc4dd2030810926f40 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8c395b9251d60823ef14014f6ad58b29968a1681 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 77d4480781e1e1a9d5d5c02ff53fba10127f8b6a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8c501e1c87c42c4b7765ab027bd537ef72656605 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 77dfcf5329baff3430c0bb270ee43fcf6b216238 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8c540353717db453eeb865e5b9b7f2efe6c5d5b7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 77e8407dfe09892312213f7d6b2ad8a961b6b88e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8c5bbcc6935d43c94a0c4ce4a5da01c04fd223d8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 77f4f436f910c45f216fe4d3f9b631612ed09cf6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8c6776521d0f100708ecb9f8504e572d586b8a21 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 780fc96dea7f78bb9d1a074efbd966b03d78d653 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8d1242821c2d5fc81c8e0b397d91cf75cb1b5f2c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 783b1f17ae90eba0ff7728e767b56ea6885e0b28 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8d386a409662ef68370c0c552742bd0ea6d527d5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 78499fa2980dce2fde92b74421f486bf544cfb8f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8d7bb385d6b13b0e689a1e81e29113746218ba99 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 784ca396c157df8ba93bbe1e12c6d32609ef05a1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8d91dd322c7972a13cb98461b0eb284116905887 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 784d6f5c093ab5360670173ce001e1a446f95822 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8d951b7ab0231fb1dc573433b354eac58c699c36 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 788f18727a0aeb5e200527bca7c889c9954be343 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8dab1d2d4f470c669688103f52718a7783113cf1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 78c3bbeaeb266aac1df0d4abe78bbca68fb085a8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8dcb4dd3d2fa04ffc83f7fd7f9306ae4105ef7ef " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 78d8b2a1732c4528d6acdb21c236f417a0f85798 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8de197bbdf4deaea5bd21af25c0b5c5f03b231ae " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 79163c87e1c3340d05799cf27f1e898a932d1001 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8dfdb04ef558fba84dcbfa65a6aa318b10988fa9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 792276ed826b9078ecfbd51e0136962f5e10ed6e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8e226a7f67b7c6e9d439c3627bfa5644af992593 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 79328fdc89d0af0e38da089dab062fd3ea5aae59 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8e94dd64fdbf453f06b351d6a8f77a43cc34e4bc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7957953ca449974ec39c6a137c0acdedb71c3b02 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8ea86819b4ac803bb12fd6b63e6496238aa329c1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 795912f4ca380c73a3a3c956b1cba1e9051d92bf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8ebddbd256887fb5fe1be69a46023b34f815d2e8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 798e448161e03d40712655f913464a276b6d6129 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8edad87970b31dad2b23184d864fe5ad9efb05e5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 798fd96821ee3d91952373024f35cdceb10ccbed " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8f4187ea7f2efbcd933fdb2b0652b71ecaff7822 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 79975e5fb34f3569b0d2e40d34d6f7ab1bf82cf2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8f43b11f10961dcce8eaa8340c96d10bdbc937ad " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 79ac297c667d2ae77c05d2af275b05138439ee5b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8f8b66436bade06813ec9ed4fce6774914b73db3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 79b2bfe9fcf1eab62e921dcc2f64b778d34802d8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8ff5277cdbe1417da64bfdb342747a23f5e4f956 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 79da19253d7fea59733d2a5276bb393918f014d1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 8ff7b1568d2da2e4196c2e28617e1911d62021e6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7a0b2f8659484409af6a76d1df273b8dc66e3439 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 901c9a33205897999e7e78063ccdc5d363267568 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7a17b28c4e274868a9f9a8430ddd12d07221396e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 90230730fae07c8eeb6b5bd571a119b486a21473 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7a2569f4daf4480ad142cb4ee7c675bed82db74c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 904edc7bb14e4da0172f3d58a74c8abf141da9fb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7a5a769942efac79863bb154cf1e7574e6d98e22 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9080684608701e015c764f643dc45fa939d86ed3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7aabe800afb737ea6e5e6068d89c76fdbfd448d0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 908b1f170a721682465838d0c0eca40810beb722 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7abe8c414aa1418157c2d7ae5e70a84ffb61c027 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 90a94b19bcf5aed7bfee94764acc906e889e47f8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7ac32e7febefac7cda0a019b2b9276b97bb91c4a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 90cd72030567bddbce06152fa0af1a024d542fa7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7b1ad173c2ce60dd9f82143be5db1cbd317f8a6e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 910246d4e894dbf88b09e9c1994e0f7bd563bcc5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7b3a99b69df9931fe12dfce5d8c5153f43bf4fd9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 913614cd0ae1b1210d2f1bc354b876080726f7a8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7b44a92a28ff5c96be7c4dae5c56a9e5fa272ad3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 91434e8bf241b54d98e0f664a12ecf5c9d144a8d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7b4b493ac5a36d3b3fed0b66bc504206548a3537 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 91e2f574e7ceb7f69a93011aac68903cd014a6c7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7b5a71e770bf9eed928f5e552a7659f8ad8a8b84 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 92273cf09f18534ae700c1f35dfab49faa091c54 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7b747e0fabbfae7ecb4e9e8261121aaa42a21cc2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9234bc18b3034e133fc3111f977f10d91f9d59b4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7bb25e1821f1ff6ea4c85259444f7f40b430aa1f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 92882ccad7fc3e7bc1df7dfa5954a6d591d5dbc2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7bd75ddceb75724e5e9205cf7fadec03d8e1aca2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 92931bee49467ae7468775488a8c1651795f1b18 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7bd868f9aba4f89259c14358aff16d00114b2897 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 929980ce480ca47855bdebb8f6ebef7fa447fd5b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7bdc25dc79ca942673e515126e22474fd89ce55e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 92a87c7a2f2e336f92529bc40deee614dd8b4486 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7be89fb64b3d931387e8a5b1ef51bf9cda18006a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 92d44998655e82d89a614c7b6a2f08c5fc7f8805 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7bf8d2b77d85e4042e47d0dbe6da9441c6d9530b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 92e8c16eb9a816c5944ecb76cf9af08f05930aeb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7c026422a34cb34de673a1d6702cbde67d112d27 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 92ec3b6722dde442121b3d1ed3ef23976c72cba8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7c193442a422da21cdeb14f681b0d4179aaeaf5f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9345e2de4f0476428d941c53013535fbda8a2bca " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7c58daa09675ba2b11e69636bb78dc0d1343bb51 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9379dd6ade6947a59a1786435a2d55a705161ae5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7c6a381eac8fbc8fccada2b2069c3f773a9c6961 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 940a622e8995529f6b0455906d8a035902682d2d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7c70dd584df7a4fda61d08ab8ef85ec70c85b7f5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 940e35bed3ff2b52a29e5b15acf9fe39772eb5de " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7c9b4e2ea03542254235893edd042a822145e504 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 94571a4b13c435117ef9bd914443ce9a07da8e3f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7c9b85db0b4648d13fd8a0de2de9bebdba555fa8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 950511efda7aea60b3bfae95e31683210a88792c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7cae7e5c67636a72a00785e04cc55af57b9e1318 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9538327ef9f0a8d380a473bd25114b6859acf9b7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7cc958be492e942df2b784fcc08a63d57c7fef92 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 95940316e7104e9c2d5123b31e36b2dfd12fcea2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7cdff0948ef64e551ad02f857acd5956d91530c9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9597f6d2dbabda14eea4977e2156e3ace4ede00a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7cfe9fd65c3daa43067dfc99dac2814b763b9f48 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 95dd85860bde08e1d0ecef805ad55f66008923af " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7d33039255c9611d0e9e0cc7e230f87ad55c007f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 95e73caecc0ab06beaa9b84125adcb2e6eee2eff " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7d3ff63f0b0019fef80e5e3cd82de8dfbcd07103 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 95f223f8964d294aafc2a6041a83cfa7761c31ab " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7d6713afac17551fc2628c0f9f18c41a1aa9c2f1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9629c00d91e6146b29f7559a944e6bf8dce7d0f1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7d88455cc77259c8bf17c1cdc0b24edf5667c79c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9629c9a0c98f15eec2b7fd114fa5ff9ff5c61a19 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7d8eeb8778051e621abf74daf43dd4010117d9f9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 96a6293d4fc97c75f037bdb0f73dc5b62bbfa2e6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7de73ddcb20d0940b937323599a5094bfb26ae6c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 96a80511d8ef3ffdd370a3cc9467713a538259bb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7e29172a1d27c4f8a0b138306db1043373b2d0ba " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 97011f865fcf9c57560d5ed3cb05883ff298ee35 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7e75ea44aa7347c2f827beecb27e3bf5b1907b8a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 97440beca022cd5799f76654d8bec51f62c0bbaf " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7e8f7517bb0bb95011b48f1f4f4a631d4d756a5f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 97539b673cb482cfa4d876df515270611b28f22a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7ec62c16916c2c30847b578d2148893924287bfe " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 976613cb09127a752d628c4a3cf73b8e3168e0af " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7eea6a4b31c4f10281f31a7461f35af7331becf2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 97817475213736527fdc3b2a28cd45f52fe4ce1a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7efac665d3dabc2162f4407e3bedbd65b3007335 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 97efcb1f37032ebf01b4b1065a9df66590b7051f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7f2a2a365669c88559036ed998b074b1b9a31e0b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 980f0198dc66e867b1a5d04cf24bc02fbdf3b839 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7fe27d0f43c09c4070f479163e1479440c4bc7cc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 982b2be980211b25a087a27ea5125f3788b5aa97 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7fe7a6ab57422c40c7e0e2333c3bbb6ae6a0d9a3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 982f375b183d984958667461c7767206062eb4cb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 7ff449b555102deaeea7245b5a370dd0820d2691 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 984b6ee241b92be62923c6dc5bacaadb36183b89 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8005d0a23f43613949321e9fc761180cdcd569c8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9855bcd261c7b4e11d17bf4f7d4d527b53d3b71e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 801f08f6085a2986fb868d326c71bdcb16df1481 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 98569dc166bfcfef45a66db4de1c0f34340c269c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 807a48bd33ce375438dbc158c1531891c5b54a51 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 98739af631223fa05ad88f1e63a52052a9bb4b1c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 80a249d17248e0dc7dcc9fb64d8ac2dd0320a544 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 988bd333d5dabe1561cf4429e7481ff110be0da4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 80a56bd23287d856a653f22f57f7d1442235b713 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 98b88c0751f1d9e5dc3d4751d2cb52ed8f0b008d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 80b6a3cf5bb7cdeffcb6cbaaa10889168542a25a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 98cdb5ba5725c6b2ed39fc514401fe987fc2d9af " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 80d4266aee0b8b7dca74696dde949ebfaa052535 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9916b65305d28acf75a17495b9f44d7b839b948f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 80ecd5087801e974eae7db730a496d2aca110648 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9989534524a212092e9d7fede16106b586c434f4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8102033256a24f00a59a0f23640d379eaeaba37d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 999737edf1e9740df084c4326ec983137ccd7111 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 811533455c494627bb5b5802f4ed7a386f57cb1e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 99c05d9bb9dd3b8205330e5265bc7dd94bcf87de " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8123e9dc4d43115412f07fcf9946c99d9a1a55c3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 99e8f2ea80ed1d5a78fd5236e89d404bb0c03940 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 81437c61aeca9becc91003af7b835dc65a3e03e4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9a0de0d63d44e00fc88e6cb88f4b8665db3b4b5e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 81489a0c6a71c48e9f343cb5ff8e8b5693d5df19 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9a0f0818ff9fbfd81e0d0eadeef7b85ca2d4fd46 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 815f39659d787ccae06bc7d1e0564525c27b9b79 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9a24710002a240ad32b7adb5310f4970c09cc8ca " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 816a1c7d02100fb495ab698923f8f4e550583e91 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9a425eda58b05407e671f6b86a6664eb728843cb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 817570ac3bbeab63961d78aa2fef496e87c7e056 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9a9af9f266737f95cfedbf5c8fcea22660c3f085 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 819cac3befd0d7b12ffd734c26df1cdf43c376a2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9ab3be55bd49749439f7aa1bfe2d178ad663b003 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 81e64ec00272538edef6336423738277647b5ed0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9addda4c7a9940fbbda2218ec58560c10e1df9f7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 81f8c545d77d93e6cb8239e9e4a4d7f8f8beeee9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9af196d78bf8651de03ee495e4d115be490794cf " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 820b97903732cf20dae26cdba0717220fa042a49 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9af5a1b29196f103190ab18c92704f7082c6b271 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 820d5ba2e9d91563dae39a1b02833fbef1e6d8f1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9b014aa18fb8c033458b6d5fdb351e60d16e8bce " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 82182d7a9c73a70f5eec58c03b1db511d7feb95d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9b48fd4471f6d515bed4bffa94a639365d395b99 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 823ef8523d3d3d90578d32e09e6822eb9ed42ecf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9b5b436057dfcf4299e52ad49c74e45ef04be7a2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 826c36b53a0f249c139de4aec6fb113a70af3b6a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9b6f00dd2752afbd223aad960168e4e535330d30 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8272e45483cb4cc7113b0ffad71f9218542f9cd7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9bbb726cd811fce33aecdbcce3d287c252ed71d5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 829a44d34a4c591b8808aa5eb283869e0fece45b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9bc5b4a9a81905cbc7ee4a25482068dcab93898d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 83371e1fa4720aae8035d7dc955d376678e102ef " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9bdad64c1862a8d642f398bf7bb62e22a1cd4270 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 835062d78983dae5747ab4e207d227869ce90733 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9bfd723bfa4162bb5801a6050af0a8b2db10d4ab " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 83566906d8ca1b2296d7d9042e1196a1cf69ab9c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9c0911c1a4b91f842670082c14af67d1f4b7bb6f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 837db5272d730107ae362fcd3cb2c21e5f1ea53e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9c5538a5492013e6bdbcce2a373be19fc97c4f20 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 839b0cad1196be563cec8e8a55184fc001b8401a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9c837f4e6cb572b3431b3a5065b889273712810e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 83a2a19743bb77278aba8cce1d04529d2cb0a744 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9cb91ce75745cc30995b8985a35ea31db766e54c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 83b2491b16c26c0dbb6aef5a9df10a3fa83beea2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9d004fd9a35647ba7ec169e6fedbf9dce5f9623f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 83b62e268ed5ffc26a1a97562e087791f46d3552 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9d69b6fb15c861c294878da8aaf16a531dfb1b70 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 83c29132911949c65d508753420708e9a0ffd6ab " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9d74922516d210da71d40395f17a3cef4161894d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 83df07a7e069d0932a221e28a2d47e449ca37c3f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9d91fac343dd8a7848746ca5472fb1452052bfb7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 83e2bd562704e16ac57589b4273d0c61775d7c9c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9db023b0a0d183149764d21e7f8b2b2990530848 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 840928fe62714fdb003b3f0a40c2c4897f9d7938 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9dd25a6857d92ef52169ec95a0cdfbc8570b6d99 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 840959b26ce65b833d488ebb7b1d8431839fe701 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9dd5d09e1538e12b091c35d252ee43684d0f07bd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 84316630fa8962f4753dda6e6c75625c47d19675 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9e273a94bf3c60f1c7875874c81d0b9309428752 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 84505278558cc406dc36109deab239f1e4cf1518 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9e48b3aa2c25dbbab21148bdac91b5169ce088bf " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 84650393df0dca7ca3244faa7ac036873d3dcce1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9e8e83f61559c6dcc7e870f7ccb3ab13f1224229 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8492f54a92f9a2a05af1a078489a3a68145d8985 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9e92e4e30e68bf65fb59e9f34ed4967463212df9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 84c995b299f8d6fa0733d11f0b1a0b4414a7e232 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9ebd34b96faba2fea70a50533df78a8c1dc35247 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 85220ed0c63891f376bee53c785b407fd9548f8b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9eeac17d6b28b8ab214d4164a49576ce500316dd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8525fa2b11288eda66418be4ecfcf8d7731d75a6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9ef6a972458b736cdcb1b875bf896104b3a1c74c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 853a546c5435e9eb9f2d13898755abeaf93d51b1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9f00c8665f3918e666d424ee67a2556f2651d64f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8554d0f8fc68c84fbd8515165a3d98aad0dfab3e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9f1db4144e46f913ca02e0abe2ccd5c7481e2a92 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 856fb7cd57f36cfcc8a2cad0cf61f9fff9696776 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9f43969c0777a021539b59eafdac9dd2f51422d5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 858a8d611419ced08aa85e89b75ff7baa1d9a791 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9f643e51d8e91e7e0348017d98078f078a1790b9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 85a50177266a832eca0563d37ccb03890f12c665 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9f77859f13bbe482011164f7a5e1a2a77d8596f2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 85afba0cb1eb440ed95ee5793a70c7e5d8465148 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9f86fc902ca36482d09f6c11e821b79bfc0b98cc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 85bd45792a3cf2116fab5e99e2d824ee804af843 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9fb07d3aba4e2d39eff7d31111515d7df2c981ab " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8644486ad9579f43b8c6f34b423c2c1159b20a9a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9fc918600ddb20914d93a0b979646b49530ce46d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 86906b52f5fdad0955f5a93dd26ff420e4a58078 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / 9fd5c58979d17905e46ee7b76f542f7acb54d60f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 86bac2d397ae2c0c178171f1f9daf7a8603c6d7a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a001745aa3499a11bf1cee1af077bdc85a03ef95 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 871196ccb877b7c6c7d6cafe3324fde440706de3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a0290b63e02c1785b3cc80863343076a7f3e1a7b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8711e2f477871e3ca68642bbb388e7f473f25394 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a074a30fc5c627e8093a8f860d67661df22f8148 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8713d28e8cf45d3670ad40829a83b1fc7cd41a75 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a083ea58077e52898ae8a9a4dedee4cf8de89229 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 87489d217ddd2fa2803947a38d66a9935f64fe63 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a0e80579e201495c2337292a3508b2d220e9737a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 875280c0c54d1662b07150e728f9ac0c1af7bf66 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a10775155c8eb3a834d067c0978753513d5e1d75 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8778868ac7a23d552d93772aa8566cf427a0c1f1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a1446ccd5f12ac05d1cd4fcbad5ce1d3a6cc7e96 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8791b58ad0dbfdf9c37d48bc60940f86c6c7e3b4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a151b36f390273fb440d2e35ab93acc5540bfed6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 879979038a496564beb9a0ae1d70cb20c7e6db75 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a18ed3861270cd42a661211d9d970c488fed46ad " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 87a300cd25d2e57745bd00499d4d2352a10a2fa1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a19cc971908189b5febf6fb5e8578c91dd666715 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 87a34188d51bc8b43bd7d9097958097e70154960 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a1b04c2504a75f50d47875bd1db804cef3674cf0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 87a4605e106399e71e689468a23ba11e7f17de2b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a1b0fdbc2160dfe8c1eed409eb60042c819a843a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 87add83a18a25fe585df8adc124eae6d70733f74 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a1b153e4cde45a7302094f6c751e3248d2f0fb8e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 87e510c4dd906ec4de0066e93b2475480fc0768b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a1dffc6b0fabef88188bc4c140bc2d331d73f997 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 880070b48f04fd1c8ffafd750e1c4d37ff404c6c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a1f6961a480f1eb49b394118b05b9cdabfb6f0a3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 88139a0d01f144556ef861af4450f466081443f5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a25eb9c166a097ea3afa590e3584eb9986bd9445 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 882b03ed3abc37b43412e8396cdf3fb8b0eeb931 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a2ac5153026b26fcbea42786e238b15017a684be " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 885267691bb42bc807b6e578571430a81513eee0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a2b9d39f9d1aa03f26b41f780c7a4f5ff826e6e1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8854a331f3c5ddc4ace70e0505901e53aa48e386 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a2eb6f5e20c5171e7144f177d296eb00181ce461 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 885a929a4baa3d32ce354f4815476530122ff85d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a3026496fa01a4cae2682da4b3e7cfae09929698 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 88600f27cb602db290f07eb0e8b6f10488c0760f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a3469cc29207d27c818b2299bab7e7c5dde3ffaa " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8892fb3ac741bd31d9181ea72dd948e1ee0b1b21 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a36a156c5ed8a55aec450393deaed66c0e9117c9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 88be31c841a66f523045f7bd1708ce64272e4276 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a36a34472604c8107353872e77a84873ff8a9170 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 88cfd0e937486a6488e0e9f1fcd7ffeafcb4d6fb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a380f7e56171dc69269afb6364216bc69925eb8a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 893ea11ec0c4425940d18a32acf23d5967d98dd9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a3926a25374714a71c8bd515564d294df229c7cf " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8949e5c946cf6ec7d1981d553972d4f3a6026987 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a3c40637baff1a88fe081a0768bfae5dc3942006 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8979c4017b72b970dc33095be26788f52f37a959 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a3c9b6e89b534d02bdad07207c4fdcda536f28a4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 89cdf2f9a9682277284c24819a0cd336bbb04d60 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a3cc00f1a2020ff2e2d53bc91a212b5fdbe5c006 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 89d8350297ce5dfc2a69e6e96afc86dba2bc3548 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a3d52dfd05da328d3f109d125e6c1a15470eab06 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a034b07b9baf1b441c0fb0322652772973f20ff " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a3fcf35a54c8c88b5cc1ef76e43124bb25b61ba3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a13b47235d2967f5a5419cb0ad8d241a750a365 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a404f3f4dbe1521cc977ed94ea50c49dbd6e32a2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a1c629910280f8beebb88687696de98da988ecc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a41e8b175a837b55e540874c3f056a9d9535866c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a4183e6bb75036228a42039d678fca0ea6751b7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a44288607b76ce6df9fe7e196138a587cf4badc9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a6ccd18dbc530ed34afd4a73beeff0449040c25 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a4d41bf7bce38a255a431912f6b57637645221e8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a912877743b165b233303efaf502f5092b3c5b0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a5089985010ccfa7630185464308aa5247f55de1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a93c1f4fb3540901374100ee96dfb892bbbd767 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a55fb292d4e1ffcdaf933f2dbdd8410628eb7acc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8a9f7329b30a562837353767313df7fa9a1f31f7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a619bb6ff4871fab3045e46bef8036f80d605f37 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8aaa277cf855a972c6dec9fc49b171ce3232a26a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a62960425c597cf5d2bd38e9412363991479837f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8ab19633328ea9e493dee313e135e7d851aa7911 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a64136997cd4c4be7d93f10fd6a1d12cdc22691c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8adec341bcbd14fb0bee52926141a4a5b3a885e2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a6541e0f317553947d53cfb9318367aff2898ad5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b00c51372acb33d4714fd7e012749bf44cf7b3b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a65bda38b60ae084a5dcc3b616660aa338feef17 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b253ba946d6768c147f5d52552e150b703437e0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a660e999019a7dd3e950b51d6fa8f453390fb504 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b30c1f058ac421b6c51c4591ef9e4adc2886b44 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a675a6268dee809602632cddca94ea708473bba1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b37ce939cb8d42c459f5e286de980c7b62f14be " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a6914c7bbe81fd2138bc20e63b27c0cadd0471ee " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b37d35809a85ae26de6537b3a48da7b7b62bea8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a693801403d7721b5b3d7d4525cc0b830ab35e06 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b43d6ab6c1034fba9757ce801e237da089f1898 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a6f614d434a1fe2162f7872100baef21b2051b53 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b53f252f8558726dc0daaee84e2b4d2f0835f44 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a736ade657d046ea859cf50fe1ef044e02ca38e5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8b7ebe7fb16e63e2584595ee77afb19359356eda " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a78a65e7bd4c3cf41fce74155e97a758658fe8b4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8ba87aeecf944e0eb387f8f2d9e30964c9f860de " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a78bca1ef8829d720dd5dedac3a9d4d12684da34 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8bd94413e2d60effc2806dd7153216a1b6487162 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a7ccc1f7db49512983fe4d42c16b2160357e3585 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8bdd4dc6dee56fb6965655425ca378f784a42b6a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a7d45318db68aea203c6f661f571394b649cfd86 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8c00268431d8fb83ee306f0a49bee4af8728c0b0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a8115b0be87517139447c9fefc33e225f2efdf32 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8c395b9251d60823ef14014f6ad58b29968a1681 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a85197b7cf312c8df9701404af23088f8681313d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8c501e1c87c42c4b7765ab027bd537ef72656605 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a89d59f59e43670ca3e8baf454fea723ae295653 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8c540353717db453eeb865e5b9b7f2efe6c5d5b7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a8b5f205a578696697bc1ca381e73501c3a9b185 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8c5bbcc6935d43c94a0c4ce4a5da01c04fd223d8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a8be97dcf19ed2a7786763b4edfb48ca7f2790f6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8c5d9191880e9753a747e7ccd7824483bcd7568a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a8c0a166004ee637f22f5838960c8f4320738694 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8c6776521d0f100708ecb9f8504e572d586b8a21 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a8c9f7043c578e48be49661be5207ceb9ec1b61f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8cbb67da0e40816cf4bedf4fa6ce176563fc0487 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a8d353c157cc3788a86a0d572adcc7744e7e902a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8d1242821c2d5fc81c8e0b397d91cf75cb1b5f2c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a8f87a7038125bd0e3b753c2a42ebdc3e4c75cba " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8d386a409662ef68370c0c552742bd0ea6d527d5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a9548cec37ad3c54d4bff10c9127db3638065d77 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8d54be1edc097b319d26ee1a08b1da06bafd0bbc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a967ca556a517366de03b8a9d21e991783f0896c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8d7bb385d6b13b0e689a1e81e29113746218ba99 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a96e54f84588c424c5ff2615fb0745684a11de39 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8d91dd322c7972a13cb98461b0eb284116905887 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a9772b34aba5938ee56f517134db801a158f2849 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8d951b7ab0231fb1dc573433b354eac58c699c36 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / a994ed559126fb75d245d34816a727d8585045ac " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8dab1d2d4f470c669688103f52718a7783113cf1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / aa0c7fda7faff932bf36e10d15ab2180ab1bca27 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8dcb4dd3d2fa04ffc83f7fd7f9306ae4105ef7ef " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8de197bbdf4deaea5bd21af25c0b5c5f03b231ae " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / aa6e8ab6cab71f0d7fe316a19c47fbeba5351315 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8dfdb04ef558fba84dcbfa65a6aa318b10988fa9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / aa926963580066aa503c5433dad9889fabc4ee08 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8e226a7f67b7c6e9d439c3627bfa5644af992593 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / aabcb4ea803e0b5399cb7a2cca8d28baa3f6c4ae " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8e49b880f6e9514963c8f82bc6c7131ab104200f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / aaf2bf9eaf71df9e0c597335e8d6f8c2d370b093 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8e6332b7d5234f6a1a153f91131ea33f0a5535d8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ab013aca29d6027d443e9dc0c550a26e7a23f01d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8e94dd64fdbf453f06b351d6a8f77a43cc34e4bc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ab1a75a7dec4c780749be5afa45fdb9e7e7907ee " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8ea86819b4ac803bb12fd6b63e6496238aa329c1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ab48d54113cb27083943467533d1872ec13da0e7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8ea9969bced02fd855c7de7edb12f074226f6dab " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ab4a63521f8afd81d6f5bf117597039cb02d453a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8ebddbd256887fb5fe1be69a46023b34f815d2e8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ab850ea6858b0b4798d8d8c60cf7d715b9064c85 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8edad87970b31dad2b23184d864fe5ad9efb05e5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ab8c19341f57f87c38055a9aaee515f8e65a33f3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8efa9ad7c934a3c3cc01470ee1c21d7063f7b209 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / abaca8e8237d5add7e35752471688233d265efc2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8f332e450d6a489fed2627f387cf0d0db7bacd37 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / abbd9f85ad500d55dda6009681ddffca1849b632 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8f4187ea7f2efbcd933fdb2b0652b71ecaff7822 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / abcfa029d3eb7c016a162e78e7351f64b9905a42 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8f43b11f10961dcce8eaa8340c96d10bdbc937ad " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / abd5de7b5e9218d19a57c47d2ccd6a1bc022c7fb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8f71f51eba1aba1d839b19801c594eab968a892e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / abdb7891569085e3df0f6c7a5348c12bf3dd1ae0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8f840f0a04cce56098d395939b446589ee67da0c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / abe27eee1a472ac0dafe73619602ff44bf7d0657 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8f8b66436bade06813ec9ed4fce6774914b73db3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ac386c17e9e82472939d4052ff7959aeb1d5dea0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8fba35a2ec8e2eb182eeacd23592c92932c64200 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ac59c58dd4b05b6e3c4bae4db3b39f44d12a60db " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8ff5277cdbe1417da64bfdb342747a23f5e4f956 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ac763d89466ebfad676e75be0076831c03fe2a5d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 8ff7b1568d2da2e4196c2e28617e1911d62021e6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ac7b2971ff39a368145148524511dd68df83d522 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 901c9a33205897999e7e78063ccdc5d363267568 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / acb49fc7f5d61f15e2e0b8f391678365381c5ab9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 90230730fae07c8eeb6b5bd571a119b486a21473 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / acd5d85336bff9b38196c682864dd7a4965ac904 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 902ad49db6c0518017e8438d1ee61e0841fda6e7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ad6369d2c51c4787778ff9dbd86cc6df44312f1d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 904edc7bb14e4da0172f3d58a74c8abf141da9fb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ad8f14d76933f67a10d9e8442eaa1b88b2395cd7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9080684608701e015c764f643dc45fa939d86ed3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ada998a4b5a9895f514ddbf8da775f5c59736021 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 908b1f170a721682465838d0c0eca40810beb722 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / adf1ecc62e1089054db8af9e380cd77323b62970 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 90a94b19bcf5aed7bfee94764acc906e889e47f8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / aee8da0d3f1d4f3c54bfefb5d53df17c6740fb37 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 90cd72030567bddbce06152fa0af1a024d542fa7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / af042d0ae8cd624acfa12788ffc0154e6f49394b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 910246d4e894dbf88b09e9c1994e0f7bd563bcc5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / af0a181159725d308833841738c5d14d478228e8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 91236da3b95886937ab487700d8c72b40e6b9477 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / af1fbe820d92608782360791113393055c171da0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 913614cd0ae1b1210d2f1bc354b876080726f7a8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / af321dcdfe085aae585cf48f59b51233b60df59b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 91434e8bf241b54d98e0f664a12ecf5c9d144a8d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / af990e5c81c307c188a79f4cdfdae4e8e15dc4a2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 91491f410776eb726c8a5face925c703737ed916 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / afd047f5586f07990fa2efd6c67d3a7c55099c53 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 91980bd25cd4827c2e0c9ebb028d03ef226d0e73 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / afd6dab057fcf62e73429067d983a5f442f3a70e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 91e2f574e7ceb7f69a93011aac68903cd014a6c7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / aff1fdfe79c104bce110cec92e1e021caf012fde " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 92273cf09f18534ae700c1f35dfab49faa091c54 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b05cbc7820c94bb3ee46dd3869ea39923338b4ba " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9234bc18b3034e133fc3111f977f10d91f9d59b4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b06102e16c740796a9d30e07b9e564b65f7513da " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 92882ccad7fc3e7bc1df7dfa5954a6d591d5dbc2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b0ff62377b87b846f720a70f0b7f7bdc76aa1315 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 92931bee49467ae7468775488a8c1651795f1b18 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b129aaeced0d135d8431960a3b3f85bef20f552b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 929980ce480ca47855bdebb8f6ebef7fa447fd5b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b12be9771ea0f5b687f50fa9abe5cb8bb688fa6a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 92a87c7a2f2e336f92529bc40deee614dd8b4486 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b165523f699e6ae9b2ad15873b9d56465d1af546 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 92d44998655e82d89a614c7b6a2f08c5fc7f8805 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b1e28018e26e6baaba5a907e5e6ff9b7a7942018 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 92e8c16eb9a816c5944ecb76cf9af08f05930aeb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b23f1233d0e21c4aaaebe2fe5931903698b2408c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 92ec3b6722dde442121b3d1ed3ef23976c72cba8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b2432248370f7590e894c54f2dd13fe9df9fa53e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9345e2de4f0476428d941c53013535fbda8a2bca " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b262c677b8c46262f1fc4982f5abf4ef603abe1c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9379dd6ade6947a59a1786435a2d55a705161ae5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b29d3c87c76355ce07ea4d4c354bf9d40294abb3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 939a61533db8868591c514fc41c7dfb4232e3e4f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b2a5ec3ef40c68d594638218e3c943a479f82215 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 940a622e8995529f6b0455906d8a035902682d2d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b2af0db70de3a6ddcb188d1f6f2a673133a8f9c7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 940e35bed3ff2b52a29e5b15acf9fe39772eb5de " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b2c5f4f8e2129a4201b2525cba8723241bbd8c79 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 943924f902d02a4358ba2ae693087033d30e862b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b2d1b3137b5ecdc255a76bf6206ed21ea927b6b0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 94571a4b13c435117ef9bd914443ce9a07da8e3f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b2f450dc86671548200a1fe6ee0ee76171edc578 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 946f3ee9686789790301935574f412b9cf5cdeec " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b33f833f291ebba4d777c2bae51193553c27d138 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 950511efda7aea60b3bfae95e31683210a88792c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b35f51d95f597075bb93cd9d2135870fe0a73486 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9538327ef9f0a8d380a473bd25114b6859acf9b7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b36c3e5841c6aed7b0d439bd3b9c6d922d56c70b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 958d48d95d2c2ff8b177ebd2149b9d9a89908f48 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b3776ef844b4910a2cd6d149dc13fb57bd523ac3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 95940316e7104e9c2d5123b31e36b2dfd12fcea2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b378146c4a1b41bd16319156c653534f1e391c7d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9597f6d2dbabda14eea4977e2156e3ace4ede00a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b37ab56aacf7fea7dcade26810117c45e6041068 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 95dd85860bde08e1d0ecef805ad55f66008923af " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b37f3e85a80b5dcde6b48b46f162418fd2ee83ec " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 95e73caecc0ab06beaa9b84125adcb2e6eee2eff " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b39f27387a256019038cddb91f65651c01afb825 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 95f223f8964d294aafc2a6041a83cfa7761c31ab " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b3b9e307ce3af6fa515a33668374e15fcc909ae5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9625913195b7d7a5337016e8f9a29c8f3d6ad435 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b4037205abce710935a93d656f69928ecc814b50 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9629c00d91e6146b29f7559a944e6bf8dce7d0f1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b436d6ea729dd071f87b21819cf1f32979216aee " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9629c9a0c98f15eec2b7fd114fa5ff9ff5c61a19 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b46794fb4115e84da13a79153b2ea44d89d952a5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 963c2fa0d8197bb8b6c7bbfcb43a9ae1ec29f2c7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b49df296137b4c86eef0fd5fc55bbdd1cb3c4a7e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 96a6293d4fc97c75f037bdb0f73dc5b62bbfa2e6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b4b8ba878466fc6c4e1939e38c38aa64026b055b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 96a80511d8ef3ffdd370a3cc9467713a538259bb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b4dfbd50da81516e8afcd93def813b4b813c3ae1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 97011f865fcf9c57560d5ed3cb05883ff298ee35 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b4f6d203097dcd1778f4a912cdc3af96ffb681de " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 973f74081ad8c1d91ad1b0bfc10061de72d1b1bc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b51853fe4f799f7f959922fda1b3500668a45157 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 97440beca022cd5799f76654d8bec51f62c0bbaf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b51db02b904ceee344fe48179d0c784c59ca2934 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 974be67fe5188cfa77f7db943dfdaa0a4a2c4e82 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b536cad032468c127123ee059efe977f7fe6894d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 97539b673cb482cfa4d876df515270611b28f22a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b56db2235df5a81ff15d0c07612de7eee0272304 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 976613cb09127a752d628c4a3cf73b8e3168e0af " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b5bcc7f39420e997ec6f8e3c70ef49b8f1afb361 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 976ed70e538943fc60d5b339528c70a69161d6a1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b5bec1a19e2ca2394f2c3235266c22a7167bfa5d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 97817475213736527fdc3b2a28cd45f52fe4ce1a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b5daec8e0821e8626c9b93ece56ccfef0511346b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 97b87b4a9d1846c2f2277f7291c545be955257e3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b5dfbf1965f794634249cc6be9d20d2a9fc6e332 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 97d261c920f2802c97343e07847c98afa3ff46a3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b5efe698d1ee1d878ef6db9a19d5f7c951514fae " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 97efcb1f37032ebf01b4b1065a9df66590b7051f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b61f6be57dd30d8c76aae7b966ffee26093f49ea " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 97f7a51a0bb869d09f9f1bd7a4f93c5d859c89eb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b63da75ca24aac41285dd14de6712179a3fbc0d1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 980f0198dc66e867b1a5d04cf24bc02fbdf3b839 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b6694ec2d425e8ce6ad9ff712a999fabfa5ce113 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 982b2be980211b25a087a27ea5125f3788b5aa97 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b6c47632d8d697f9f2923bde053f7a5571150705 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 982f375b183d984958667461c7767206062eb4cb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b6ce8604e3c14c6867cd2a78cef144ddd2fbb4c1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 984b6ee241b92be62923c6dc5bacaadb36183b89 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b6f721156f8dc6a353555929e459e61bab8b394a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9855bcd261c7b4e11d17bf4f7d4d527b53d3b71e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b70abef1bf2c649cf31720136a099a88cff8d562 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 98569dc166bfcfef45a66db4de1c0f34340c269c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b766e4a3e84ee0a2f57fccbc3a7f7f812b2032d3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 98739af631223fa05ad88f1e63a52052a9bb4b1c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b77ca0306f700c8c88854e73ccbdf470fba3f820 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 988bd333d5dabe1561cf4429e7481ff110be0da4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b792b464ceb568355e80a4588a3ae1b43f05a34d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 98a661d328f1ad6277c802604126d91965d6fda8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b79553c903c06619d53395ee67896c1554def055 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 98b88c0751f1d9e5dc3d4751d2cb52ed8f0b008d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b7ad6cf88b52c0d558ef6a122c67b7807a659f36 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 98cdb5ba5725c6b2ed39fc514401fe987fc2d9af " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b7c3f40ef32cd843e331fb49521c0d614dfbecc9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9916b65305d28acf75a17495b9f44d7b839b948f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b7ce7c97e81ecd2db09491172235b43340f4b352 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 99789b6e9a0932dc95b686cf380872175603918f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b7d02f4d12cd0b5442a04675e69f98fbdabc775a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9989534524a212092e9d7fede16106b586c434f4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b7f282fbd77193d822df9c8156370398e1fd099c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 999737edf1e9740df084c4326ec983137ccd7111 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b821e8d3e12441e1120723cf4eda4d939794b17f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 99bb7db7244a6cb2bc0e6c275739f051f83b335a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b86f7032cb6eae67d834bde583597ba802f5d252 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 99c05d9bb9dd3b8205330e5265bc7dd94bcf87de " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b892c064b2703ac0dc31766946be487b197a541e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 99e8f2ea80ed1d5a78fd5236e89d404bb0c03940 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b8a74cc440fbfaa2a523f20ca964976bde128fd0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9a0de0d63d44e00fc88e6cb88f4b8665db3b4b5e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b8bc377e53ca54ae4e30f437b69e270040c35f65 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9a0f0818ff9fbfd81e0d0eadeef7b85ca2d4fd46 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b8bedb9c38fd149bc494a65674a4af5e61dfb311 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9a24710002a240ad32b7adb5310f4970c09cc8ca " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b8cd185f946c392f8fb5adca4851043df849ac6e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9a425eda58b05407e671f6b86a6664eb728843cb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b8d0be707d9505c0e63253904979492c22cd9fdc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9a9af9f266737f95cfedbf5c8fcea22660c3f085 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b8e06536840e31a343b3a42b677d623bacfccd99 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9ab3be55bd49749439f7aa1bfe2d178ad663b003 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b8ea2247c5b1636148fa66fdce22ed1cc72b6bdd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9addda4c7a9940fbbda2218ec58560c10e1df9f7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b8f18df0db1484d024e41f58d15e8afb710b35ee " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9af196d78bf8651de03ee495e4d115be490794cf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b92b1c5e0dba009a9516e7185f5df019c62c5cc9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9af5a1b29196f103190ab18c92704f7082c6b271 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b9318513eb6b1db553855cd062ebbd4d1db9b846 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9b014aa18fb8c033458b6d5fdb351e60d16e8bce " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b93e4c7538558dfe92d2925646029b5dafe653d0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9b48fd4471f6d515bed4bffa94a639365d395b99 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b94adf31dbe157a38e8b3a873658b8dace55f517 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9b5b436057dfcf4299e52ad49c74e45ef04be7a2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b94cf6089a6e37c5aaac27741d61f71bbb7eeee7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9b6f00dd2752afbd223aad960168e4e535330d30 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b95899d40afc4b3ff87af2285b61ba66939873fa " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9b922c2b47217bbc8c91fce66fc666d626cee86a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b96fd7809c6f18c465e834a96dd60b43b32fac73 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9bbb726cd811fce33aecdbcce3d287c252ed71d5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b98ef7107754379c22a3ad59cffa3183e0804c0e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9bc5b4a9a81905cbc7ee4a25482068dcab93898d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b9913b354096dbe1796814e2cea80addef6ee386 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9bdad64c1862a8d642f398bf7bb62e22a1cd4270 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / b9eb50c5eb99cf0b419efa2cb8d7fdf2e71f6634 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9bfd723bfa4162bb5801a6050af0a8b2db10d4ab " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ba3d174125e7378292fcbad9bfe8129dabf88b3a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9c052499ada417d5038f8cc7da62e6acae9ba9ae " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ba46bf502f75c1e66fb89e18c270da8e5a62207f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9c0911c1a4b91f842670082c14af67d1f4b7bb6f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ba73b25c18f6fa6aeca8fca834852d3750b079d1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9c5538a5492013e6bdbcce2a373be19fc97c4f20 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ba8c20002a96d94f326dcc9a83c58241d35091c3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9c78f9e53f09be45b2dac44dc8452880e7bed04b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / baab31938837e1a3cb49ca12fb886fcbb7d48501 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9c837f4e6cb572b3431b3a5065b889273712810e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bab597264c721da916f0245906c4c471547aba89 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9cb91ce75745cc30995b8985a35ea31db766e54c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bac43cd2ed1dbf3a89a0c66d8983b586066ef463 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9d004fd9a35647ba7ec169e6fedbf9dce5f9623f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bad . bin " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9d43466b9c4b8736cde82e337d9a9f881db82d11 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bae341809e6f5bfa1d24064e2d5adc2c793f4240 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9d5d9a28271a6d21850feb249cfe27aa0a31130c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bb2affdc830241ebea35795fed3bc8d478330eec " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9d69b6fb15c861c294878da8aaf16a531dfb1b70 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bb349c691efa909b4c5412b9210e1acf4a4b7505 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9d74922516d210da71d40395f17a3cef4161894d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bb36649f74dfe7113fd1391f24d490ceae8f9b21 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9d91fac343dd8a7848746ca5472fb1452052bfb7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bb54fde05891ecc235263ad087cfd9682a25f76d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9db023b0a0d183149764d21e7f8b2b2990530848 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bb74226288b9d3a163029a25857bbebe84227222 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9dd25a6857d92ef52169ec95a0cdfbc8570b6d99 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bba4073cde10ba7abaac18d6303e310d02a47826 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9dd5d09e1538e12b091c35d252ee43684d0f07bd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bbb2429766a7c4ef9cb7110d567fd48cd6507dc5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9e273a94bf3c60f1c7875874c81d0b9309428752 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bbf053837b7e0e2adc868be62fc91248b8dce176 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9e48b3aa2c25dbbab21148bdac91b5169ce088bf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bbf7ccb14d60a1d4fa79e572464c687530ca6c2a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9e8e83f61559c6dcc7e870f7ccb3ab13f1224229 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bc2967ecf8402d442ef63ca451497431932a7e57 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9e92e4e30e68bf65fb59e9f34ed4967463212df9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bc330aa616a792ff22a8c7428dcdb4d99accbe4b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9ebd34b96faba2fea70a50533df78a8c1dc35247 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bc5e743f85f6632110277f09847381a402e1624c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9eeac17d6b28b8ab214d4164a49576ce500316dd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bc6770a9bad24599ea4970735e9b17702a12b651 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9ef6a972458b736cdcb1b875bf896104b3a1c74c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bc7f0b79a1781772d7f48e168462f99da27b03e2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9f00c8665f3918e666d424ee67a2556f2651d64f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bc8dd89f31fa5e89cabace6d7701d2a218f97aed " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9f1c4ea38c9fb86a62693f202b26b1be3c7b2d37 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bc96b9415e9bb48d27f37d91c51d10ec08139974 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9f1db4144e46f913ca02e0abe2ccd5c7481e2a92 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bc9b5b6ba4b6ccbb9e5ff75edd0df8eef9c36d4c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9f43969c0777a021539b59eafdac9dd2f51422d5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bcae3229d884c5cfc36ae28c672f9b960e30042f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9f643e51d8e91e7e0348017d98078f078a1790b9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bcc7eb464ff05cd0cd2669611776e55ca4dcb2b4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9f77859f13bbe482011164f7a5e1a2a77d8596f2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bccdc1e95be1de56746e95d167a24ba805f9172a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9f86fc902ca36482d09f6c11e821b79bfc0b98cc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bd04c9dc7eaf030313d4c87f190a9d973b96ac2d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9fb07d3aba4e2d39eff7d31111515d7df2c981ab " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bd1ed73f6cf97f980d23ff2e9f4f4e78b80bda57 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9fc918600ddb20914d93a0b979646b49530ce46d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bd459204c5fee8000abc7d895a317028351d0dec " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / 9fd5c58979d17905e46ee7b76f542f7acb54d60f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bd4786be14d852c68e605eaefa782f79064f32e2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a001745aa3499a11bf1cee1af077bdc85a03ef95 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bd585e031f586c4313c6b00e5f247f6b272ce902 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a0290b63e02c1785b3cc80863343076a7f3e1a7b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bd5c6df9c2cfaa96d768b1fe6e8fff57bf1d02c9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a074a30fc5c627e8093a8f860d67661df22f8148 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bd7314ef323557ccf3a97c1b1ba4bed0a9b24de2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a083ea58077e52898ae8a9a4dedee4cf8de89229 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bd891b3b4256f1c4207c3bbe5bd86f5e90a49ee2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a0e80579e201495c2337292a3508b2d220e9737a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bdab9cab03ad7aa611612e02775018112303d3cd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a10775155c8eb3a834d067c0978753513d5e1d75 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bde8a553b10a613c32f800429a07f0b5a2d37e53 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a1446ccd5f12ac05d1cd4fcbad5ce1d3a6cc7e96 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bdfa6991c33f312c46ac27bdd8089be1670f0ac2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a151b36f390273fb440d2e35ab93acc5540bfed6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / be0ccf7b9b4581e01a42e9cad6343c93ccf6f362 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a18ed3861270cd42a661211d9d970c488fed46ad " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / be29c4d0b6568b06c69fc339ac29890baac569de " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a19cc971908189b5febf6fb5e8578c91dd666715 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / be40890ee61e101a7429d53cd9ffd59ee600e0f6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a1b04c2504a75f50d47875bd1db804cef3674cf0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / be53fc99a0c00fb2172b6960389a78b2e2a55b4c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a1b0fdbc2160dfe8c1eed409eb60042c819a843a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / be757e0ca581bb4ec14fbba6e87569f93f4c7750 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a1b153e4cde45a7302094f6c751e3248d2f0fb8e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / be8114a7bd73ce15fe0495171234d0af526e41f1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a1dffc6b0fabef88188bc4c140bc2d331d73f997 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / becdf72b57104cede4a1fc7b7a4c97a3cbf3b7b4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a1f59f79257ae56e6e6039d3fe838ca050f40385 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bef8cedf1a792786a027114c85a89a1bef3155c4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a1f6961a480f1eb49b394118b05b9cdabfb6f0a3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / beff7e2d09ef0547a3b1a498311c665954d8baea " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a2180525f267c6d6b8f7501b100b97aef0d87f83 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bf0d70e0d09e5c2ddd79b55dbabdd58b385307f2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a25eb9c166a097ea3afa590e3584eb9986bd9445 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bf5923216eb069edaf4e135ab7ee426c04d99a25 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a2ac5153026b26fcbea42786e238b15017a684be " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / bfe2840aecee88c5301aedd16a6ac8cea0262005 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a2b9d39f9d1aa03f26b41f780c7a4f5ff826e6e1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c004d2a6d36524db9e0c18c5df6170366dd2b6f1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a2d2b12575edfb559872c4f2ce63e95fdf68b774 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c059728bdb63747b6ebb3e345ac4c5ec5f8363af " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a2eb6f5e20c5171e7144f177d296eb00181ce461 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c061aa42448363b548d90cbf4a7660fb2b043518 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a3026496fa01a4cae2682da4b3e7cfae09929698 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c08401badfe37023ba5e0e751d022616fcbefcbb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a31a10de37eda6db8ecc2270b6a368985a38a44b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c09288284e4859b8a85421b19d3c6d0109cdab08 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a3469cc29207d27c818b2299bab7e7c5dde3ffaa " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c0bb5f00fc14ea4f2000f75e6d1d94f23e6203f6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a36a156c5ed8a55aec450393deaed66c0e9117c9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c0e04f5709338a500b3be166714ed7b0013c17d0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a36a34472604c8107353872e77a84873ff8a9170 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c11e6f232cfdc5fffffa2c79150b5647704912c0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a380f7e56171dc69269afb6364216bc69925eb8a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c16876cdc8ab36ef7083bf4579849ee94239af0f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a3926a25374714a71c8bd515564d294df229c7cf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c17ca23726e7bca7b0d92398f827cfb25c7f0d40 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a3c40637baff1a88fe081a0768bfae5dc3942006 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c1937db2c3dff32ff22a53a8b76614602cf41d73 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a3c9b6e89b534d02bdad07207c4fdcda536f28a4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c1ac67facfa4ca5ad92c3eed576a59d41558480f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a3cc00f1a2020ff2e2d53bc91a212b5fdbe5c006 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c1d33a370a8ec2c2ea380472cc49172c679fa5bc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a3d52dfd05da328d3f109d125e6c1a15470eab06 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c1d84db44208d08a84084986094aeac3eebfe3b8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a3fcf35a54c8c88b5cc1ef76e43124bb25b61ba3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c2006fdf68d2a4cc0b31410d00e4dfca59315e85 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a404f3f4dbe1521cc977ed94ea50c49dbd6e32a2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c200cd4190048ba3b72b76274b2976b04110efc9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a41e8b175a837b55e540874c3f056a9d9535866c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c259fba0af17dd1636501feddd52e501b51c4137 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a44288607b76ce6df9fe7e196138a587cf4badc9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c27d7d33b13570c014385799dddf1d8805fc1735 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a4d41bf7bce38a255a431912f6b57637645221e8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c29f63aa5c4462b359c9028b6e6031dc088d7d46 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a4da7f4642cfaf355445834075d3b4d04cf8b218 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c2d14ed959df62d2f6dbe46c71489bed68e3c0f0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a5089985010ccfa7630185464308aa5247f55de1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c2eb3287f8b83c9281826e3c773ca347056ee115 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a55fb292d4e1ffcdaf933f2dbdd8410628eb7acc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c32029d5683ad5cfa1af3b534c53bc2f7f513f50 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a5be9b0f094ec76d5f082f4e06dafb5a01c066c1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c343ddb31042500e460861abc70e98ce3088ceed " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a619bb6ff4871fab3045e46bef8036f80d605f37 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c370cb2ce56d1006fea0af1a823042927c0cfa07 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a62651154d1e5c33e154ea4b57f042be89feed9c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c39dab787a7c73972a3cbd69fef3775f55c90639 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a62960425c597cf5d2bd38e9412363991479837f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c3ade78c7fea61ed2e2cd843f9c551b107ae050f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a64136997cd4c4be7d93f10fd6a1d12cdc22691c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c40e43a76f0c493414386dd90ab892042a6914d2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a6541e0f317553947d53cfb9318367aff2898ad5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c45cc40cc387134dec06733a01bde8fc44a2c9d9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a65bda38b60ae084a5dcc3b616660aa338feef17 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c467053b901e28634f7e7891ea361961d94b097b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a660e999019a7dd3e950b51d6fa8f453390fb504 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c4a63251d65cb186242e7aba5ab3d4709d3f0065 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a675a6268dee809602632cddca94ea708473bba1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c4b438b82ac86439296c31dd7de86a753034c807 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a6914c7bbe81fd2138bc20e63b27c0cadd0471ee " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c5154ce0384c3becaf12f83c51114bb3ccd0b673 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a693801403d7721b5b3d7d4525cc0b830ab35e06 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c53efcb830c4ae5cba7b3e0803635445e1469103 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a6a11f05565197ecb9cbf3a2ddf826564b425e74 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c5446cba5971d6f44ee93097a21c1b8936f4020a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a6f614d434a1fe2162f7872100baef21b2051b53 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c54b7c1255412a6d4e9608d14fbdb235a7a86d9d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a71ab47d9ad32e10acc8b9772a331cae045fb424 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c5590a6799d6633ba08cc1f75e1a7d0a54d37e68 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a736ade657d046ea859cf50fe1ef044e02ca38e5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c56726277ddeb233e30b6223158042aafb944191 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a78a65e7bd4c3cf41fce74155e97a758658fe8b4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c58819f4e12e3ee2ce3adb89b6f93567db2d5c8a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a78bca1ef8829d720dd5dedac3a9d4d12684da34 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c5cd7af16e7bc0049445d5a0b92a3d4b7e5e3533 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a7ccc1f7db49512983fe4d42c16b2160357e3585 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c5dbc50d9174bde5542b2bb18c63f6583a23ff13 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a7d45318db68aea203c6f661f571394b649cfd86 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c5e5b4c1e4e2bae55c1355950c3c7a593cb3fc04 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a8115b0be87517139447c9fefc33e225f2efdf32 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c5f36039c543bb52b1b2ad235934790c4c34dccd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a85197b7cf312c8df9701404af23088f8681313d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c5f3e7e54fb624b5f5436e1101fb8dd74d2dac19 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a881a2dcd16f595644c1543ccf047b7ae5bb7fa4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c604f2a6f2a3c2f38e8cf0ce99c78e2750a83454 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a89d59f59e43670ca3e8baf454fea723ae295653 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c60e077197a6659e362fba14ff9e4eacee647674 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a8b5f205a578696697bc1ca381e73501c3a9b185 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c649b5285bd40e0614cb8b8b4001b80c3d3cb4a5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a8be97dcf19ed2a7786763b4edfb48ca7f2790f6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c6733483e94f755f1cbf796f8aa3d10a2c371aa3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a8c0a166004ee637f22f5838960c8f4320738694 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c6932577ed27915bf469939c61b1283354308a68 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a8c9f7043c578e48be49661be5207ceb9ec1b61f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c69863dd21c782e609d6ecdb9150f887a0f39989 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a8d353c157cc3788a86a0d572adcc7744e7e902a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c73e85bdaa195d9659ae9b08995a9fb716f9c92a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a8f87a7038125bd0e3b753c2a42ebdc3e4c75cba " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c73fbc2e78f496b5666da99bccac9445ac9feeac " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a9548cec37ad3c54d4bff10c9127db3638065d77 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c76a1cca503160ca659aad6f7a05ca8fe5db439e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a967ca556a517366de03b8a9d21e991783f0896c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c77bd1e9d9be2b6d1362cbb15f63cf749aa113ea " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a96e54f84588c424c5ff2615fb0745684a11de39 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c7c13a37189ce2482f5517f6ef0903431194e11b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a9772b34aba5938ee56f517134db801a158f2849 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c837e4dc49146de843c9556c1b3c886abb552db7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a994ed559126fb75d245d34816a727d8585045ac " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c845faac6d4b713a232aa3a6749afdf4e58d7f6a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / a9e6f164e912d8964ae28f383dca6d980dcd4b94 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c8b5d9fdb7ade3538abb794a3231d5777a1640a4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aa05527f894960d22773d0e1c96e8ad9293e3910 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c8ccc96fa43f1446ca99e81e7440a3542b3a6ee2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aa0c7fda7faff932bf36e10d15ab2180ab1bca27 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c8e01950d56d7c8d08a5cce94c6306c03a135219 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aa103991d1d90adf0af592c050c1d39532690f73 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c8e12ea9590ffbf0d6a10a582338856fa217ff6d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aa26dbb6bb031702e07e82a70162de89e31dbb60 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c8f0972dabb904bc6d35ed576fc9a49eb2ed5273 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aa2b2a1240b9ddfba14035695084096f93a4eea5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c90aaaf79d46aeaf533e62dab54506d8ab2a3e5f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aa58c60840b27f80a9779d2f4fc76154e12b7dc5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c918b9e3e9cdfdb21d94ef0fba85b25f3ed9d098 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aa682b09b1e785fe0ed7edc6b14a4e8e5282e043 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c93f16b5b678d3019eb05bd0774598e7d34e9b3b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aa6e8ab6cab71f0d7fe316a19c47fbeba5351315 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c957b37c99c5bb22b2c1f6dd050c57e685505599 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aa7e9b09e36bec073300d107795b7dc63eafbeb9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c978dc651b961f2d48aad95b40ac761b3467f212 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aa926963580066aa503c5433dad9889fabc4ee08 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c97c41c0c76a901f458bf9b4d785fb53fe8a2980 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aabcb4ea803e0b5399cb7a2cca8d28baa3f6c4ae " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / c9bda5eb1a93526b4809d147647cc78452988e29 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aaf2bf9eaf71df9e0c597335e8d6f8c2d370b093 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ca086cf78308275212c52012f06edf3b4152204a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ab013aca29d6027d443e9dc0c550a26e7a23f01d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ca418a61964cb360014b574fe29aa20b193df04f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ab1a75a7dec4c780749be5afa45fdb9e7e7907ee " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ca54a837cfaf7edc71961ff1fe52d4c3cd86675e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ab48d54113cb27083943467533d1872ec13da0e7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ca5a1e4fccc55aa977b841d8d67e6991a4371860 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ab4a63521f8afd81d6f5bf117597039cb02d453a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ca6add6699d063e2212335264ad3e004327afc1a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ab850ea6858b0b4798d8d8c60cf7d715b9064c85 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ca6b20544c093b14703410d792c8f73e73205bce " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ab8c19341f57f87c38055a9aaee515f8e65a33f3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cae359a6dabcf11786350360c2cd2aebf0b7a094 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / abaca8e8237d5add7e35752471688233d265efc2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cb9a688f0dbc2015c77920f344e2d029c87384ff " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / abbd9f85ad500d55dda6009681ddffca1849b632 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cba1122fd86ce20b417cb34edc294f19f1303faa " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / abcfa029d3eb7c016a162e78e7351f64b9905a42 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cbace6de751ef04cd6c12f74f37c5bb3e3b0b219 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / abd5de7b5e9218d19a57c47d2ccd6a1bc022c7fb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cbd7f8b4148a1cac0c012afd3c73baade2dc572c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / abdb7891569085e3df0f6c7a5348c12bf3dd1ae0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cbde71efff4119c58459a93b2e1692182521b960 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / abe27eee1a472ac0dafe73619602ff44bf7d0657 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cc1b857893cf971cf7783d53d25693e642b03eff " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ac386c17e9e82472939d4052ff7959aeb1d5dea0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cc34f9a0d85a22556faffadf90182f7c44bf168a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ac59c58dd4b05b6e3c4bae4db3b39f44d12a60db " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cc7087fd7c7398e7c2afe3fb03e705262b5e843a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ac763d89466ebfad676e75be0076831c03fe2a5d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cca20202993dda83570ac83c0b1967ce225c78b9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ac7b2971ff39a368145148524511dd68df83d522 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ccdff5940d61b708f67fcc55dc26ac1ad4f4c298 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / acb33ec3207ddd5f641f8f989faa888bcc70385c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cd0e7c4cd361b786b6f27c481ed601fd373cb221 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / acb49fc7f5d61f15e2e0b8f391678365381c5ab9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cd4272fec464c45438dce72eb9381971ed0207de " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / acd5d85336bff9b38196c682864dd7a4965ac904 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cd4ccfa79f65f31716296e690f3a76007edde2e3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ad6369d2c51c4787778ff9dbd86cc6df44312f1d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cd4f2c59f0cf55d9a73fb0b96d701c784c446048 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ad8f14d76933f67a10d9e8442eaa1b88b2395cd7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cd5982304e5979e6056a77c4053b232e0963e0e5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ada998a4b5a9895f514ddbf8da775f5c59736021 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cd779b587b80719e2838853c2eac8d4595c0faa4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / adc78556e789c046d7f82b77e967a9e7fdf6cdac " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cd7cf401276531cea7e4221f249f527f231a5bcb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / adf1ecc62e1089054db8af9e380cd77323b62970 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cdc064f39a9a67210b1be6b195d38d5d0d73eaa0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / adf88d50a752961142e1a3fc4eeba380e6089a5f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ce02561c4cfd1ec7e272cf81678149350f8a066c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aed35edde0a0395829c43b45a34f537b9c6fc23a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ce6a90cb7d395fea7aa54ee9f7061cc45f5494d7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aee8da0d3f1d4f3c54bfefb5d53df17c6740fb37 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ce72561eada7f9b9e8b0f0e658ccebb4f5b983d6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / af042d0ae8cd624acfa12788ffc0154e6f49394b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ce95d2fc5b099365cd781aa7e2b297ac92a215b3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / af0a181159725d308833841738c5d14d478228e8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cea57d6a128cc7cd195cb2390bfde28047d6acf8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / af1fbe820d92608782360791113393055c171da0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ceecce905981d8291a79fe32f89e8be688dfee7e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / af321dcdfe085aae585cf48f59b51233b60df59b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cf26c6969c0f649a2ccd780edb8b3dc314ff7701 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / af990e5c81c307c188a79f4cdfdae4e8e15dc4a2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / cf3fd86be6611e52e7a3faefd2d1e0082c3a8859 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / af9d0bbc10db557c0ef9ab55a6f217b4f76a87db " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 0597bbdd657fa4ed14443994c9147a1a7bbc205f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / afd047f5586f07990fa2efd6c67d3a7c55099c53 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 0a0ee428270236e707457b9560a91c233ed2326c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / afd6dab057fcf62e73429067d983a5f442f3a70e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 0b1b50227d01f99998b01ed218f5d4dc3839d44f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / aff1fdfe79c104bce110cec92e1e021caf012fde " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 0f6e7b5dd0ad53297bd9daa497dbf851b5385b16 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b05cbc7820c94bb3ee46dd3869ea39923338b4ba " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 113a1e09a1c0787f1be875c6cdcf4415f8155ee3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b06102e16c740796a9d30e07b9e564b65f7513da " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 14359c8f754c2ecdae21deeeec033ae10360033a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b09e64aa807db006a219bd1b9faf1a2e00dc6d33 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 15070b2a2719ed8a6cbbaac25da02b7085993648 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b0c9bc430c79f064b61d8cad076b072c9c014804 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 168a72ed6115591c637fe99f50cac5e6bf7ded79 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b0ff62377b87b846f720a70f0b7f7bdc76aa1315 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 17ad251e24eaa152ded652bfe04d656fdcad28c4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b129aaeced0d135d8431960a3b3f85bef20f552b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b12be9771ea0f5b687f50fa9abe5cb8bb688fa6a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 17c0775f8b51f7b8742602e4321ac5827e64e3eb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b165523f699e6ae9b2ad15873b9d56465d1af546 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 1b9aeaf762bb1a972dda8f3a455df2628efd693b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b1e28018e26e6baaba5a907e5e6ff9b7a7942018 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 1bc1a02532d212c8975e0cdcd5127c98fcaf752b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b233e6287f4208a2ae8f89fe25caf0a33b7b4e51 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 1bf04a83c67f216c7643d69677da5e6cbc708d88 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b23f1233d0e21c4aaaebe2fe5931903698b2408c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 212c3b09f310867e1e8ffa7faecac75c12f4cda3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b2432248370f7590e894c54f2dd13fe9df9fa53e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 23a35ebad0178cc632fd62f6852d2f6fa5d1fe32 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b262c677b8c46262f1fc4982f5abf4ef603abe1c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 24bb600e0530fcce70d21fece0cd70056ed8a6b9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b29d3c87c76355ce07ea4d4c354bf9d40294abb3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 278279ec7b937b1c944029bc57ae0ff0fbb13415 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b2a5ec3ef40c68d594638218e3c943a479f82215 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 2cc124fe461b11185467384aebe18711f28bcfb7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b2af0db70de3a6ddcb188d1f6f2a673133a8f9c7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 2ccee0e61103a767acec12b9146d478202b93b27 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b2c5f4f8e2129a4201b2525cba8723241bbd8c79 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 2f1092c48db455fbe1ae5e275f8d221dc8c52f00 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b2d1b3137b5ecdc255a76bf6206ed21ea927b6b0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 3699c47aaa794b48df814bd3b5a982c377063bc7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b2f450dc86671548200a1fe6ee0ee76171edc578 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 404a40c85b887a53235484f4620da325872eca49 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b33f833f291ebba4d777c2bae51193553c27d138 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 40e0fcf83e934a4ea2d31c009e9dfc1e68f11f3a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b35f51d95f597075bb93cd9d2135870fe0a73486 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4195e7f3655955a8b386d1b17ab855c08ebec548 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b36c3e5841c6aed7b0d439bd3b9c6d922d56c70b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 41ad52e1376596e9ac3c22be039975e223645b4a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b3776ef844b4910a2cd6d149dc13fb57bd523ac3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 42d2e80906545a50b4b5b37278132b764296c031 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b378146c4a1b41bd16319156c653534f1e391c7d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 43f9633b24fd27f1bbe8884ec506197e52001797 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b37ab56aacf7fea7dcade26810117c45e6041068 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 454e9d66253c206916e1bea69bdaabd8bb8c982c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b37f3e85a80b5dcde6b48b46f162418fd2ee83ec " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 482e9bdce0e13df2a77eef75a1c07d38ee28f4ab " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b39f27387a256019038cddb91f65651c01afb825 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 497e1c1554a8e021ba6c02ffdd2a4d809669c60f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b3b9e307ce3af6fa515a33668374e15fcc909ae5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 49c4f247eb2aaa8f4474aec363e203e557948bc2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b4037205abce710935a93d656f69928ecc814b50 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4ae4941b4c3f857966a0e3c05f789a0a5ae15bbf " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b436d6ea729dd071f87b21819cf1f32979216aee " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4af36327fb381a5e5af2072f038a10e36368bdd3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b46794fb4115e84da13a79153b2ea44d89d952a5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4d51faa099fbe0900fcf30461a6be12dc80dde16 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b49df296137b4c86eef0fd5fc55bbdd1cb3c4a7e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4e19149430212fc0ed7be30854bfe538572d33b6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b4b0f04d9a771ea9575d9cc484947fcadf4ef5bd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4e297b6205976cf94c8ccbcbf12277efb8ade986 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b4b8ba878466fc6c4e1939e38c38aa64026b055b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4e4d7a383785c83b78ed6597bfed360079a49a08 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b4dfbd50da81516e8afcd93def813b4b813c3ae1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4e6ec3d9abdaf620dad4cd2f2c206c29e8d9ecc8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b4f6d203097dcd1778f4a912cdc3af96ffb681de " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 50e18d167be26c8e19877d88e9b53591f4c8b029 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b501cbf4c085ce0b75e4031810bf99f91905fb06 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 5827f4af3145108483e4f410e1427e7a41c4d3cc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b51853fe4f799f7f959922fda1b3500668a45157 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 5854cfbb68190f86a40492c5ca8e15c0fc062168 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b51db02b904ceee344fe48179d0c784c59ca2934 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 59e58120d4f37a833a79e68372c4eaf361a92240 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b536cad032468c127123ee059efe977f7fe6894d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 59f857e19c386154d65c48a72cf1e4e69aefd1ba " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b53a90f0ad5e8026e0354e149ed8b4782fda00ad " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 5ba35fa4177ca59450b597dd1a2d48f8a68959dd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b55d66dbf3f2b795062e5a53379c2f63cab17062 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 5c52df7b4025baa05218c14a3cd535914445c42f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b56db2235df5a81ff15d0c07612de7eee0272304 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 5c774460d2dc7ae9d471ef4b87609b13e4e95219 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b5bcc7f39420e997ec6f8e3c70ef49b8f1afb361 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 5d73de981fb75553a7b2606e111716ee9f2af844 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b5bec1a19e2ca2394f2c3235266c22a7167bfa5d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 603222da20c147a532188e80fc1a26e4e8bc4bee " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b5daec8e0821e8626c9b93ece56ccfef0511346b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 60a3f7ed4abddaa6a7c837ace86d048fa15e288b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b5dfbf1965f794634249cc6be9d20d2a9fc6e332 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 6db86c556caf542fe8c3345ef396467b1d609d32 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b5efe698d1ee1d878ef6db9a19d5f7c951514fae " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 6f1b8715edddbf0aa17fe9ee0fbf02ff7c92807c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b61f6be57dd30d8c76aae7b966ffee26093f49ea " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 6f5c899196cb31232d2d6694be43e1ac0a662f48 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b63da75ca24aac41285dd14de6712179a3fbc0d1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 6fad807070626f184704ea082667ebe780369f74 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b6694ec2d425e8ce6ad9ff712a999fabfa5ce113 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 72ab4efc255cfc55ed03c1002187a68e2e18e33b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b6c47632d8d697f9f2923bde053f7a5571150705 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 775a43af5d81808d1ccbcc43aec12ce14aed8a53 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b6ce8604e3c14c6867cd2a78cef144ddd2fbb4c1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 787fc772315a87e40b63fbc25fb703a87581f0e7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b6f721156f8dc6a353555929e459e61bab8b394a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 7a4ce28ac085ce3763fe91e24bdd92914d134a3f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b70abef1bf2c649cf31720136a099a88cff8d562 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 7c6eb73a27b693a346f309370e965d0d62048503 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b766e4a3e84ee0a2f57fccbc3a7f7f812b2032d3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 7ca23a3e10cdbf579cf81a50e51af358f86631eb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b77ca0306f700c8c88854e73ccbdf470fba3f820 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 7dd4bf6d825fb4e9a43506aff001119c7e8f00ac " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b792b464ceb568355e80a4588a3ae1b43f05a34d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 82b2ae1d2174f5782b32c89ce60f68bf5a30c0e1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b79553c903c06619d53395ee67896c1554def055 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 83f6929c001d26c25c5d0f63ba0bcc099b9959bc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b7ad6cf88b52c0d558ef6a122c67b7807a659f36 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 85fd89292e43c2a2338f86e46d10fffb6f85ed88 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b7c3f40ef32cd843e331fb49521c0d614dfbecc9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 864c58c601ce89a5191fc6e665dff0812a6e4bfb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b7ce7c97e81ecd2db09491172235b43340f4b352 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 89e1b03278bad9790ae0f8614a8389414d1eab37 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b7d02f4d12cd0b5442a04675e69f98fbdabc775a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 8ab0b6e57b90ab4c6b8d5de8278464eb428f4668 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b7f282fbd77193d822df9c8156370398e1fd099c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 8c44d14673d21592ff930297b2307096d9f7136f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b821e8d3e12441e1120723cf4eda4d939794b17f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 8e2e3975a865fb107fff8060f4f949aa235727d5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b86f7032cb6eae67d834bde583597ba802f5d252 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 9137b1dc16097e720a1837a2117f43b940180f3d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b8845fbdf002c64053d7fa3e60add56f0a030992 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 916f6ab61cd358be9a241e2eb09851f700335eda " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b88619bb22a3b2585cad3ace194fcdd8c6b63104 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 91964f1b7d1bc2460d93775fb64c7e6f737ce634 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b892c064b2703ac0dc31766946be487b197a541e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 949b13ffa41b1c202fd74d4c9cd45e840aa9d0f6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b8a74cc440fbfaa2a523f20ca964976bde128fd0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 95e740aca3d281f30929d51a628cdfab4ca863ad " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b8bc377e53ca54ae4e30f437b69e270040c35f65 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 97ec5404605d0d7bed44c2b845e06f6d9479c152 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b8bedb9c38fd149bc494a65674a4af5e61dfb311 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 9862337313ff89e8dd6fbd6f870a568ec4bd6ecc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b8cd185f946c392f8fb5adca4851043df849ac6e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 9b205954747d5f120b36e004116fa2fe22cd5105 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b8d0be707d9505c0e63253904979492c22cd9fdc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 9c2cf43a9cdba7a35485fadb0b0424a88f7d7b8a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b8e06536840e31a343b3a42b677d623bacfccd99 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 9e53b8c6ea7f6ae5c53e5834c50eac8e9f33259a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b8ea2247c5b1636148fa66fdce22ed1cc72b6bdd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 9f50180d69973cd2187ecba50fc2894edf6a341e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b8f18df0db1484d024e41f58d15e8afb710b35ee " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 9fd80ce4eeb83cdea4eedd9995ffc53d640e692e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b92b1c5e0dba009a9516e7185f5df019c62c5cc9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - a15f2c17a8fa204f3183fd7422876f28ef7c85ee " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b9318513eb6b1db553855cd062ebbd4d1db9b846 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - a21d5f69a1433ba0580840405fbd66f3b3569104 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b93e4c7538558dfe92d2925646029b5dafe653d0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - a2ff9a686f9775c715870fa2f25b600471ca8c01 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b94adf31dbe157a38e8b3a873658b8dace55f517 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - a6224f954d8234d45e6f6ea27aca4d65ca77b6c7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b94cf6089a6e37c5aaac27741d61f71bbb7eeee7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - a6ec7e9fef2e54036de257f5e7da3e87ea1f39f2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b94e1db2cd1236075bb8772b72c64991d442e584 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ab3ecf04012140fdabae0d037189eedb24516d04 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b95899d40afc4b3ff87af2285b61ba66939873fa " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - b39ce8e62e5c9e046d67e946436609e01f067a53 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b96fd7809c6f18c465e834a96dd60b43b32fac73 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - b479e66d221f3db92c31b6b6aace69599f648d51 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b98ef7107754379c22a3ad59cffa3183e0804c0e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ba2c1509ff87865d9e23c056b9c7fe2732825ef0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b9913b354096dbe1796814e2cea80addef6ee386 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - bac7a77b50e53ff71b0f52ce635e64ac15a787dc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b9a7faa77ddf3a7e206e4d06f5d9d8de7d9c7df8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - bd17ab1e7e9328739f455641e8dfa11951ac742a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b9d799eb148e4d8a8a235e385ca8302a8acc3896 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - bebee7dd27c149af9e7b573300c686969fde9eb3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / b9eb50c5eb99cf0b419efa2cb8d7fdf2e71f6634 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - c0413dd6857d1ed3e5484df5e70656356f3c997a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ba3d174125e7378292fcbad9bfe8129dabf88b3a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - c1a4c1aa8b4f1b081993f93ca92a1136a7302be5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ba46bf502f75c1e66fb89e18c270da8e5a62207f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - c42d2add77ba492df95cfaf2e4e08e56818368ce " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ba73b25c18f6fa6aeca8fca834852d3750b079d1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ca8aa113c22037a2a552c1763f845609d555ef9b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ba8c20002a96d94f326dcc9a83c58241d35091c3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ccb9f8221fd8fcacc5fb4a3c251fc06104027ddd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / baab31938837e1a3cb49ca12fb886fcbb7d48501 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - cce6ffed471344173c135e536b454f469bd07e03 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bab597264c721da916f0245906c4c471547aba89 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - d5b0e587cafc10b7878bc691b6fcb7c1164e7558 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bac43cd2ed1dbf3a89a0c66d8983b586066ef463 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - d61454675241d9df9049f5bd57f47326059d7132 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bad . bin " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - da39a3ee5e6b4b0d3255bfef95601890afd80709 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bae341809e6f5bfa1d24064e2d5adc2c793f4240 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - dc6abf90d5e8e1b96f7e25f418b1a7f572e6a738 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / baee7b89cd2017f450c37137628688f25979b3bb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ddac3b604ee6d4a51161a267b688a3b72fb6768d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / baf7b33805daf027e037e406d3442b3444108ac0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - decf36e136646eb3ab44fc4c5f327ccd99ddea88 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bb2affdc830241ebea35795fed3bc8d478330eec " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - e45753da8952c41715a65010250efba0a4a4d243 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bb349c691efa909b4c5412b9210e1acf4a4b7505 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - e4d4b51cc7731d12daee738c4b81158a03302ebb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bb36649f74dfe7113fd1391f24d490ceae8f9b21 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - e7930097a989131890a316b0b1ed85801699562b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bb426bb115461f351e57f64c0378e331f74ed5fc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - eb5d258a429fa9c20f8513211a33100abd5f8f3f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bb54fde05891ecc235263ad087cfd9682a25f76d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ed3086c0ca03a427fca1817b52a4d6530fb4096b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bb74226288b9d3a163029a25857bbebe84227222 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ed7959740df2fdcf62626e370dcd7eb43963731b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bba4073cde10ba7abaac18d6303e310d02a47826 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ee032544a2c1487469cc17f870043f4d513999f7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bbb2429766a7c4ef9cb7110d567fd48cd6507dc5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - eec019a7a40f5d8f8c0e9c72215286f442a9b150 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bbf053837b7e0e2adc868be62fc91248b8dce176 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ef09afe157880d7f363fb87f6bc194ce1a72554c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bbf7ccb14d60a1d4fa79e572464c687530ca6c2a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - f0c7e2cc8f8587bcab636a63191b2fd37e0cf8ae " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bc2967ecf8402d442ef63ca451497431932a7e57 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - f40dcae7e7cc52e44d49c7fd5452e33a77ef4499 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bc330aa616a792ff22a8c7428dcdb4d99accbe4b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - f8bf4b7d89c07d661b695a3e4fdf269b853fe168 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bc5e743f85f6632110277f09847381a402e1624c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - fb41c97305a2c94d367e40863dc046c8f78a57c9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bc6770a9bad24599ea4970735e9b17702a12b651 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - fc088cee74d4e8dd791291b5575fc0fe9fe7378d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bc7f0b79a1781772d7f48e168462f99da27b03e2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d00326f1b0a93acb1cb7fe02ba0342cc6e1875e6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bc8dd89f31fa5e89cabace6d7701d2a218f97aed " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d02fb86e7e236a2253a2eadb0599f5dc261e4048 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bc96b9415e9bb48d27f37d91c51d10ec08139974 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d0541179f78beb9037070ca52969526b83eb608a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bc9b5b6ba4b6ccbb9e5ff75edd0df8eef9c36d4c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d05a854e44c9c6f0dd0c58e6bd305e6fe48c32f5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bcae3229d884c5cfc36ae28c672f9b960e30042f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d0692d73e38ed8c154ebddd627ce99890a1cf798 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bcc655cbb7334db02fc7fe9d29bd49fd6ee4ee91 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d07965987a51541498871433e0fc6313884569d3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bcc7eb464ff05cd0cd2669611776e55ca4dcb2b4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d079f5c8a10611dc655cef33f73100f5f43787a8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bccdc1e95be1de56746e95d167a24ba805f9172a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d0fcc9d6dc91ead9fd27f0c613ea031f21fb4de4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bd04c9dc7eaf030313d4c87f190a9d973b96ac2d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d107d21374f4dba27f173d4edd5c8009e3b0f8c4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bd1ed73f6cf97f980d23ff2e9f4f4e78b80bda57 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d110d5d3a672bf483f230825e735d372b0b2c1a5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bd459204c5fee8000abc7d895a317028351d0dec " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d17e7451bcef39ce542d84f2539f9586ea35f21e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bd4786be14d852c68e605eaefa782f79064f32e2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d18b2a1520207761100992c88b50f6b410c62184 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bd4f7f4d43ceaec0429ddc248cd438284813cc64 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d18b5e648be40b0ea52fc8b10bcbae9bd4325f0e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bd585e031f586c4313c6b00e5f247f6b272ce902 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d194d6aa501f75ed24fc399ee594fb77341e5d38 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bd5c6df9c2cfaa96d768b1fe6e8fff57bf1d02c9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d19a252c00c74403389fe9e057cffeee39a4d2e0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bd7314ef323557ccf3a97c1b1ba4bed0a9b24de2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d1ade96319d9de82cf3b0480d226a5ad9f31eaa1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bd891b3b4256f1c4207c3bbe5bd86f5e90a49ee2 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bdab9cab03ad7aa611612e02775018112303d3cd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d1b53c2a386259ce958c34e2cb281514e14e0d03 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bde8a553b10a613c32f800429a07f0b5a2d37e53 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d1d35a1d2148c62c6021479d4153e65511b33cc1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bdfa6991c33f312c46ac27bdd8089be1670f0ac2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d22287b96b3dcb840fc65e4be60e409fb0f6bfe5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / be0ccf7b9b4581e01a42e9cad6343c93ccf6f362 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d27e050b2758f6658d166b0d30e9db9595388ef9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / be29c4d0b6568b06c69fc339ac29890baac569de " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d290717010121ba2745e551e7a80be6e9f6d59e2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / be40890ee61e101a7429d53cd9ffd59ee600e0f6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d2956eabd7b8b9d6b136731a3a4fa077f184aa13 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / be53fc99a0c00fb2172b6960389a78b2e2a55b4c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d29cf6979d8d58b4cb779a629ebee62d7e42fc9b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / be757e0ca581bb4ec14fbba6e87569f93f4c7750 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d2a63dcb354906d4d67104ba2a1f5e97a6196183 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / be8114a7bd73ce15fe0495171234d0af526e41f1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d2c828ee88b3e352fad3263f1e1ff901a41fc7a6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / becdf72b57104cede4a1fc7b7a4c97a3cbf3b7b4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d3089d3ef9be14080abc156e5f2128c3c1a2f23a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bed4e119b86e8dd0a6c60cb96cc2f9e66d0a8857 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d3090a5221ea984dc474c3fb448b71957f8197a4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bef8cedf1a792786a027114c85a89a1bef3155c4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d3124f8fe39ebe943d0d5a7087a51d7e852505bd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / beff7e2d09ef0547a3b1a498311c665954d8baea " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d333dc3999c6dcca82d85f72e65e10c07f12d978 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bf0d70e0d09e5c2ddd79b55dbabdd58b385307f2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d33e33320e5165dac72007845a86a9709d75c42e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bf5923216eb069edaf4e135ab7ee426c04d99a25 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d3bec93d378e7466bacd95be431500ed30cba449 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bfafd0d497ccd035d6ef1478509c93a9d2443513 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d425e534ec074932b5cf4dc9a6cf4fc0683fd690 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bfb3ae60341e80c10de105fa0f9a01f134033225 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d48a5cefe695d0494df4540ea395dcdd90a332ef " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / bfe2840aecee88c5301aedd16a6ac8cea0262005 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d48c4a56dc90b16a14dbf9934fc3ce7c9706104e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c004d2a6d36524db9e0c18c5df6170366dd2b6f1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d4a7be7c4a826d8151d5d7c1c781143baf90ff28 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c059728bdb63747b6ebb3e345ac4c5ec5f8363af " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d4c3ed789ef8a888244504601964f0a0c994a66d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c061aa42448363b548d90cbf4a7660fb2b043518 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d4caa070bca058455b68c7b96961e3ca0f151b32 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c08401badfe37023ba5e0e751d022616fcbefcbb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d53b67bdedf136125bbee00d136720efa23898dc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c09288284e4859b8a85421b19d3c6d0109cdab08 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d56b3dae753b110e9e1a050486c6deb6ac399bd8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c0bb5f00fc14ea4f2000f75e6d1d94f23e6203f6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d576eb2948463f86f576d85e41d30a8cf3b972c2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c0e04f5709338a500b3be166714ed7b0013c17d0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d5824da8aeaf96a9e5f590a851e58e2534d178a5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c11e6f232cfdc5fffffa2c79150b5647704912c0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d5d704fdb985efb36fb42f9ee8482ae473bb4695 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c16876cdc8ab36ef7083bf4579849ee94239af0f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d63251b34cf38052b657d62e353aa42d905e52c4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c17ca23726e7bca7b0d92398f827cfb25c7f0d40 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d63dab7d78a0a58c37631e488b1eeb7c2bb67e34 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c1937db2c3dff32ff22a53a8b76614602cf41d73 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d65f32b4af92080a496fb0965075c060c70ee444 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c1ac67facfa4ca5ad92c3eed576a59d41558480f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d67c22b4174555c3e596c58dc7c28e84b1da8353 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c1d33a370a8ec2c2ea380472cc49172c679fa5bc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d68001237e6366c844a6509fa03e677e6adfb75f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c1d84db44208d08a84084986094aeac3eebfe3b8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d681712608025610b8ecc8a76a822516fb659953 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c2006fdf68d2a4cc0b31410d00e4dfca59315e85 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d6d7dc448cc24272ce216dbc7365ebe6e6b7b367 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c200cd4190048ba3b72b76274b2976b04110efc9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d712d007679af5438c7bda723ddc724c2e57b0c1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c259fba0af17dd1636501feddd52e501b51c4137 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d73ee327123be0e9bc72485b5517dd1bf691e249 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c27d7d33b13570c014385799dddf1d8805fc1735 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d7e298c12f97064ebe494593ecbe26df96f7f84d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c29f3256e632a713aeb3ef647fff014a9be01a8d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d80ba5bbc230065821c0c6530f70bdf205e817cc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c29f63aa5c4462b359c9028b6e6031dc088d7d46 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d8137be32de0a676678672fe6f82992b2ca61fef " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c2d14ed959df62d2f6dbe46c71489bed68e3c0f0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d85482b6a40d7edee97709df0ed02558dca4c079 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c2eb3287f8b83c9281826e3c773ca347056ee115 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d87b7bcd1b05a2f8cc04a2aadb999bcf65b84911 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c32029d5683ad5cfa1af3b534c53bc2f7f513f50 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d8bbba8dd44b71161c835cb09610e47401de44e3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c343ddb31042500e460861abc70e98ce3088ceed " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d8d117e45b7bc0c48f606d9ef844f00a363a8a38 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c370cb2ce56d1006fea0af1a823042927c0cfa07 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d8f08b0e061e86e94650aa16f99cae81cd696ca3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c39dab787a7c73972a3cbd69fef3775f55c90639 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d913cc4e8f2900d7035d196fd62707cf1194e02b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c3ade78c7fea61ed2e2cd843f9c551b107ae050f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d91e9bf6b6c78f35a68ba877f3325b3c1ee3db35 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c40e43a76f0c493414386dd90ab892042a6914d2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d97ade864dccd3eea245411665e5126f97302063 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c41f43520da236f84dd0e2157644d316ca6fac37 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d99bfa6bb10d30f64b533ea7620fc08b762a7bf3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c45cc40cc387134dec06733a01bde8fc44a2c9d9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d9d80422059678f0a011b8e8fdedd3d20c025b91 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c467053b901e28634f7e7891ea361961d94b097b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / d9f752e6e02987d7bfe6f0f4c4d70644d357fef5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c4a63251d65cb186242e7aba5ab3d4709d3f0065 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / da23c62c70f6c1174adc08093c429f1ec657921a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c4b438b82ac86439296c31dd7de86a753034c807 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / da2ace62505959bae7b4f158220f7ce97d20423d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c5154ce0384c3becaf12f83c51114bb3ccd0b673 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dab32e8bb17a9bd7b04b8b895b7b48c27d38ef51 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c53efcb830c4ae5cba7b3e0803635445e1469103 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dac17b9025074828797ef0dd1e3895baf875627f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c5446cba5971d6f44ee93097a21c1b8936f4020a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dacc3689e0a7b90aeebfaee000adf89e95e50cf9 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c54b7c1255412a6d4e9608d14fbdb235a7a86d9d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dad2c9af972d2e21c4437f0d94fdeacd7c8c7641 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c5535d6d801d315d78792c9956a82711d0d5a803 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / db0dbec7a0811cac7b250cf9b248d47936edc0d0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c5590a6799d6633ba08cc1f75e1a7d0a54d37e68 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / db25df0fa146d02874114b8605000e0135ff12dd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c56726277ddeb233e30b6223158042aafb944191 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / db7c4b56e701832634e61cc0b3ab5206fabf518d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c58819f4e12e3ee2ce3adb89b6f93567db2d5c8a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dbcaf0a6bd4960e8d0c518494b89bd9b941cfc8e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c5cd7af16e7bc0049445d5a0b92a3d4b7e5e3533 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dc38c75bcb7df7e61428d8f12ff01a1ec1b68a99 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c5dbc50d9174bde5542b2bb18c63f6583a23ff13 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dc6db500586253e4b9b0adeb20214327990d790d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c5e5b4c1e4e2bae55c1355950c3c7a593cb3fc04 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dcb9a8007d2693d35911dfcde7ae960adbeb2601 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c5f36039c543bb52b1b2ad235934790c4c34dccd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dcc8e14bbb75292968233ce89acd404303a53cc3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c5f3e7e54fb624b5f5436e1101fb8dd74d2dac19 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dcd0182c3027a0d6cc7a9a8c26f647d45bf3d3df " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c604f2a6f2a3c2f38e8cf0ce99c78e2750a83454 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dcf71fe33130be78708d234005f8bb4f4b06d75c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c60e077197a6659e362fba14ff9e4eacee647674 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dd0e562fcf5edda051585b70d3b3780a9a6a2818 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c649b5285bd40e0614cb8b8b4001b80c3d3cb4a5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dd19b226a1c60dceee7e656cee561b4acfe77aee " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c6733483e94f755f1cbf796f8aa3d10a2c371aa3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dd6d1ddb251fc3574733232c4a85dabdcf60d4c3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c6932577ed27915bf469939c61b1283354308a68 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dd8989a51df53e6f0a59959a8b5ad411c9fa0ba2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c69863dd21c782e609d6ecdb9150f887a0f39989 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dd8c099f1687f8b0581481a75f8844f6118d4a66 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c6ec8562082eda6ea9ae1cc27f33b920b93589e4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ddc34d5e97ac12572e6c39a336d219d91fa992b1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c6f9e7ce30494ccbf3a1f49bed7107d976e3cc4e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dddf3303e3e8e558ca6f147ec11d8195b6de30bb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c71747c667c94062a03ec0f0468212e7ac222c57 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dde3b1c08399b61df7de4997194d9392c2e4c3cb " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c73e85bdaa195d9659ae9b08995a9fb716f9c92a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ddf932a29b8250746ec310af224f95d4a51cb745 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c73fbc2e78f496b5666da99bccac9445ac9feeac " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / de0f7b6518fb5dd14f29ec66dddc5af50370b3fa " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c767f1416feb8d7a2899ab276a4846e10f59531c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / de838de0352fc7ee32452bc83043cf587176e120 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c76a1cca503160ca659aad6f7a05ca8fe5db439e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / deb08a636c04030bc28459820c7ddbace429b40a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c77bd1e9d9be2b6d1362cbb15f63cf749aa113ea " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dec7ea8faa2bbbbada2adc0a9e52d0335004869f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c7c13a37189ce2482f5517f6ef0903431194e11b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / deeec423355ed885b906c6770c96d3f17583fdf3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c837e4dc49146de843c9556c1b3c886abb552db7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / df106c9859b09869094c77aeba44e6e9ce909246 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c845faac6d4b713a232aa3a6749afdf4e58d7f6a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / df272aa4f3370128af034e7f5dd1524246b72d83 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c8b448134c9d165968599402c9633719573afd8d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / df380dfd997318c00cfc75313e6a7ecb041d38af " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c8b5d9fdb7ade3538abb794a3231d5777a1640a4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / df616ee922cc89908b771e5276e47abcbaff1346 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c8ccc96fa43f1446ca99e81e7440a3542b3a6ee2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / df8ef8bf4069afd375066fbb74cbe137f73db829 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c8e01950d56d7c8d08a5cce94c6306c03a135219 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / df949398b0b614309219c4128b167746e16a1ead " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c8e12ea9590ffbf0d6a10a582338856fa217ff6d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dfb8a3c29f657d533b0d940ffefe599cdb85120f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c8f0972dabb904bc6d35ed576fc9a49eb2ed5273 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dfd6e1fef6b2737e4d1c56db648a958bcce0a889 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c90aaaf79d46aeaf533e62dab54506d8ab2a3e5f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dfe4f327699ddea25103dd17b68e9a0fb726f4a7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c918b9e3e9cdfdb21d94ef0fba85b25f3ed9d098 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dfe6d60fd53eb8f4174366d1515c5a90ce10bf1b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c93f16b5b678d3019eb05bd0774598e7d34e9b3b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / dfefc5d84c18606a3aefd5bb721a06e192b4420e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c955c8f169185554e8e1d45ded89db29c3164917 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e007d8c9aa6c37e8b62fab4cb95b2807fc49105f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c957b37c99c5bb22b2c1f6dd050c57e685505599 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e022322a04b3ac1452055563bb41976a03a146ad " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c978dc651b961f2d48aad95b40ac761b3467f212 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e048e989af2d9aec0d63f72fa8feede387114779 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c97c41c0c76a901f458bf9b4d785fb53fe8a2980 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e0507daae4458401edc11e5c76b246d6d5a44e3d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / c9bda5eb1a93526b4809d147647cc78452988e29 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e0588c306f2ab329d6c4bd3226e8a55e83708c1e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ca086cf78308275212c52012f06edf3b4152204a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e061b554b941636414621e0a54d2d1c7014a1ac4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ca418a61964cb360014b574fe29aa20b193df04f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e06db057637f6738a48464cc2d65d7399fe296e8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ca54a837cfaf7edc71961ff1fe52d4c3cd86675e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e08b85aa24c9d0a49f8946c8400b86b5ea9211c8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ca5a1e4fccc55aa977b841d8d67e6991a4371860 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e0b7eb44f182f08d2eeaeecc76ef7b3efeff1fc4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ca6add6699d063e2212335264ad3e004327afc1a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e0e7112238b555fdc12a1c5e9adb50703ae56a43 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ca6b20544c093b14703410d792c8f73e73205bce " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e13361499a2326ef8dbc3746ceb61c61b2e1ad57 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cae359a6dabcf11786350360c2cd2aebf0b7a094 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e140f7efd72850d181a0145bb9ea7d92e61dec95 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cb4f23427bca81db8ccf5f03bdb0c60418a20a74 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e14dbfabfdbfa666e68562b0e854544e76f5446d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cb9a688f0dbc2015c77920f344e2d029c87384ff " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e15a0a0fb7b4f1c05088bc119c492ac20eb5dbcf " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cba1122fd86ce20b417cb34edc294f19f1303faa " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e16a0f378b50b28dae4458b795c8c80cf869901a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cbace6de751ef04cd6c12f74f37c5bb3e3b0b219 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e16c732d28873c13aa0e6cc4af1880c8c6eb7367 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cbd7f8b4148a1cac0c012afd3c73baade2dc572c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e18816dbe46249fb0160b8f06c2b71f6943d3d21 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cbde71efff4119c58459a93b2e1692182521b960 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e192ba28f8a3bc9079b810c46ecc526f84609863 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cc1b857893cf971cf7783d53d25693e642b03eff " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e1a0398910c28ad61e065e98e884a7492f6dc594 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cc34f9a0d85a22556faffadf90182f7c44bf168a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e212833dd63750f436254c0c81f1ddd42fb9a17e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cc7087fd7c7398e7c2afe3fb03e705262b5e843a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e23c0abb4f625880dbae1cc81ce5b146992f5d36 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cca20202993dda83570ac83c0b1967ce225c78b9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e280d72b157d00bf77608bd7b16afd2f5550a06f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ccdff5940d61b708f67fcc55dc26ac1ad4f4c298 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e28ffd8c2816f12f6395805199c792d1718191df " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cce1a22e2c3532ddb85af19d2f17cc7a11ca1050 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e29bab478641dd412057dfb6b0a0d78afd96dd60 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cd0e7c4cd361b786b6f27c481ed601fd373cb221 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cd2b1fed5910041aca30e39210ee21d4ebb80469 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cd4272fec464c45438dce72eb9381971ed0207de " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e2abd47fcabc336d25a4e65f2c46867234c85cfa " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cd4ccfa79f65f31716296e690f3a76007edde2e3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e2b07847cba288469491f873561bf4f2acf09393 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cd4f2c59f0cf55d9a73fb0b96d701c784c446048 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e33eb4b19232b2e32bc8f18e43459c4ed15bfc4f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cd5982304e5979e6056a77c4053b232e0963e0e5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e33f7d7998fe6e12ecc4014c8434e4ca591371b3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cd779b587b80719e2838853c2eac8d4595c0faa4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e3854bc2e1bc52f498780be3147d6f870e85d8af " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cd7cf401276531cea7e4221f249f527f231a5bcb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e3b45752c8160c48885420e20c24bb7124128f16 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cdc064f39a9a67210b1be6b195d38d5d0d73eaa0 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e3c1dbfb1ef140f6bdcf7d683e2b2071aacba9ba " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ce02561c4cfd1ec7e272cf81678149350f8a066c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e3c84286df55942bc2673eaaca844ebf5892b080 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ce4a157481d32f9c2ec106f257278d3159e6bd21 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e3eda76a93e94d081a9dfd675975fe2fc1d670dc " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ce6a90cb7d395fea7aa54ee9f7061cc45f5494d7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e401c1abdd1ef0458dd46e35167c4734667ebcc0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ce72561eada7f9b9e8b0f0e658ccebb4f5b983d6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e4238ff612439be100fc2188bffa6aac1d7e5e5c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ce95d2fc5b099365cd781aa7e2b297ac92a215b3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e42a3228f11b2c16ab3ec082c521905e390e356e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cea57d6a128cc7cd195cb2390bfde28047d6acf8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e42a9e07845680b8aad95408657c87b01873bcbe " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ceb98039ba87c5c326c904f275490b25c7d90f1c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e42fc248764aac6f6e0af5b5705272f82101287f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cee29e303670fdd259d375da8345d6e49ba971b4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e45762f05b01eb2c781cc8cb15db74a31d97566b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ceecce905981d8291a79fe32f89e8be688dfee7e " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e48ae5d10ab8c349250e8c6b9a491a154b4a861d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cf26c6969c0f649a2ccd780edb8b3dc314ff7701 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e4ba9f46387c5687fb9003724893c0b199debf2d " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / cf3fd86be6611e52e7a3faefd2d1e0082c3a8859 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e4da3ef8c789c4c243b9d0787f94aca5ab232103 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 0597bbdd657fa4ed14443994c9147a1a7bbc205f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e4db5d1742f4336c13a7941b3aacfd352a6db462 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 0a0ee428270236e707457b9560a91c233ed2326c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e53a201505fe8412278d7444b1a915b353bacb3e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 0b1b50227d01f99998b01ed218f5d4dc3839d44f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e55693473101ac4626e04012beb1b9b6d93a0a94 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 0f6e7b5dd0ad53297bd9daa497dbf851b5385b16 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e57acbf9e36c755cc50b00bc868c01ca1c1f6842 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 113a1e09a1c0787f1be875c6cdcf4415f8155ee3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e590a42febe0442ddf632b05cda112b3aca43380 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 14359c8f754c2ecdae21deeeec033ae10360033a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e5afbabdb437dfc44f06ddf8b9f793868e8fdde0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 15070b2a2719ed8a6cbbaac25da02b7085993648 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e5d120938961b8ed1e0f46e342683432b9081dd1 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 168a72ed6115591c637fe99f50cac5e6bf7ded79 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e62a93cf5ead5a0c5e4cd13bce4cfe83c54b1c5a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 17ad251e24eaa152ded652bfe04d656fdcad28c4 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e62f5243dd375cb4b71c864a18ddd50b5b99762f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 17c0775f8b51f7b8742602e4321ac5827e64e3eb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e6523bc48bc3bbd56cbaf034e016c1fe56b76096 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 1b9aeaf762bb1a972dda8f3a455df2628efd693b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e6660a661f0adb7be809c558ca15573add24f686 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 1bc1a02532d212c8975e0cdcd5127c98fcaf752b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e66b054263dd9e7ea90d7dfaee555e2f24bfb60f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 1bf04a83c67f216c7643d69677da5e6cbc708d88 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e6b74f64e8bdfdf98177aee58b8729ff2aa7ffb2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 212c3b09f310867e1e8ffa7faecac75c12f4cda3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e72218971bac83f556e86b0a65ec303e2a05eac8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 23a35ebad0178cc632fd62f6852d2f6fa5d1fe32 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e73a05b1cf7dfeeada6356bb18ec4381485bb3d0 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 24bb600e0530fcce70d21fece0cd70056ed8a6b9 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e7484552736c89fe721019daaad8739a68f1a926 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 278279ec7b937b1c944029bc57ae0ff0fbb13415 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e75fa90650f1d67ff9849024e88a91300690778c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 2cc124fe461b11185467384aebe18711f28bcfb7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e79ffffd4bd565b2b5bb8d0f191c8e34385de085 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 2ccee0e61103a767acec12b9146d478202b93b27 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e7ac184d872400a6d5af852ade5adf9d68c97058 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 2f1092c48db455fbe1ae5e275f8d221dc8c52f00 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e7d4357e2c3ac4db7a9bfece1549f0664e4d317b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 3699c47aaa794b48df814bd3b5a982c377063bc7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e80302182fbd464b72d2b9be495901c0c3e93344 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 373224be81ff98db60e9f81536f16a9ef92792d5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e805c33631e579c782550439f123b78e1ad8e180 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 404a40c85b887a53235484f4620da325872eca49 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e814c704e36a84f75c235985a13d58fd1eaa8e01 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 40e0fcf83e934a4ea2d31c009e9dfc1e68f11f3a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e8324e1c5c1541f327f848821074ed0b9b0a4b41 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4195e7f3655955a8b386d1b17ab855c08ebec548 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e8616e0840a6d4077b322fa2b1906d1fd4c406bd " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 41ad52e1376596e9ac3c22be039975e223645b4a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e8b1814f9a0942322aeb190ae0ad35105784e101 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 42d2e80906545a50b4b5b37278132b764296c031 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e8bc4c1b1ffb23de5af2c8fe20599c05f94567ad " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 43f9633b24fd27f1bbe8884ec506197e52001797 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e8c24e95b095fee6053a49f51326479b60949424 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 454e9d66253c206916e1bea69bdaabd8bb8c982c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e8fd7c4270b5f2cb56fb06684858c39c7ccfa909 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 482e9bdce0e13df2a77eef75a1c07d38ee28f4ab " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e921037de2e963b653e881fba095eeb33799d749 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 497e1c1554a8e021ba6c02ffdd2a4d809669c60f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e94428d78182060ff6309dd626cf6b3ebeed88d6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 49c4f247eb2aaa8f4474aec363e203e557948bc2 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / e9ae17566804496b92d2ddcf99129436d771fb81 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4ae4941b4c3f857966a0e3c05f789a0a5ae15bbf " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ea2cf809383d8725bec1b44ab774f04b3e6d5ae5 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4af36327fb381a5e5af2072f038a10e36368bdd3 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ea351febbe2c4e73fb0e0d34e7d2a23ff46b79f4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4d51faa099fbe0900fcf30461a6be12dc80dde16 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ea421a728134ad3a95a32f081c2bafa9d989836f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4e19149430212fc0ed7be30854bfe538572d33b6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ea5ba8919404e2a04f38b17e7e3031a5586a2d0c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4e297b6205976cf94c8ccbcbf12277efb8ade986 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ea6cc4b0a83ac8d578c4927f3c9d5a57a4464df3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4e4d7a383785c83b78ed6597bfed360079a49a08 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / eab01c8a32e76c8f354055807399a808848234e6 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 4e6ec3d9abdaf620dad4cd2f2c206c29e8d9ecc8 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / eab5589ebcdd4596996f0a6de6408a0f3e13437b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 50e18d167be26c8e19877d88e9b53591f4c8b029 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / eaf587f7f303dda3ccc5becc6e645af7a47b36bf " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 5827f4af3145108483e4f410e1427e7a41c4d3cc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / eb342f6fd92411d7beb1f82983a19849d45ff46f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 5854cfbb68190f86a40492c5ca8e15c0fc062168 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / eb9367a74ba61abe8d5f5fdb7c1c840b2d27dab7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 59b587d15c0bcdb985417cd7a133cecfcc232698 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / eb9faf5efb229c562a6825f930b8316f2aff2864 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 59e58120d4f37a833a79e68372c4eaf361a92240 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ebbc2aa89ec745a7201eb4aa1aded15d35e4206c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 59f857e19c386154d65c48a72cf1e4e69aefd1ba " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ebc30c5cbe17138976223f2283fe42d9e4c6f39a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 5ba35fa4177ca59450b597dd1a2d48f8a68959dd " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ebe414975652c12fbbfd99efd2da1cd4c72c340c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 5c52df7b4025baa05218c14a3cd535914445c42f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ec012a94d14659f311451e89e757bd06a93d30b8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 5c774460d2dc7ae9d471ef4b87609b13e4e95219 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ec230c6a27149df85cad53f33478ffc11bd92d4e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 5d73de981fb75553a7b2606e111716ee9f2af844 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ec56dad56975e8279b2b229288dff3bb0ceaf661 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 603222da20c147a532188e80fc1a26e4e8bc4bee " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ec823f4018389e64a99f6580277fba28df6bd136 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 60a3f7ed4abddaa6a7c837ace86d048fa15e288b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ec89eb7e84e6cf7859ab478362e0ae5227a5e154 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 6db86c556caf542fe8c3345ef396467b1d609d32 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ec97d4ee730261bdc3b14349a3346fd45929bd17 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 6f1b8715edddbf0aa17fe9ee0fbf02ff7c92807c " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / eca1d41de5486c09c6aa7767289daa7185379220 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 6f5c899196cb31232d2d6694be43e1ac0a662f48 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ecf0a3cd157191263734f4f2de9689d5a02e439b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 6fad807070626f184704ea082667ebe780369f74 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ecf186f5cf01d52568516a56b3f5d752edd56827 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 72ab4efc255cfc55ed03c1002187a68e2e18e33b " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ed361ec32383606748bedeb8eee6510041b0f366 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 775a43af5d81808d1ccbcc43aec12ce14aed8a53 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ed3b22b78763a426595a8ebc05d07004cc80aaff " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 787fc772315a87e40b63fbc25fb703a87581f0e7 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ed913deced10ab045fe04c783f6a0e2678f1929f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 7a4ce28ac085ce3763fe91e24bdd92914d134a3f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ed96c5df96beb5a2bdc4424c38e60fe74da080a2 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 7c6eb73a27b693a346f309370e965d0d62048503 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ed9a1a597bad76e9ed9e52ba2e5c80304583c006 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 7ca23a3e10cdbf579cf81a50e51af358f86631eb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / eda5d435276e002a08358fd67a2bbd75902236a3 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 7dd4bf6d825fb4e9a43506aff001119c7e8f00ac " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / edac3a36778a1b2db96c3c07435696b9aca94c24 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 82b2ae1d2174f5782b32c89ce60f68bf5a30c0e1 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / edcf7ea2ec8443a92883e68e5e18353fad8f6d21 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 83f6929c001d26c25c5d0f63ba0bcc099b9959bc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / edecc59c5809796f266abd8df4d5ecf6aae304ca " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 85fd89292e43c2a2338f86e46d10fffb6f85ed88 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / edfcf299569efc4788937d2cd4ca0e625fb9e527 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 864c58c601ce89a5191fc6e665dff0812a6e4bfb " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ee147e7d7ca7937fe37d2bc2aed053ef1e396b07 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 89e1b03278bad9790ae0f8614a8389414d1eab37 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ee2c1ac1e668f22836cf25a59495e778b0e2c7a8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 8ab0b6e57b90ab4c6b8d5de8278464eb428f4668 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ee624b408f8a50c79cdaebf4fb4195e6162b70da " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 8c44d14673d21592ff930297b2307096d9f7136f " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ee6855178435d2046d8763ecae46e1e0a71a95f4 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 8e2e3975a865fb107fff8060f4f949aa235727d5 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / eeb310d91038cb02862e187e68c5d6578233485b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 9137b1dc16097e720a1837a2117f43b940180f3d " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / eed65ac63a044c87423f333f3b9c5f0d3bc7bd3b " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 916f6ab61cd358be9a241e2eb09851f700335eda " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ef264406b5a2263cd7a9145f7ca68ed8fd6c50ad " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 91964f1b7d1bc2460d93775fb64c7e6f737ce634 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ef32866f14ccd80c1231fa742b53fba46ae15d6f " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 949b13ffa41b1c202fd74d4c9cd45e840aa9d0f6 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ef4127bfbb6d1b7490a076c4af795b1e40b2bcd8 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 95e740aca3d281f30929d51a628cdfab4ca863ad " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ef63ab3c4dbf27ed1f15c2b310bf41ff3a2a7e3c " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 97ec5404605d0d7bed44c2b845e06f6d9479c152 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ef930a505edebc0ff6ca7eef7549bbaa21d95b4a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 9862337313ff89e8dd6fbd6f870a568ec4bd6ecc " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / ef967ba35676b971983b1e95e62c383a978a37f7 " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 9b205954747d5f120b36e004116fa2fe22cd5105 " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / efa80ac7daa93de08fc91bdf2a912269a3f2396a " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 9c2cf43a9cdba7a35485fadb0b0424a88f7d7b8a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / efc7a168a1060d04234a3acd3da42a80e49eb72e " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 9e53b8c6ea7f6ae5c53e5834c50eac8e9f33259a " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> } , <nl> { <nl> " args " : [ <nl> - " test / core / end2end / fuzzers / api_fuzzer_corpus / eff00cadc3130c257b3fe360ea5d32fb034aadff " <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 9f50180d69973cd2187ecba50fc2894edf6a341e " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - 9fd80ce4eeb83cdea4eedd9995ffc53d640e692e " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - a15f2c17a8fa204f3183fd7422876f28ef7c85ee " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - a21d5f69a1433ba0580840405fbd66f3b3569104 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - a2ff9a686f9775c715870fa2f25b600471ca8c01 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - a6224f954d8234d45e6f6ea27aca4d65ca77b6c7 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - a6ec7e9fef2e54036de257f5e7da3e87ea1f39f2 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ab3ecf04012140fdabae0d037189eedb24516d04 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - b208a1eb5ef9f229f309492329323f485768fa74 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - b39ce8e62e5c9e046d67e946436609e01f067a53 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - b479e66d221f3db92c31b6b6aace69599f648d51 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ba2c1509ff87865d9e23c056b9c7fe2732825ef0 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - bac7a77b50e53ff71b0f52ce635e64ac15a787dc " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - bd17ab1e7e9328739f455641e8dfa11951ac742a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - bebee7dd27c149af9e7b573300c686969fde9eb3 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - c0413dd6857d1ed3e5484df5e70656356f3c997a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - c1a4c1aa8b4f1b081993f93ca92a1136a7302be5 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - c42d2add77ba492df95cfaf2e4e08e56818368ce " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ca8aa113c22037a2a552c1763f845609d555ef9b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ccb9f8221fd8fcacc5fb4a3c251fc06104027ddd " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - cce6ffed471344173c135e536b454f469bd07e03 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - d5b0e587cafc10b7878bc691b6fcb7c1164e7558 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - d61454675241d9df9049f5bd57f47326059d7132 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - da39a3ee5e6b4b0d3255bfef95601890afd80709 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - dc6abf90d5e8e1b96f7e25f418b1a7f572e6a738 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ddac3b604ee6d4a51161a267b688a3b72fb6768d " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - decf36e136646eb3ab44fc4c5f327ccd99ddea88 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - e45753da8952c41715a65010250efba0a4a4d243 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - e4d4b51cc7731d12daee738c4b81158a03302ebb " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - e7930097a989131890a316b0b1ed85801699562b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - eb5d258a429fa9c20f8513211a33100abd5f8f3f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ed3086c0ca03a427fca1817b52a4d6530fb4096b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ed7959740df2fdcf62626e370dcd7eb43963731b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ee032544a2c1487469cc17f870043f4d513999f7 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - eec019a7a40f5d8f8c0e9c72215286f442a9b150 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - ef09afe157880d7f363fb87f6bc194ce1a72554c " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - f0c7e2cc8f8587bcab636a63191b2fd37e0cf8ae " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - f40dcae7e7cc52e44d49c7fd5452e33a77ef4499 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - f8bf4b7d89c07d661b695a3e4fdf269b853fe168 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - fb41c97305a2c94d367e40863dc046c8f78a57c9 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / crash - fc088cee74d4e8dd791291b5575fc0fe9fe7378d " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d00326f1b0a93acb1cb7fe02ba0342cc6e1875e6 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d02fb86e7e236a2253a2eadb0599f5dc261e4048 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d0541179f78beb9037070ca52969526b83eb608a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d05a854e44c9c6f0dd0c58e6bd305e6fe48c32f5 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d0692d73e38ed8c154ebddd627ce99890a1cf798 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d07965987a51541498871433e0fc6313884569d3 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d079f5c8a10611dc655cef33f73100f5f43787a8 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d0a8deab4d26bc005d022184c311c1ce4d5327bb " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d0fcc9d6dc91ead9fd27f0c613ea031f21fb4de4 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d107d21374f4dba27f173d4edd5c8009e3b0f8c4 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d110d5d3a672bf483f230825e735d372b0b2c1a5 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d123c89b3cafd995bf401032699fc7dba60f8de4 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d17e7451bcef39ce542d84f2539f9586ea35f21e " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d18b2a1520207761100992c88b50f6b410c62184 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d18b5e648be40b0ea52fc8b10bcbae9bd4325f0e " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d194d6aa501f75ed24fc399ee594fb77341e5d38 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d19a252c00c74403389fe9e057cffeee39a4d2e0 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d1ade96319d9de82cf3b0480d226a5ad9f31eaa1 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d1b53c2a386259ce958c34e2cb281514e14e0d03 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d1d35a1d2148c62c6021479d4153e65511b33cc1 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d22287b96b3dcb840fc65e4be60e409fb0f6bfe5 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d263d6004c2cc33cd9d157dd31ff604870c4d6fb " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d27e050b2758f6658d166b0d30e9db9595388ef9 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d290717010121ba2745e551e7a80be6e9f6d59e2 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d2956eabd7b8b9d6b136731a3a4fa077f184aa13 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d29859445bfeff04ca22b20408f9aa0e2e161abc " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d29cf6979d8d58b4cb779a629ebee62d7e42fc9b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d2a63dcb354906d4d67104ba2a1f5e97a6196183 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d2ba1c23045223aa6f4c107f91d57786befae604 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d2c828ee88b3e352fad3263f1e1ff901a41fc7a6 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d2e66d1fdf0110212c632268aec5b06130db3e21 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d2f7c85e3c87ad5b71ad423aa4a9d97a8191d867 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d3089d3ef9be14080abc156e5f2128c3c1a2f23a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d3090a5221ea984dc474c3fb448b71957f8197a4 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d3124f8fe39ebe943d0d5a7087a51d7e852505bd " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d333dc3999c6dcca82d85f72e65e10c07f12d978 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d33e33320e5165dac72007845a86a9709d75c42e " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d3bec93d378e7466bacd95be431500ed30cba449 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d425e534ec074932b5cf4dc9a6cf4fc0683fd690 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d48a5cefe695d0494df4540ea395dcdd90a332ef " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d48c4a56dc90b16a14dbf9934fc3ce7c9706104e " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d4a7be7c4a826d8151d5d7c1c781143baf90ff28 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d4bd740db31b0e9925ce331c9c7d2fae5c1d15f2 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d4c3ed789ef8a888244504601964f0a0c994a66d " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d4caa070bca058455b68c7b96961e3ca0f151b32 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d53b67bdedf136125bbee00d136720efa23898dc " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d56b3dae753b110e9e1a050486c6deb6ac399bd8 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d576eb2948463f86f576d85e41d30a8cf3b972c2 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d5824da8aeaf96a9e5f590a851e58e2534d178a5 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d5d704fdb985efb36fb42f9ee8482ae473bb4695 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d5dad7a599e22cff371d595a5014475301670892 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d63251b34cf38052b657d62e353aa42d905e52c4 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d63dab7d78a0a58c37631e488b1eeb7c2bb67e34 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d65f32b4af92080a496fb0965075c060c70ee444 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d67c22b4174555c3e596c58dc7c28e84b1da8353 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d68001237e6366c844a6509fa03e677e6adfb75f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d681712608025610b8ecc8a76a822516fb659953 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d6b689f1b878d6914ced5d24f21c599c203594d4 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d6d7dc448cc24272ce216dbc7365ebe6e6b7b367 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d712d007679af5438c7bda723ddc724c2e57b0c1 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d716fb79cd7dd78d2ff66dc8a0e2acef9a93f98a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d73ee327123be0e9bc72485b5517dd1bf691e249 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d7e298c12f97064ebe494593ecbe26df96f7f84d " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d80ba5bbc230065821c0c6530f70bdf205e817cc " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d8137be32de0a676678672fe6f82992b2ca61fef " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d85482b6a40d7edee97709df0ed02558dca4c079 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d87b7bcd1b05a2f8cc04a2aadb999bcf65b84911 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d8bbba8dd44b71161c835cb09610e47401de44e3 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d8d117e45b7bc0c48f606d9ef844f00a363a8a38 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d8f08b0e061e86e94650aa16f99cae81cd696ca3 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d913cc4e8f2900d7035d196fd62707cf1194e02b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d91e9bf6b6c78f35a68ba877f3325b3c1ee3db35 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d97ade864dccd3eea245411665e5126f97302063 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d99bfa6bb10d30f64b533ea7620fc08b762a7bf3 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d9d80422059678f0a011b8e8fdedd3d20c025b91 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / d9f752e6e02987d7bfe6f0f4c4d70644d357fef5 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / da23c62c70f6c1174adc08093c429f1ec657921a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / da2ace62505959bae7b4f158220f7ce97d20423d " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / da57f06258c4f0de07611263dfba8be669dd780c " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / da97ec2d11daf27fe924513c463810c867b88983 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dab32e8bb17a9bd7b04b8b895b7b48c27d38ef51 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dac17b9025074828797ef0dd1e3895baf875627f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dacc3689e0a7b90aeebfaee000adf89e95e50cf9 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dad2c9af972d2e21c4437f0d94fdeacd7c8c7641 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / daed40229642eab256927f3bfb0288e036eab89f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / db0dbec7a0811cac7b250cf9b248d47936edc0d0 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / db25df0fa146d02874114b8605000e0135ff12dd " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / db7c4b56e701832634e61cc0b3ab5206fabf518d " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dbcaf0a6bd4960e8d0c518494b89bd9b941cfc8e " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dc38c75bcb7df7e61428d8f12ff01a1ec1b68a99 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dc6db500586253e4b9b0adeb20214327990d790d " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dcaa24f054af09a755c794ac4c3485ee682437a9 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dcb9a8007d2693d35911dfcde7ae960adbeb2601 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dcc039d81106cd60cd611ff540d4669ebd10fe68 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dcc8e14bbb75292968233ce89acd404303a53cc3 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dcd0182c3027a0d6cc7a9a8c26f647d45bf3d3df " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dcf71fe33130be78708d234005f8bb4f4b06d75c " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dd0e562fcf5edda051585b70d3b3780a9a6a2818 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dd19b226a1c60dceee7e656cee561b4acfe77aee " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dd6d1ddb251fc3574733232c4a85dabdcf60d4c3 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dd8989a51df53e6f0a59959a8b5ad411c9fa0ba2 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dd8c099f1687f8b0581481a75f8844f6118d4a66 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dda7f9e8860f0e132312f57e3640402f33df308a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ddc34d5e97ac12572e6c39a336d219d91fa992b1 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ddd34e967b1460902af2d01818605e208c5c7524 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dddf3303e3e8e558ca6f147ec11d8195b6de30bb " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dde3b1c08399b61df7de4997194d9392c2e4c3cb " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ddf932a29b8250746ec310af224f95d4a51cb745 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / de0f7b6518fb5dd14f29ec66dddc5af50370b3fa " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / de838de0352fc7ee32452bc83043cf587176e120 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / deb08a636c04030bc28459820c7ddbace429b40a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dec7ea8faa2bbbbada2adc0a9e52d0335004869f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / deeec423355ed885b906c6770c96d3f17583fdf3 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / df106c9859b09869094c77aeba44e6e9ce909246 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / df272aa4f3370128af034e7f5dd1524246b72d83 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / df29cf0d3cd5cfd27a98b506fffee64476398bba " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / df380dfd997318c00cfc75313e6a7ecb041d38af " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / df616ee922cc89908b771e5276e47abcbaff1346 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / df8ef8bf4069afd375066fbb74cbe137f73db829 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / df949398b0b614309219c4128b167746e16a1ead " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dfb8a3c29f657d533b0d940ffefe599cdb85120f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dfd6e1fef6b2737e4d1c56db648a958bcce0a889 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dfe4f327699ddea25103dd17b68e9a0fb726f4a7 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dfe6d60fd53eb8f4174366d1515c5a90ce10bf1b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / dfefc5d84c18606a3aefd5bb721a06e192b4420e " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e007d8c9aa6c37e8b62fab4cb95b2807fc49105f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e022322a04b3ac1452055563bb41976a03a146ad " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e048e989af2d9aec0d63f72fa8feede387114779 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e0507daae4458401edc11e5c76b246d6d5a44e3d " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e0588c306f2ab329d6c4bd3226e8a55e83708c1e " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e061b554b941636414621e0a54d2d1c7014a1ac4 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e06db057637f6738a48464cc2d65d7399fe296e8 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e08b85aa24c9d0a49f8946c8400b86b5ea9211c8 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e0b7eb44f182f08d2eeaeecc76ef7b3efeff1fc4 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e0e7112238b555fdc12a1c5e9adb50703ae56a43 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e13344aeec0694c50eed41ae1b78e6d2ac4a4c6c " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e13361499a2326ef8dbc3746ceb61c61b2e1ad57 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e140f7efd72850d181a0145bb9ea7d92e61dec95 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e14dbfabfdbfa666e68562b0e854544e76f5446d " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e15a0a0fb7b4f1c05088bc119c492ac20eb5dbcf " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e16a0f378b50b28dae4458b795c8c80cf869901a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e16c732d28873c13aa0e6cc4af1880c8c6eb7367 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e18816dbe46249fb0160b8f06c2b71f6943d3d21 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e192ba28f8a3bc9079b810c46ecc526f84609863 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e1a0398910c28ad61e065e98e884a7492f6dc594 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e212833dd63750f436254c0c81f1ddd42fb9a17e " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e23c0abb4f625880dbae1cc81ce5b146992f5d36 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e280d72b157d00bf77608bd7b16afd2f5550a06f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e28ffd8c2816f12f6395805199c792d1718191df " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e29bab478641dd412057dfb6b0a0d78afd96dd60 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e2abd47fcabc336d25a4e65f2c46867234c85cfa " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e2b07847cba288469491f873561bf4f2acf09393 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e33eb4b19232b2e32bc8f18e43459c4ed15bfc4f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e33f7d7998fe6e12ecc4014c8434e4ca591371b3 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e37b4c7b64414d4705d934f8a723a50dcbf42571 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e3854bc2e1bc52f498780be3147d6f870e85d8af " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e3b45752c8160c48885420e20c24bb7124128f16 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e3c1dbfb1ef140f6bdcf7d683e2b2071aacba9ba " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e3c84286df55942bc2673eaaca844ebf5892b080 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e3eda76a93e94d081a9dfd675975fe2fc1d670dc " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e401c1abdd1ef0458dd46e35167c4734667ebcc0 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e4068f14a046ce3ee7f1920cbd210b6e876c07ec " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e4238ff612439be100fc2188bffa6aac1d7e5e5c " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e42a3228f11b2c16ab3ec082c521905e390e356e " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e42a9e07845680b8aad95408657c87b01873bcbe " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e42fc248764aac6f6e0af5b5705272f82101287f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e452ab01690d7e326f5ef52f4a312d066c087a24 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e45762f05b01eb2c781cc8cb15db74a31d97566b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e48ae5d10ab8c349250e8c6b9a491a154b4a861d " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e4ba9f46387c5687fb9003724893c0b199debf2d " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e4da3ef8c789c4c243b9d0787f94aca5ab232103 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e4db5d1742f4336c13a7941b3aacfd352a6db462 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e52ac2e3cad2e544488a01822115cb37d10a76ce " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e53a201505fe8412278d7444b1a915b353bacb3e " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e55693473101ac4626e04012beb1b9b6d93a0a94 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e57acbf9e36c755cc50b00bc868c01ca1c1f6842 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e590a42febe0442ddf632b05cda112b3aca43380 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e5afbabdb437dfc44f06ddf8b9f793868e8fdde0 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e5d120938961b8ed1e0f46e342683432b9081dd1 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e609da99f76fa36e4b9060650cbc3597af458b01 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e62a93cf5ead5a0c5e4cd13bce4cfe83c54b1c5a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e62f5243dd375cb4b71c864a18ddd50b5b99762f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e6523bc48bc3bbd56cbaf034e016c1fe56b76096 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e6660a661f0adb7be809c558ca15573add24f686 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e66b054263dd9e7ea90d7dfaee555e2f24bfb60f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e6b74f64e8bdfdf98177aee58b8729ff2aa7ffb2 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e72218971bac83f556e86b0a65ec303e2a05eac8 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e73a05b1cf7dfeeada6356bb18ec4381485bb3d0 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e7484552736c89fe721019daaad8739a68f1a926 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e75fa90650f1d67ff9849024e88a91300690778c " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e79ffffd4bd565b2b5bb8d0f191c8e34385de085 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e7ac184d872400a6d5af852ade5adf9d68c97058 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e7d4357e2c3ac4db7a9bfece1549f0664e4d317b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e80302182fbd464b72d2b9be495901c0c3e93344 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e805c33631e579c782550439f123b78e1ad8e180 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e814c704e36a84f75c235985a13d58fd1eaa8e01 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e8324e1c5c1541f327f848821074ed0b9b0a4b41 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e8616e0840a6d4077b322fa2b1906d1fd4c406bd " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e8b1814f9a0942322aeb190ae0ad35105784e101 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e8bc4c1b1ffb23de5af2c8fe20599c05f94567ad " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e8c24e95b095fee6053a49f51326479b60949424 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e8fd7c4270b5f2cb56fb06684858c39c7ccfa909 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e921037de2e963b653e881fba095eeb33799d749 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e94428d78182060ff6309dd626cf6b3ebeed88d6 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e97beccbdbb6e29eb476efec4ea2c96c310e6615 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e9ae17566804496b92d2ddcf99129436d771fb81 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / e9d470cdf421f6c6c9eefd7f84bd09df6a8994b2 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ea2cf809383d8725bec1b44ab774f04b3e6d5ae5 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ea351febbe2c4e73fb0e0d34e7d2a23ff46b79f4 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ea421a728134ad3a95a32f081c2bafa9d989836f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ea5ba8919404e2a04f38b17e7e3031a5586a2d0c " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ea6cc4b0a83ac8d578c4927f3c9d5a57a4464df3 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / eab01c8a32e76c8f354055807399a808848234e6 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / eab5589ebcdd4596996f0a6de6408a0f3e13437b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / eaddce3919388311104c50b9089461ff59c8ac14 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / eaf587f7f303dda3ccc5becc6e645af7a47b36bf " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / eb342f6fd92411d7beb1f82983a19849d45ff46f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / eb9367a74ba61abe8d5f5fdb7c1c840b2d27dab7 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / eb9faf5efb229c562a6825f930b8316f2aff2864 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ebbc2aa89ec745a7201eb4aa1aded15d35e4206c " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ebc30c5cbe17138976223f2283fe42d9e4c6f39a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ebe414975652c12fbbfd99efd2da1cd4c72c340c " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ec012a94d14659f311451e89e757bd06a93d30b8 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ec230c6a27149df85cad53f33478ffc11bd92d4e " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ec56dad56975e8279b2b229288dff3bb0ceaf661 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ec823f4018389e64a99f6580277fba28df6bd136 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ec89eb7e84e6cf7859ab478362e0ae5227a5e154 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ec97d4ee730261bdc3b14349a3346fd45929bd17 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / eca1d41de5486c09c6aa7767289daa7185379220 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ecf0a3cd157191263734f4f2de9689d5a02e439b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ecf186f5cf01d52568516a56b3f5d752edd56827 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ed361ec32383606748bedeb8eee6510041b0f366 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ed3b22b78763a426595a8ebc05d07004cc80aaff " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ed47f70f76dadbb6744ede3eb7016f585c9fe59a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ed7d0b055e59602ec752162db7afc2b36ac7800a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ed913deced10ab045fe04c783f6a0e2678f1929f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ed96c5df96beb5a2bdc4424c38e60fe74da080a2 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ed9a1a597bad76e9ed9e52ba2e5c80304583c006 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / eda5d435276e002a08358fd67a2bbd75902236a3 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / edac3a36778a1b2db96c3c07435696b9aca94c24 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / edcf7ea2ec8443a92883e68e5e18353fad8f6d21 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / edecc59c5809796f266abd8df4d5ecf6aae304ca " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / edfcf299569efc4788937d2cd4ca0e625fb9e527 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ee147e7d7ca7937fe37d2bc2aed053ef1e396b07 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ee2c1ac1e668f22836cf25a59495e778b0e2c7a8 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ee42f876c500996016a9f4a989147e5c2b5019fa " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ee624b408f8a50c79cdaebf4fb4195e6162b70da " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ee6855178435d2046d8763ecae46e1e0a71a95f4 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ee90aa84710c6a218a84b49ca6bc5d0e7a324220 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / eeb310d91038cb02862e187e68c5d6578233485b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / eed65ac63a044c87423f333f3b9c5f0d3bc7bd3b " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ef20d859b09ca00a80782df7097881ec4299cd25 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ef24beeeff80ec8ad728919794e9de4a06cf7daa " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ef264406b5a2263cd7a9145f7ca68ed8fd6c50ad " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ef32866f14ccd80c1231fa742b53fba46ae15d6f " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ef4127bfbb6d1b7490a076c4af795b1e40b2bcd8 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ef63ab3c4dbf27ed1f15c2b310bf41ff3a2a7e3c " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ef930a505edebc0ff6ca7eef7549bbaa21d95b4a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / ef967ba35676b971983b1e95e62c383a978a37f7 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / efa40f9e7f8a5ba4649dbad1a66ff9cc6bc699b8 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / efa80ac7daa93de08fc91bdf2a912269a3f2396a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / efc7a168a1060d04234a3acd3da42a80e49eb72e " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / eff00cadc3130c257b3fe360ea5d32fb034aadff " <nl> ] , <nl> " ci_platforms " : [ <nl> " linux " <nl> <nl> ] , <nl> " uses_polling " : false <nl> } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / f2b838edb5715e9f0f73897ed74eddaede87a43a " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> { <nl> " args " : [ <nl> " test / core / end2end / fuzzers / api_fuzzer_corpus / f2bb9fb90c0fb7dfd765e1c528330881e721c7d8 " <nl> <nl> ] , <nl> " uses_polling " : false <nl> } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / f3b3769d79f1d9586c575c27dff353f343ceacaf " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> { <nl> " args " : [ <nl> " test / core / end2end / fuzzers / api_fuzzer_corpus / f3c0468b37c09b998096d18cd13a522dec09888b " <nl> <nl> ] , <nl> " uses_polling " : false <nl> } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / f3cad6a2ea4ebfd40568d4992d68784e82de2b20 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> { <nl> " args " : [ <nl> " test / core / end2end / fuzzers / api_fuzzer_corpus / f3fba021c9e4cdee8ea694017ae1e40f55fead5d " <nl> <nl> ] , <nl> " uses_polling " : false <nl> } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / f575224a90d142bcd971b4f1634f4dc4988f8b15 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> { <nl> " args " : [ <nl> " test / core / end2end / fuzzers / api_fuzzer_corpus / f5867f7dbacd22878e2955f4be8fca147442aa9d " <nl> <nl> ] , <nl> " uses_polling " : false <nl> } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / f7623c34b3b5fb243fe589d881e4e8489f578f21 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> { <nl> " args " : [ <nl> " test / core / end2end / fuzzers / api_fuzzer_corpus / f788d2b893fe39fe24582acffa6a70f1ca4e3037 " <nl> <nl> ] , <nl> " uses_polling " : false <nl> } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / f875ad5830cb0b5d387a267e0200eb3027d025d5 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> { <nl> " args " : [ <nl> " test / core / end2end / fuzzers / api_fuzzer_corpus / f8a02d7d9317428fd142c05f9428840d3d30aff4 " <nl> <nl> ] , <nl> " uses_polling " : false <nl> } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / fb17c3fec47ab446ee737ab4c7fa8cb85688d5be " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> { <nl> " args " : [ <nl> " test / core / end2end / fuzzers / api_fuzzer_corpus / fb263a744a6d40e183e84ec8a81ca13859c8b5ce " <nl> <nl> ] , <nl> " uses_polling " : false <nl> } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / fc824337cead8b9e5229119c85c284fdd8e2d391 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> { <nl> " args " : [ <nl> " test / core / end2end / fuzzers / api_fuzzer_corpus / fc9879794ab7f7cdc4959c204788fce6146c0579 " <nl> <nl> ] , <nl> " uses_polling " : false <nl> } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / fd4f7d5d3d21c75ccb5cde9491bf952bae753390 " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> { <nl> " args " : [ <nl> " test / core / end2end / fuzzers / api_fuzzer_corpus / fd825fd14341b700853b72e4fea0899c2dfb441b " <nl> <nl> ] , <nl> " uses_polling " : false <nl> } , <nl> + { <nl> + " args " : [ <nl> + " test / core / end2end / fuzzers / api_fuzzer_corpus / fe786c056e1e068e9cb9a94d7e10cee1593436bc " <nl> + ] , <nl> + " ci_platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " cpu_cost " : 0 . 1 , <nl> + " exclude_configs " : [ <nl> + " tsan " <nl> + ] , <nl> + " exclude_iomgrs " : [ <nl> + " uv " <nl> + ] , <nl> + " flaky " : false , <nl> + " language " : " c " , <nl> + " name " : " api_fuzzer_one_entry " , <nl> + " platforms " : [ <nl> + " linux " <nl> + ] , <nl> + " uses_polling " : false <nl> + } , <nl> { <nl> " args " : [ <nl> " test / core / end2end / fuzzers / api_fuzzer_corpus / fe7ac5c3403c7f1673ead3176af4efe7c60b2c02 " <nl> mmm a / tools / run_tests / performance / scenario_config . py <nl> ppp b / tools / run_tests / performance / scenario_config . py <nl> def remove_nonproto_fields ( scenario ) : <nl> scenario . pop ( ' CATEGORIES ' , None ) <nl> scenario . pop ( ' CLIENT_LANGUAGE ' , None ) <nl> scenario . pop ( ' SERVER_LANGUAGE ' , None ) <nl> + scenario . pop ( ' EXCLUDED_POLL_ENGINES ' , None ) <nl> return scenario <nl> <nl> <nl> def _ping_pong_scenario ( name , rpc_type , <nl> categories = DEFAULT_CATEGORIES , <nl> channels = None , <nl> outstanding = None , <nl> - resource_quota_size = None ) : <nl> + resource_quota_size = None , <nl> + excluded_poll_engines = [ ] ) : <nl> " " " Creates a basic ping pong scenario . " " " <nl> scenario = { <nl> ' name ' : name , <nl> def _ping_pong_scenario ( name , rpc_type , <nl> scenario [ ' SERVER_LANGUAGE ' ] = server_language <nl> if categories : <nl> scenario [ ' CATEGORIES ' ] = categories <nl> + if len ( excluded_poll_engines ) : <nl> + # The polling engines for which this scenario is excluded <nl> + scenario [ ' EXCLUDED_POLL_ENGINES ' ] = excluded_poll_engines <nl> return scenario <nl> <nl> <nl> def scenarios ( self ) : <nl> server_type = ' SYNC_SERVER ' , <nl> unconstrained_client = ' async ' , <nl> secure = secure , <nl> - categories = smoketest_categories + [ SCALABLE ] ) <nl> + categories = smoketest_categories + [ SCALABLE ] , <nl> + excluded_poll_engines = [ ' poll - cv ' ] ) <nl> <nl> yield _ping_pong_scenario ( <nl> ' cpp_protobuf_async_client_sync_server_streaming_qps_unconstrained_ % s ' % secstr , <nl> def scenarios ( self ) : <nl> server_type = ' SYNC_SERVER ' , <nl> unconstrained_client = ' async ' , <nl> secure = secure , <nl> - categories = smoketest_categories + [ SCALABLE ] ) <nl> + categories = smoketest_categories + [ SCALABLE ] , <nl> + excluded_poll_engines = [ ' poll - cv ' ] ) <nl> <nl> for rpc_type in [ ' unary ' , ' streaming ' ] : <nl> for synchronicity in [ ' sync ' , ' async ' ] : <nl> mmm a / tools / run_tests / run_tests . py <nl> ppp b / tools / run_tests / run_tests . py <nl> def test_specs ( self ) : <nl> timeout_scaling = 1 <nl> if polling_strategy = = ' poll - cv ' : <nl> timeout_scaling * = 5 <nl> + <nl> + if polling_strategy in target . get ( ' excluded_poll_engines ' , [ ] ) : <nl> + continue <nl> + <nl> + # Scale overall test timeout if running under various sanitizers . <nl> + config = self . args . config <nl> + if ( ' asan ' in config <nl> + or config = = ' msan ' <nl> + or config = = ' tsan ' <nl> + or config = = ' ubsan ' <nl> + or config = = ' helgrind ' <nl> + or config = = ' memcheck ' ) : <nl> + timeout_scaling * = 20 <nl> + <nl> if self . config . build_config in target [ ' exclude_configs ' ] : <nl> continue <nl> if self . args . iomgr_platform in target . get ( ' exclude_iomgrs ' , [ ] ) : <nl>
Merge github . com : grpc / grpc into bm_stream
grpc/grpc
6c1d43bdd2242e68b7e494cb7c6ff511c5dc76ef
2017-02-01T23:26:14Z
mmm a / cocos2dx / CCConfiguration . cpp <nl> ppp b / cocos2dx / CCConfiguration . cpp <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 - 2011 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2010 Ricardo Quesada <nl> <nl> http : / / www . cocos2d - x . org <nl> CCConfiguration : : CCConfiguration ( void ) <nl> , m_bSupportsPVRTC ( false ) <nl> , m_bSupportsNPOT ( false ) <nl> , m_bSupportsBGRA8888 ( false ) <nl> + , m_bSupportsShareableVAO ( false ) <nl> , m_bSupportsDiscardFramebuffer ( false ) <nl> , m_nMaxSamplesAllowed ( 0 ) <nl> , m_pGlExtensions ( NULL ) <nl> bool CCConfiguration : : init ( void ) <nl> m_bSupportsBGRA8888 = checkForGLExtension ( " GL_IMG_texture_format_BGRA888 " ) ; <nl> m_bSupportsDiscardFramebuffer = checkForGLExtension ( " GL_EXT_discard_framebuffer " ) ; <nl> <nl> + m_bSupportsShareableVAO = checkForGLExtension ( " vertex_array_object " ) ; <nl> + <nl> CCLOG ( " cocos2d : GL_MAX_TEXTURE_SIZE : % d " , m_nMaxTextureSize ) ; <nl> CCLOG ( " cocos2d : GL_MAX_TEXTURE_UNITS : % d " , m_nMaxTextureUnits ) ; <nl> CCLOG ( " cocos2d : GL supports PVRTC : % s " , ( m_bSupportsPVRTC ? " YES " : " NO " ) ) ; <nl> CCLOG ( " cocos2d : GL supports BGRA8888 textures : % s " , ( m_bSupportsBGRA8888 ? " YES " : " NO " ) ) ; <nl> CCLOG ( " cocos2d : GL supports NPOT textures : % s " , ( m_bSupportsNPOT ? " YES " : " NO " ) ) ; <nl> CCLOG ( " cocos2d : GL supports discard_framebuffer : % s " , ( m_bSupportsDiscardFramebuffer ? " YES " : " NO " ) ) ; <nl> + CCLOG ( " cocos2d : GL supports shareable VAO : % s " , ( m_bSupportsShareableVAO ? " YES " : " NO " ) ) ; <nl> <nl> bool bEnableProfilers = false ; <nl> <nl> mmm a / cocos2dx / CCConfiguration . h <nl> ppp b / cocos2dx / CCConfiguration . h <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 - 2011 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2010 Ricardo Quesada <nl> <nl> http : / / www . cocos2d - x . org <nl> class CC_DLL CCConfiguration : public CCObject <nl> return m_bSupportsDiscardFramebuffer ; <nl> } <nl> <nl> + / * * Whether or not shareable VAOs are supported . <nl> + @ since v2 . 0 . 0 <nl> + * / <nl> + inline bool isSupportsShareableVAO ( void ) <nl> + { <nl> + return m_bSupportsShareableVAO ; <nl> + } <nl> + <nl> / * * returns whether or not an OpenGL is supported * / <nl> bool checkForGLExtension ( const std : : string & searchName ) ; <nl> <nl> class CC_DLL CCConfiguration : public CCObject <nl> bool m_bSupportsNPOT ; <nl> bool m_bSupportsBGRA8888 ; <nl> bool m_bSupportsDiscardFramebuffer ; <nl> + bool m_bSupportsShareableVAO ; <nl> GLint m_nMaxSamplesAllowed ; <nl> GLint m_nMaxTextureUnits ; <nl> char * m_pGlExtensions ; <nl> mmm a / cocos2dx / CCDirector . cpp <nl> ppp b / cocos2dx / CCDirector . cpp <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 - 2011 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2008 - 2010 Ricardo Quesada <nl> Copyright ( c ) 2011 Zynga Inc . <nl> <nl> void CCDirector : : setProjection ( ccDirectorProjection kProjection ) <nl> <nl> case kCCDirectorProjection3D : <nl> { <nl> - / / reset the viewport if 3d proj & retina display <nl> - if ( CC_CONTENT_SCALE_FACTOR ( ) ! = 1 . 0f ) <nl> - { <nl> - glViewport ( ( GLint ) - size . width / 2 , ( GLint ) - size . height / 2 , ( GLsizei ) ( size . width * CC_CONTENT_SCALE_FACTOR ( ) ) , ( GLsizei ) ( size . height * CC_CONTENT_SCALE_FACTOR ( ) ) ) ; <nl> - } <nl> + / / cjh / / reset the viewport if 3d proj & retina display <nl> + / / if ( CC_CONTENT_SCALE_FACTOR ( ) ! = 1 . 0f ) <nl> + / / { <nl> + / / glViewport ( ( GLint ) - size . width / 2 , ( GLint ) - size . height / 2 , ( GLsizei ) ( size . width * CC_CONTENT_SCALE_FACTOR ( ) ) , ( GLsizei ) ( size . height * CC_CONTENT_SCALE_FACTOR ( ) ) ) ; <nl> + / / } <nl> <nl> float zeye = this - > getZEye ( ) ; <nl> <nl> void CCDirector : : setProjection ( ccDirectorProjection kProjection ) <nl> kmGLLoadIdentity ( ) ; <nl> <nl> / / issue # 1334 <nl> - if ( m_pobOpenGLView & & m_pobOpenGLView - > isIpad ( ) & & m_pobOpenGLView - > getMainScreenScale ( ) > 1 . 0f ) <nl> - { <nl> - kmMat4PerspectiveProjection ( & matrixPerspective , 60 , ( GLfloat ) size . width / size . height , zeye - size . height / 2 , zeye + size . height / 2 ) ; <nl> - } <nl> - else <nl> - { <nl> - kmMat4PerspectiveProjection ( & matrixPerspective , 60 , ( GLfloat ) size . width / size . height , 0 . 5f , 1500 ) ; <nl> - } <nl> + kmMat4PerspectiveProjection ( & matrixPerspective , 60 , ( GLfloat ) size . width / size . height , 0 . 1f , zeye * 2 ) ; <nl> + / / kmMat4PerspectiveProjection ( & matrixPerspective , 60 , ( GLfloat ) size . width / size . height , 0 . 1f , 1500 ) ; <nl> + <nl> + / / cjh if ( m_pobOpenGLView & & m_pobOpenGLView - > isIpad ( ) & & m_pobOpenGLView - > getMainScreenScale ( ) > 1 . 0f ) <nl> + / / { <nl> + / / kmMat4PerspectiveProjection ( & matrixPerspective , 60 , ( GLfloat ) size . width / size . height , zeye - size . height / 2 , zeye + size . height / 2 ) ; <nl> + / / } <nl> + / / else <nl> + / / { <nl> + / / kmMat4PerspectiveProjection ( & matrixPerspective , 60 , ( GLfloat ) size . width / size . height , 0 . 5f , 1500 ) ; <nl> + / / } <nl> <nl> / / kmMat4PerspectiveProjection ( & matrixPerspective , 60 , ( GLfloat ) size . width / size . height , 0 . 1f , 1500 ) ; <nl> kmGLMultMatrix ( & matrixPerspective ) ; <nl> mmm a / cocos2dx / CCDrawingPrimitives . cpp <nl> ppp b / cocos2dx / CCDrawingPrimitives . cpp <nl> THE SOFTWARE . <nl> # include " ccGLStateCache . h " <nl> # include " CCShaderCache . h " <nl> # include " CCGLProgram . h " <nl> + # include " CCActionCatmullRom . h " <nl> # include < string . h > <nl> # include < cmath > <nl> <nl> void ccDrawLine ( const CCPoint & origin , const CCPoint & destination ) <nl> CC_INCREMENT_GL_DRAWS ( 1 ) ; <nl> } <nl> <nl> + void ccDrawRect ( CCPoint origin , CCPoint destination ) <nl> + { <nl> + ccDrawLine ( CCPointMake ( origin . x , origin . y ) , CCPointMake ( destination . x , origin . y ) ) ; <nl> + ccDrawLine ( CCPointMake ( destination . x , origin . y ) , CCPointMake ( destination . x , destination . y ) ) ; <nl> + ccDrawLine ( CCPointMake ( destination . x , destination . y ) , CCPointMake ( origin . x , destination . y ) ) ; <nl> + ccDrawLine ( CCPointMake ( origin . x , destination . y ) , CCPointMake ( origin . x , origin . y ) ) ; <nl> + } <nl> + <nl> + void ccDrawSolidRect ( CCPoint origin , CCPoint destination , ccColor4F color ) <nl> + { <nl> + CCPoint vertices [ ] = { <nl> + origin , <nl> + { destination . x , origin . y } , <nl> + destination , <nl> + { origin . x , destination . y } , <nl> + } ; <nl> + <nl> + ccDrawSolidPoly ( vertices , 4 , color ) ; <nl> + } <nl> <nl> void ccDrawPoly ( const CCPoint * poli , unsigned int numberOfPoints , bool closePolygon ) <nl> { <nl> void ccDrawPoly ( const CCPoint * poli , unsigned int numberOfPoints , bool closePol <nl> CC_INCREMENT_GL_DRAWS ( 1 ) ; <nl> } <nl> <nl> - void ccDrawFilledPoly ( const CCPoint * poli , unsigned int numberOfPoints , ccColor4F color ) <nl> + void ccDrawSolidPoly ( const CCPoint * poli , unsigned int numberOfPoints , ccColor4F color ) <nl> { <nl> lazy_init ( ) ; <nl> <nl> void ccDrawQuadBezier ( const CCPoint & origin , const CCPoint & control , const CCPoi <nl> CC_INCREMENT_GL_DRAWS ( 1 ) ; <nl> } <nl> <nl> + void ccDrawCatmullRom ( CCPointArray * points , unsigned int segments ) <nl> + { <nl> + ccDrawCardinalSpline ( points , 0 . 5f , segments ) ; <nl> + } <nl> + <nl> + void ccDrawCardinalSpline ( CCPointArray * config , CCFloat tension , unsigned int segments ) <nl> + { <nl> + lazy_init ( ) ; <nl> + <nl> + ccVertex2F * vertices = new ccVertex2F [ segments + 1 ] ; <nl> + <nl> + unsigned int p ; <nl> + CCFloat lt ; <nl> + CCFloat deltaT = 1 . 0f / config - > count ( ) ; <nl> + <nl> + for ( unsigned int i = 0 ; i < segments + 1 ; i + + ) { <nl> + <nl> + CCFloat dt = ( CCFloat ) i / segments ; <nl> + <nl> + / / border <nl> + if ( dt = = 1 ) { <nl> + p = config - > count ( ) - 1 ; <nl> + lt = 1 ; <nl> + } else { <nl> + p = dt / deltaT ; <nl> + lt = ( dt - deltaT * ( CCFloat ) p ) / deltaT ; <nl> + } <nl> + <nl> + / / Interpolate <nl> + CCPoint pp0 = config - > getControlPointAtIndex ( p - 1 ) ; <nl> + CCPoint pp1 = config - > getControlPointAtIndex ( p + 0 ) ; <nl> + CCPoint pp2 = config - > getControlPointAtIndex ( p + 1 ) ; <nl> + CCPoint pp3 = config - > getControlPointAtIndex ( p + 2 ) ; <nl> + <nl> + CCPoint newPos = ccCardinalSplineAt ( pp0 , pp1 , pp2 , pp3 , tension , lt ) ; <nl> + vertices [ i ] . x = newPos . x ; <nl> + vertices [ i ] . y = newPos . y ; <nl> + } <nl> + <nl> + shader_ - > use ( ) ; <nl> + shader_ - > setUniformForModelViewProjectionMatrix ( ) ; <nl> + shader_ - > setUniformLocationWith4fv ( colorLocation_ , ( GLfloat * ) & color_ . r , 1 ) ; <nl> + <nl> + ccGLEnableVertexAttribs ( kCCVertexAttribFlag_Position ) ; <nl> + <nl> + glVertexAttribPointer ( kCCVertexAttrib_Position , 2 , GL_FLOAT , GL_FALSE , 0 , vertices ) ; <nl> + glDrawArrays ( GL_LINE_STRIP , 0 , ( GLsizei ) segments + 1 ) ; <nl> + <nl> + CC_SAFE_DELETE_ARRAY ( vertices ) ; <nl> + CC_INCREMENT_GL_DRAWS ( 1 ) ; <nl> + } <nl> + <nl> void ccDrawCubicBezier ( const CCPoint & origin , const CCPoint & control1 , const CCPoint & control2 , const CCPoint & destination , unsigned int segments ) <nl> { <nl> lazy_init ( ) ; <nl> mmm a / cocos2dx / CCDrawingPrimitives . h <nl> ppp b / cocos2dx / CCDrawingPrimitives . h <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 - 2011 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2008 - 2010 Ricardo Quesada <nl> Copyright ( c ) 2011 Zynga Inc . <nl> <nl> THE SOFTWARE . <nl> <nl> NS_CC_BEGIN <nl> <nl> + class CCPointArray ; <nl> + <nl> / * * initlialize context * / <nl> void CC_DLL ccDrawInit ( ) ; <nl> <nl> void CC_DLL ccDrawPoints ( const CCPoint * points , unsigned int numberOfPoints ) ; <nl> / * * draws a line given the origin and destination point measured in points * / <nl> void CC_DLL ccDrawLine ( const CCPoint & origin , const CCPoint & destination ) ; <nl> <nl> + / * * draws a rectangle given the origin and destination point measured in points . * / <nl> + void CC_DLL ccDrawRect ( CCPoint origin , CCPoint destination ) ; <nl> + <nl> + / * * draws a solid rectangle given the origin and destination point measured in points . <nl> + @ since 1 . 1 <nl> + * / <nl> + void CC_DLL ccDrawSolidRect ( CCPoint origin , CCPoint destination , ccColor4F color ) ; <nl> + <nl> / * * draws a poligon given a pointer to CCPoint coordiantes and the number of vertices measured in points . <nl> The polygon can be closed or open <nl> * / <nl> void CC_DLL ccDrawPoly ( const CCPoint * vertices , unsigned int numOfVertices , bool closePolygon ) ; <nl> <nl> - / * * draws a filled polygon given a pointer to CGPoint coordiantes , the number of vertices measured in points , and a color . <nl> + / * * draws a solid polygon given a pointer to CGPoint coordiantes , the number of vertices measured in points , and a color . <nl> * / <nl> - void CC_DLL ccDrawFilledPoly ( const CCPoint * poli , unsigned int numberOfPoints , ccColor4F color ) ; <nl> + void CC_DLL ccDrawSolidPoly ( const CCPoint * poli , unsigned int numberOfPoints , ccColor4F color ) ; <nl> <nl> / * * draws a circle given the center , radius and number of segments . * / <nl> void CC_DLL ccDrawCircle ( const CCPoint & center , float radius , float angle , unsigned int segments , bool drawLineToCenter ) ; <nl> <nl> / * * draws a quad bezier path <nl> + @ warning This function could be pretty slow . Use it only for debugging purposes . <nl> @ since v0 . 8 <nl> * / <nl> void CC_DLL ccDrawQuadBezier ( const CCPoint & origin , const CCPoint & control , const CCPoint & destination , unsigned int segments ) ; <nl> <nl> / * * draws a cubic bezier path <nl> + @ warning This function could be pretty slow . Use it only for debugging purposes . <nl> @ since v0 . 8 <nl> * / <nl> void CC_DLL ccDrawCubicBezier ( const CCPoint & origin , const CCPoint & control1 , const CCPoint & control2 , const CCPoint & destination , unsigned int segments ) ; <nl> <nl> + / * * draws a Catmull Rom path . <nl> + @ warning This function could be pretty slow . Use it only for debugging purposes . <nl> + @ since v2 . 0 <nl> + * / <nl> + void CC_DLL ccDrawCatmullRom ( CCPointArray * arrayOfControlPoints , unsigned int segments ) ; <nl> + <nl> + / * * draws a Cardinal Spline path . <nl> + @ warning This function could be pretty slow . Use it only for debugging purposes . <nl> + @ since v2 . 0 <nl> + * / <nl> + void CC_DLL ccDrawCardinalSpline ( CCPointArray * config , CCFloat tension , unsigned int segments ) ; <nl> + <nl> / * * set the drawing color with 4 unsigned bytes <nl> @ since v2 . 0 <nl> * / <nl> mmm a / cocos2dx / CCScheduler . cpp <nl> ppp b / cocos2dx / CCScheduler . cpp <nl> void CCScheduler : : scheduleSelector ( SEL_SCHEDULE pfnSelector , CCObject * pTarget , <nl> <nl> void CCScheduler : : scheduleSelector ( SEL_SCHEDULE pfnSelector , CCObject * pTarget , ccTime fInterval , bool bPaused , unsigned int repeat , ccTime delay ) <nl> { <nl> - CCAssert ( pfnSelector , " " ) ; <nl> - CCAssert ( pTarget , " " ) ; <nl> + CCAssert ( pfnSelector , " Argument selector must be non - NULL " ) ; <nl> + CCAssert ( pTarget , " Argument target must be non - NULL " ) ; <nl> <nl> tHashSelectorEntry * pElement = NULL ; <nl> HASH_FIND_INT ( m_pHashForSelectors , & pTarget , pElement ) ; <nl> void CCScheduler : : scheduleSelector ( SEL_SCHEDULE pfnSelector , CCObject * pTarget , <nl> <nl> if ( pfnSelector = = timer - > m_pfnSelector ) <nl> { <nl> - CCLOG ( " CCSheduler # scheduleSelector . Selector already scheduled . " ) ; <nl> + CCLOG ( " CCScheduler # scheduleSelector . Selector already scheduled . Updating interval from : % . 4f to % . 4f " , timer - > getInterval ( ) , fInterval ) ; <nl> timer - > m_fInterval = fInterval ; <nl> return ; <nl> } <nl> void CCScheduler : : unscheduleUpdateForTarget ( const CCObject * pTarget ) <nl> } <nl> <nl> void CCScheduler : : unscheduleAllSelectors ( void ) <nl> + { <nl> + unscheduleAllSelectorsWithMinPriority ( kCCPrioritySystem ) ; <nl> + } <nl> + <nl> + void CCScheduler : : unscheduleAllSelectorsWithMinPriority ( int nMinPriority ) <nl> { <nl> / / Custom Selectors <nl> tHashSelectorEntry * pElement = NULL ; <nl> void CCScheduler : : unscheduleAllSelectors ( void ) <nl> <nl> / / Updates selectors <nl> tListEntry * pEntry , * pTmp ; <nl> - DL_FOREACH_SAFE ( m_pUpdates0List , pEntry , pTmp ) <nl> + if ( nMinPriority < 0 ) <nl> { <nl> - unscheduleUpdateForTarget ( pEntry - > target ) ; <nl> + DL_FOREACH_SAFE ( m_pUpdatesNegList , pEntry , pTmp ) <nl> + { <nl> + if ( pEntry - > priority > = nMinPriority ) <nl> + { <nl> + unscheduleUpdateForTarget ( pEntry - > target ) ; <nl> + } <nl> + } <nl> } <nl> - DL_FOREACH_SAFE ( m_pUpdatesNegList , pEntry , pTmp ) <nl> + <nl> + if ( nMinPriority < = 0 ) <nl> { <nl> - unscheduleUpdateForTarget ( pEntry - > target ) ; <nl> + DL_FOREACH_SAFE ( m_pUpdates0List , pEntry , pTmp ) <nl> + { <nl> + unscheduleUpdateForTarget ( pEntry - > target ) ; <nl> + } <nl> } <nl> + <nl> DL_FOREACH_SAFE ( m_pUpdatesPosList , pEntry , pTmp ) <nl> { <nl> - unscheduleUpdateForTarget ( pEntry - > target ) ; <nl> + if ( pEntry - > priority > = nMinPriority ) <nl> + { <nl> + unscheduleUpdateForTarget ( pEntry - > target ) ; <nl> + } <nl> } <nl> <nl> if ( m_pScriptHandlerEntries ) <nl> bool CCScheduler : : isTargetPaused ( CCObject * pTarget ) <nl> return false ; / / should never get here <nl> } <nl> <nl> + CCSet * CCScheduler : : pauseAllTargets ( ) <nl> + { <nl> + return pauseAllTargetsWithMinPriority ( kCCPrioritySystem ) ; <nl> + } <nl> + <nl> + CCSet * CCScheduler : : pauseAllTargetsWithMinPriority ( int nMinPriority ) <nl> + { <nl> + CCSet * idsWithSelectors = new CCSet ( ) ; / / setWithCapacity : 50 ] ; <nl> + idsWithSelectors - > autorelease ( ) ; <nl> + <nl> + / / Custom Selectors <nl> + for ( tHashSelectorEntry * element = m_pHashForSelectors ; element ! = NULL ; <nl> + element = ( tHashSelectorEntry * ) element - > hh . next ) <nl> + { <nl> + element - > paused = true ; <nl> + idsWithSelectors - > addObject ( element - > target ) ; <nl> + } <nl> + <nl> + / / Updates selectors <nl> + tListEntry * entry , * tmp ; <nl> + if ( nMinPriority < 0 ) <nl> + { <nl> + DL_FOREACH_SAFE ( m_pUpdatesNegList , entry , tmp ) <nl> + { <nl> + if ( entry - > priority > = nMinPriority ) <nl> + { <nl> + entry - > paused = true ; <nl> + idsWithSelectors - > addObject ( entry - > target ) ; <nl> + } <nl> + } <nl> + } <nl> + <nl> + if ( nMinPriority < = 0 ) <nl> + { <nl> + DL_FOREACH_SAFE ( m_pUpdates0List , entry , tmp ) <nl> + { <nl> + entry - > paused = true ; <nl> + idsWithSelectors - > addObject ( entry - > target ) ; <nl> + } <nl> + } <nl> + <nl> + DL_FOREACH_SAFE ( m_pUpdatesPosList , entry , tmp ) <nl> + { <nl> + if ( entry - > priority > = nMinPriority ) <nl> + { <nl> + entry - > paused = true ; <nl> + idsWithSelectors - > addObject ( entry - > target ) ; <nl> + } <nl> + } <nl> + <nl> + return idsWithSelectors ; <nl> + } <nl> + <nl> + void CCScheduler : : resumeTargets ( CCSet * pTargetsToResume ) <nl> + { <nl> + CCSetIterator iter ; <nl> + for ( iter = pTargetsToResume - > begin ( ) ; iter ! = pTargetsToResume - > end ( ) ; + + iter ) <nl> + { <nl> + resumeTarget ( * iter ) ; <nl> + } <nl> + } <nl> + <nl> / / main loop <nl> void CCScheduler : : update ( ccTime dt ) <nl> { <nl> mmm a / cocos2dx / CCScheduler . h <nl> ppp b / cocos2dx / CCScheduler . h <nl> THE SOFTWARE . <nl> <nl> NS_CC_BEGIN <nl> <nl> + / / Priority level reserved for system services . <nl> + # define kCCPrioritySystem INT_MIN <nl> + <nl> + / / Minimum priority level for user scheduling . <nl> + # define kCCPriorityNonSystemMin ( kCCPrioritySystem + 1 ) <nl> + <nl> + class CCSet ; <nl> / / <nl> / / CCTimer <nl> / / <nl> class CC_DLL CCScheduler : public CCObject <nl> * / <nl> void unscheduleAllSelectors ( void ) ; <nl> <nl> + / * * Unschedules all selectors from all targets with a minimum priority . <nl> + You should only call this with kCCPriorityNonSystemMin or higher . <nl> + @ since v2 . 0 . 0 <nl> + * / <nl> + void unscheduleAllSelectorsWithMinPriority ( int nMinPriority ) ; <nl> + <nl> / * * The scheduled script callback will be called every ' interval ' seconds . <nl> If paused is YES , then it won ' t be called until it is resumed . <nl> If ' interval ' is 0 , it will be called every frame . <nl> class CC_DLL CCScheduler : public CCObject <nl> * / <nl> bool isTargetPaused ( CCObject * pTarget ) ; <nl> <nl> + / * * Pause all selectors from all targets . <nl> + You should NEVER call this method , unless you know what you are doing . <nl> + @ since v2 . 0 . 0 <nl> + * / <nl> + CCSet * pauseAllTargets ( ) ; <nl> + <nl> + / * * Pause all selectors from all targets with a minimum priority . <nl> + You should only call this with kCCPriorityNonSystemMin or higher . <nl> + @ since v2 . 0 . 0 <nl> + * / <nl> + CCSet * pauseAllTargetsWithMinPriority ( int nMinPriority ) ; <nl> + <nl> + / * * Resume selectors on a set of targets . <nl> + This can be useful for undoing a call to pauseAllSelectors . <nl> + @ since v2 . 0 . 0 <nl> + * / <nl> + void resumeTargets ( CCSet * targetsToResume ) ; <nl> + <nl> private : <nl> void removeHashElement ( struct _hashSelectorEntry * pElement ) ; <nl> void removeUpdateFromHash ( struct _listEntry * entry ) ; <nl> mmm a / cocos2dx / cocoa / CCArray . cpp <nl> ppp b / cocos2dx / cocoa / CCArray . cpp <nl> bool CCArray : : init ( ) <nl> <nl> bool CCArray : : initWithObject ( CCObject * pObject ) <nl> { <nl> - ccArrayFree ( data ) ; <nl> + ccArrayFree ( & data ) ; <nl> bool bRet = initWithCapacity ( 1 ) ; <nl> if ( bRet ) <nl> { <nl> bool CCArray : : initWithObject ( CCObject * pObject ) <nl> / * * Initializes an array with some objects * / <nl> bool CCArray : : initWithObjects ( CCObject * pObject , . . . ) <nl> { <nl> - ccArrayFree ( data ) ; <nl> + ccArrayFree ( & data ) ; <nl> bool bRet = false ; <nl> do <nl> { <nl> bool CCArray : : initWithObjects ( CCObject * pObject , . . . ) <nl> <nl> bool CCArray : : initWithCapacity ( unsigned int capacity ) <nl> { <nl> - ccArrayFree ( data ) ; <nl> + ccArrayFree ( & data ) ; <nl> data = ccArrayNew ( capacity ) ; <nl> return true ; <nl> } <nl> <nl> bool CCArray : : initWithArray ( CCArray * otherArray ) <nl> { <nl> - ccArrayFree ( data ) ; <nl> + ccArrayFree ( & data ) ; <nl> bool bRet = false ; <nl> do <nl> { <nl> bool CCArray : : containsObject ( CCObject * object ) <nl> return ccArrayContainsObject ( data , object ) ; <nl> } <nl> <nl> + bool CCArray : : isEqualToArray ( CCArray * otherArray ) <nl> + { <nl> + for ( int i = 0 ; i < this - > count ( ) ; i + + ) <nl> + { <nl> + if ( ! this - > objectAtIndex ( i ) - > isEqual ( otherArray - > objectAtIndex ( i ) ) ) <nl> + { <nl> + return false ; <nl> + } <nl> + } <nl> + return true ; <nl> + } <nl> + <nl> void CCArray : : addObject ( CCObject * object ) <nl> { <nl> ccArrayAppendObjectWithResize ( data , object ) ; <nl> void CCArray : : exchangeObjectAtIndex ( unsigned int index1 , unsigned int index2 ) <nl> ccArraySwapObjectsAtIndexes ( data , index1 , index2 ) ; <nl> } <nl> <nl> + void CCArray : : replaceObjectAtIndex ( unsigned int index , CCObject * pObject , bool bReleaseObject / * = true * / ) <nl> + { <nl> + ccArrayInsertObjectAtIndex ( data , pObject , index ) ; <nl> + ccArrayRemoveObjectAtIndex ( data , index + 1 ) ; <nl> + } <nl> + <nl> void CCArray : : reverseObjects ( ) <nl> { <nl> if ( data - > num > 1 ) <nl> void CCArray : : reduceMemoryFootprint ( ) <nl> <nl> CCArray : : ~ CCArray ( ) <nl> { <nl> - ccArrayFree ( data ) ; <nl> + ccArrayFree ( & data ) ; <nl> } <nl> <nl> - void CCArray : : replaceObjectAtIndex ( unsigned int uIndex , CCObject * pObject , bool bReleaseObject / * = true * / ) <nl> - { <nl> - if ( bReleaseObject & & uIndex < data - > num & & data - > arr [ uIndex ] ! = NULL ) <nl> - { <nl> - data - > arr [ uIndex ] - > release ( ) ; <nl> - } <nl> <nl> - data - > arr [ uIndex ] = pObject ; <nl> - <nl> - / / add the ref <nl> - if ( pObject ) <nl> - { <nl> - pObject - > retain ( ) ; <nl> - } <nl> - } <nl> <nl> CCObject * CCArray : : copyWithZone ( CCZone * pZone ) <nl> { <nl> CCObject * CCArray : : copyWithZone ( CCZone * pZone ) <nl> return pArray ; <nl> } <nl> <nl> + / / # pragma mark CCArray - sorting <nl> + <nl> + / * * @ since 1 . 1 * / <nl> + / / # pragma mark - <nl> + / / # pragma mark CCArray insertionSortUsingCFuncComparator <nl> + <nl> + void CCArray : : insertionSortUsingCFuncComparator ( cc_comparator comparator ) <nl> + { <nl> + cc_insertionSort ( data , comparator ) ; <nl> + } <nl> + <nl> + / / # pragma mark CCArray qsortUsingCFuncComparator <nl> + <nl> + void CCArray : : qsortUsingCFuncComparator ( cc_comparator comparator ) <nl> + { <nl> + / / stable c qsort is used - cost of sorting : best n * log ( n ) , average n * log ( n ) <nl> + / / qsort ( void * , size_t , size_t , int ( * ) ( const void * arg1 , const void * arg2 ) ) ; <nl> + <nl> + qsort ( data - > arr , data - > num , sizeof ( CCObject * ) , comparator ) ; <nl> + } <nl> + <nl> + / / # pragma mark CCArray mergesortLUsingCFuncComparator <nl> + <nl> + void CCArray : : mergesortLUsingCFuncComparator ( cc_comparator comparator ) <nl> + { <nl> + cc_mergesortL ( data , sizeof ( CCObject * ) , comparator ) ; <nl> + } <nl> + <nl> + / / # pragma mark CCArray insertionSort with ( SEL ) selector <nl> + <nl> + void CCArray : : insertionSort ( SEL_Compare selector ) / / It sorts source array in ascending order <nl> + { <nl> + int i , j , length = data - > num ; <nl> + <nl> + CCObject * * x = data - > arr ; <nl> + CCObject * temp ; <nl> + <nl> + / / insertion sort <nl> + for ( i = 1 ; i < length ; i + + ) <nl> + { <nl> + j = i ; <nl> + / / continue moving element downwards while order is descending <nl> + while ( j > 0 & & ( x [ j - 1 ] - > * selector ) ( x [ j ] ) = = CCOrderedDescending ) <nl> + { <nl> + temp = x [ j ] ; <nl> + x [ j ] = x [ j - 1 ] ; <nl> + x [ j - 1 ] = temp ; <nl> + j - - ; <nl> + } <nl> + } <nl> + } <nl> + <nl> + static inline int selectorCompare ( CCObject * object1 , CCObject * object2 , SEL_Compare selector ) <nl> + { <nl> + return ( int ) ( object1 - > * selector ) ( object2 ) ; <nl> + } <nl> + <nl> + void CCArray : : sortUsingSelector ( SEL_Compare selector ) <nl> + { <nl> + this - > sortUsingFunction ( selectorCompare , selector ) ; <nl> + } <nl> + <nl> + / / # pragma mark CCArray sortUsingFunction <nl> + <nl> + / / using a comparison function <nl> + void CCArray : : sortUsingFunction ( int ( * compare ) ( CCObject * , CCObject * , SEL_Compare ) , SEL_Compare context ) <nl> + { <nl> + int h , i , j , k , l , m , n = this - > count ( ) ; <nl> + CCObject * A , * * B = ( CCObject * * ) malloc ( ( n / 2 + 1 ) * sizeof ( CCObject * ) ) ; <nl> + <nl> + / / to prevent retain counts from temporarily hitting zero . <nl> + for ( i = 0 ; i < n ; i + + ) <nl> + { <nl> + / / [ [ self objectAtIndex : i ] retain ] ; / / prevents compiler warning <nl> + data - > arr [ i ] - > retain ( ) ; <nl> + } <nl> + <nl> + for ( h = 1 ; h < n ; h + = h ) <nl> + { <nl> + for ( m = n - 1 - h ; m > = 0 ; m - = h + h ) <nl> + { <nl> + l = m - h + 1 ; <nl> + if ( l < 0 ) <nl> + { <nl> + l = 0 ; <nl> + } <nl> + <nl> + for ( i = 0 , j = l ; j < = m ; i + + , j + + ) <nl> + { <nl> + B [ i ] = this - > objectAtIndex ( j ) ; <nl> + } <nl> + <nl> + for ( i = 0 , k = l ; k < j & & j < = m + h ; k + + ) <nl> + { <nl> + A = this - > objectAtIndex ( j ) ; <nl> + if ( compare ( A , B [ i ] , context ) = = CCOrderedDescending ) <nl> + { <nl> + this - > replaceObjectAtIndex ( k , B [ i + + ] ) ; <nl> + } <nl> + else <nl> + { <nl> + this - > replaceObjectAtIndex ( k , A ) ; <nl> + j + + ; <nl> + } <nl> + } <nl> + <nl> + while ( k < j ) <nl> + { <nl> + this - > replaceObjectAtIndex ( k + + , B [ i + + ] ) ; <nl> + } <nl> + } <nl> + } <nl> + <nl> + for ( i = 0 ; i < n ; i + + ) <nl> + { <nl> + / / [ [ self objectAtIndex : i ] release ] ; / / prevents compiler warning <nl> + data - > arr [ i ] - > release ( ) ; <nl> + } <nl> + <nl> + free ( B ) ; <nl> + } <nl> + <nl> + void CCArray : : makeObjectsPerformSelector ( SEL_CallFunc aSelector ) <nl> + { <nl> + ccArrayMakeObjectsPerformSelector ( data , aSelector ) ; <nl> + } <nl> + <nl> + void CCArray : : makeObjectsPerformSelectorWithObject ( SEL_CallFuncO aSelector , CCObject * object ) <nl> + { <nl> + ccArrayMakeObjectsPerformSelectorWithObject ( data , aSelector , object ) ; <nl> + } <nl> + <nl> + void CCArray : : makeObjectPerformSelectorWithArrayObjects ( CCObject * object , SEL_CallFuncO aSelector ) <nl> + { <nl> + ccArrayMakeObjectPerformSelectorWithArrayObjects ( data , aSelector , object ) ; <nl> + } <nl> + <nl> NS_CC_END <nl> mmm a / cocos2dx / cocoa / CCArray . h <nl> ppp b / cocos2dx / cocoa / CCArray . h <nl> class CC_DLL CCArray : public CCObject <nl> CCObject * randomObject ( ) ; <nl> / * * Returns a Boolean value that indicates whether object is present in array . * / <nl> bool containsObject ( CCObject * object ) ; <nl> - <nl> + / * * @ since 1 . 1 * / <nl> + bool isEqualToArray ( CCArray * pOtherArray ) ; <nl> / / Adding Objects <nl> <nl> / * * Add a certain object * / <nl> class CC_DLL CCArray : public CCObject <nl> void exchangeObject ( CCObject * object1 , CCObject * object2 ) ; <nl> / * * Swap two elements with certain indexes * / <nl> void exchangeObjectAtIndex ( unsigned int index1 , unsigned int index2 ) ; <nl> + <nl> + / * * Replace object at index with another object . * / <nl> + void replaceObjectAtIndex ( unsigned int uIndex , CCObject * pObject , bool bReleaseObject = true ) ; <nl> + <nl> / * * Revers the array * / <nl> void reverseObjects ( ) ; <nl> / * Shrinks the array so the memory footprint corresponds with the number of items * / <nl> void reduceMemoryFootprint ( ) ; <nl> <nl> - void replaceObjectAtIndex ( unsigned int uIndex , CCObject * pObject , bool bReleaseObject = true ) ; <nl> + / / Sorting Array <nl> + / * * all since @ 1 . 1 * / <nl> + void qsortUsingCFuncComparator ( cc_comparator comparator ) ; / / c qsort is used for sorting <nl> + void insertionSortUsingCFuncComparator ( cc_comparator comparator ) ; / / insertion sort <nl> + void mergesortLUsingCFuncComparator ( cc_comparator comparator ) ; / / mergesort <nl> + void insertionSort ( SEL_Compare selector ) ; / / It sorts source array in ascending order <nl> + void sortUsingFunction ( int ( * compare ) ( CCObject * , CCObject * , SEL_Compare ) , SEL_Compare context ) ; <nl> + void sortUsingSelector ( SEL_Compare selector ) ; <nl> + <nl> + / / Sending Messages to Elements <nl> + <nl> + void makeObjectsPerformSelector ( SEL_CallFunc aSelector ) ; <nl> + void makeObjectsPerformSelectorWithObject ( SEL_CallFuncO aSelector , CCObject * object ) ; <nl> + / * * @ since 1 . 1 * / <nl> + void makeObjectPerformSelectorWithArrayObjects ( CCObject * object , SEL_CallFuncO aSelector ) ; <nl> <nl> / * override functions * / <nl> virtual CCObject * copyWithZone ( CCZone * pZone ) ; <nl> mmm a / cocos2dx / cocoa / CCObject . h <nl> ppp b / cocos2dx / cocoa / CCObject . h <nl> typedef void ( CCObject : : * SEL_CallFuncND ) ( CCNode * , void * ) ; <nl> typedef void ( CCObject : : * SEL_CallFuncO ) ( CCObject * ) ; <nl> typedef void ( CCObject : : * SEL_MenuHandler ) ( CCObject * ) ; <nl> typedef void ( CCObject : : * SEL_EventHandler ) ( CCEvent * ) ; <nl> - <nl> + typedef int ( CCObject : : * SEL_Compare ) ( CCObject * ) ; <nl> + <nl> # define schedule_selector ( _SELECTOR ) ( SEL_SCHEDULE ) ( & _SELECTOR ) <nl> # define callfunc_selector ( _SELECTOR ) ( SEL_CallFunc ) ( & _SELECTOR ) <nl> # define callfuncN_selector ( _SELECTOR ) ( SEL_CallFuncN ) ( & _SELECTOR ) <nl> typedef void ( CCObject : : * SEL_EventHandler ) ( CCEvent * ) ; <nl> # define callfuncO_selector ( _SELECTOR ) ( SEL_CallFuncO ) ( & _SELECTOR ) <nl> # define menu_selector ( _SELECTOR ) ( SEL_MenuHandler ) ( & _SELECTOR ) <nl> # define event_selector ( _SELECTOR ) ( SEL_EventHandler ) ( & _SELECTOR ) <nl> + # define compare_selector ( _SELECTOR ) ( SEL_Compare ) ( & _SELECTOR ) <nl> <nl> NS_CC_END <nl> <nl> mmm a / cocos2dx / cocos2d . cpp <nl> ppp b / cocos2dx / cocos2d . cpp <nl> NS_CC_BEGIN <nl> <nl> const char * cocos2dVersion ( ) <nl> { <nl> - return " cocos2d - 2 . 0 - rc0a - x - 2 . 0 " ; <nl> + return " cocos2d - 2 . 0 - rc2 - x - 2 . 0 " ; <nl> } <nl> <nl> NS_CC_END <nl> mmm a / cocos2dx / include / ccTypes . h <nl> ppp b / cocos2dx / include / ccTypes . h <nl> typedef enum <nl> typedef float ccTime ; <nl> / / typedef double ccTime ; <nl> <nl> - typedef enum <nl> + / / XXX : If any of these enums are edited and / or reordered , udpate CCTexture2D . m <nl> + / / ! Vertical text alignment type <nl> + typedef enum <nl> { <nl> - CCTextAlignmentLeft , <nl> - CCTextAlignmentCenter , <nl> - CCTextAlignmentRight , <nl> + kCCVerticalTextAlignmentTop , <nl> + kCCVerticalTextAlignmentCenter , <nl> + kCCVerticalTextAlignmentBottom , <nl> + } CCVerticalTextAlignment ; <nl> + <nl> + / / XXX : If any of these enums are edited and / or reordered , udpate CCTexture2D . m <nl> + / / ! Horizontal text alignment type <nl> + typedef enum <nl> + { <nl> + kCCTextAlignmentLeft , <nl> + kCCTextAlignmentCenter , <nl> + kCCTextAlignmentRight , <nl> } CCTextAlignment ; <nl> <nl> + / / XXX : If any of these enums are edited and / or reordered , udpate CCTexture2D . m <nl> + / / ! Line break modes <nl> + typedef enum { <nl> + kCCLineBreakModeWordWrap , <nl> + kCCLineBreakModeCharacterWrap , <nl> + kCCLineBreakModeClip , <nl> + kCCLineBreakModeHeadTruncation , <nl> + kCCLineBreakModeTailTruncation , <nl> + kCCLineBreakModeMiddleTruncation <nl> + } CCLineBreakMode ; <nl> + <nl> / / types for animation in particle systems <nl> <nl> / / texture coordinates for a quad <nl> mmm a / cocos2dx / misc_nodes / CCMotionStreak . cpp <nl> ppp b / cocos2dx / misc_nodes / CCMotionStreak . cpp <nl> CCMotionStreak : : CCMotionStreak ( ) <nl> , m_fMinSeg ( 0 . 0f ) <nl> , m_uMaxPoints ( 0 ) <nl> , m_uNuPoints ( 0 ) <nl> + , m_uPreviousNuPoints ( 0 ) <nl> , m_pPointVertexes ( NULL ) <nl> , m_pPointState ( NULL ) <nl> , m_pVertices ( NULL ) <nl> , m_pColorPointer ( NULL ) <nl> , m_pTexCoords ( NULL ) <nl> + , m_bStartingPositionInitialized ( false ) <nl> { <nl> m_tBlendFunc . src = GL_SRC_ALPHA ; <nl> m_tBlendFunc . dst = GL_ONE_MINUS_SRC_ALPHA ; <nl> bool CCMotionStreak : : initWithFade ( float fade , float minSeg , float stroke , ccColo <nl> { <nl> CCNode : : setPosition ( CCPointZero ) ; <nl> setAnchorPoint ( CCPointZero ) ; <nl> - setIsRelativeAnchorPoint ( false ) ; <nl> + setIgnoreAnchorPointForPosition ( true ) ; <nl> + m_bStartingPositionInitialized = false ; <nl> <nl> m_tPositionR = CCPointZero ; <nl> m_bFastMode = true ; <nl> bool CCMotionStreak : : initWithFade ( float fade , float minSeg , float stroke , ccColo <nl> <nl> void CCMotionStreak : : setPosition ( const CCPoint & position ) <nl> { <nl> + m_bStartingPositionInitialized = true ; <nl> m_tPositionR = position ; <nl> } <nl> <nl> bool CCMotionStreak : : getIsOpacityModifyRGB ( void ) <nl> <nl> void CCMotionStreak : : update ( ccTime delta ) <nl> { <nl> + if ( ! m_bStartingPositionInitialized ) <nl> + { <nl> + return ; <nl> + } <nl> + <nl> delta * = m_fFadeDelta ; <nl> <nl> unsigned int newIdx , newIdx2 , i , i2 ; <nl> void CCMotionStreak : : update ( ccTime delta ) <nl> / / Append new point <nl> bool appendNewPoint = true ; <nl> if ( m_uNuPoints > = m_uMaxPoints ) <nl> + { <nl> appendNewPoint = false ; <nl> + } <nl> <nl> else if ( m_uNuPoints > 0 ) <nl> { <nl> bool a1 = ccpDistanceSQ ( m_pPointVertexes [ m_uNuPoints - 1 ] , m_tPositionR ) < m_fMinSeg ; <nl> bool a2 = ( m_uNuPoints = = 1 ) ? false : ( ccpDistanceSQ ( m_pPointVertexes [ m_uNuPoints - 2 ] , m_tPositionR ) < ( m_fMinSeg * 2 . 0f ) ) ; <nl> if ( a1 | | a2 ) <nl> + { <nl> appendNewPoint = false ; <nl> + } <nl> } <nl> <nl> if ( appendNewPoint ) <nl> void CCMotionStreak : : update ( ccTime delta ) <nl> if ( m_uNuPoints > 0 & & m_bFastMode ) <nl> { <nl> if ( m_uNuPoints > 1 ) <nl> - ccVertexLineToPolygon ( m_pPointVertexes , m_fStroke , m_pVertices , m_pTexCoords , m_uNuPoints , 1 ) ; <nl> + { <nl> + ccVertexLineToPolygon ( m_pPointVertexes , m_fStroke , m_pVertices , m_uNuPoints , 1 ) ; <nl> + } <nl> else <nl> - ccVertexLineToPolygon ( m_pPointVertexes , m_fStroke , m_pVertices , m_pTexCoords , 0 , 2 ) ; <nl> + { <nl> + ccVertexLineToPolygon ( m_pPointVertexes , m_fStroke , m_pVertices , 0 , 2 ) ; <nl> + } <nl> } <nl> <nl> m_uNuPoints + + ; <nl> } <nl> <nl> if ( ! m_bFastMode ) <nl> - ccVertexLineToPolygon ( m_pPointVertexes , m_fStroke , m_pVertices , m_pTexCoords , 0 , m_uNuPoints ) ; <nl> + { <nl> + ccVertexLineToPolygon ( m_pPointVertexes , m_fStroke , m_pVertices , 0 , m_uNuPoints ) ; <nl> + } <nl> + <nl> + / / Updated Tex Coords only if they are different than previous step <nl> + if ( m_uNuPoints & & m_uPreviousNuPoints ! = m_uNuPoints ) { <nl> + float texDelta = 1 . 0f / m_uNuPoints ; <nl> + for ( i = 0 ; i < m_uNuPoints ; i + + ) { <nl> + m_pTexCoords [ i * 2 ] = tex2 ( 0 , texDelta * i ) ; <nl> + m_pTexCoords [ i * 2 + 1 ] = tex2 ( 1 , texDelta * i ) ; <nl> + } <nl> + <nl> + m_uPreviousNuPoints = m_uNuPoints ; <nl> + } <nl> } <nl> <nl> void CCMotionStreak : : reset ( ) <nl> mmm a / cocos2dx / misc_nodes / CCMotionStreak . h <nl> ppp b / cocos2dx / misc_nodes / CCMotionStreak . h <nl> class CC_DLL CCMotionStreak : public CCNode , public CCTextureProtocol , public CC <nl> <nl> / * * When fast mode is enbled , new points are added faster but with lower precision * / <nl> CC_SYNTHESIZE ( bool , m_bFastMode , IsFastMode ) ; <nl> + <nl> + CC_SYNTHESIZE ( bool , m_bStartingPositionInitialized , StartingPositionInitialized ) ; <nl> private : <nl> / * * texture used for the motion streak * / <nl> CCTexture2D * m_pTexture ; <nl> class CC_DLL CCMotionStreak : public CCNode , public CCTextureProtocol , public CC <nl> <nl> unsigned int m_uMaxPoints ; <nl> unsigned int m_uNuPoints ; <nl> + unsigned int m_uPreviousNuPoints ; <nl> <nl> / * * Pointers * / <nl> CCPoint * m_pPointVertexes ; <nl> mmm a / cocos2dx / particle_nodes / CCParticleBatchNode . cpp <nl> ppp b / cocos2dx / particle_nodes / CCParticleBatchNode . cpp <nl> void CCParticleBatchNode : : increaseAtlasCapacityTo ( unsigned int quantity ) <nl> <nl> if ( ! m_pTextureAtlas - > resizeCapacity ( quantity ) ) { <nl> / / serious problems <nl> - CCLOG ( " cocos2d : WARNING : Not enough memory to resize the atlas " ) ; <nl> + CCLOGWARN ( " cocos2d : WARNING : Not enough memory to resize the atlas " ) ; <nl> CCAssert ( false , " XXX : CCParticleBatchNode # increaseAtlasCapacity SHALL handle this assert " ) ; <nl> } <nl> } <nl> mmm a / cocos2dx / particle_nodes / CCParticleSystem . cpp <nl> ppp b / cocos2dx / particle_nodes / CCParticleSystem . cpp <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 - 2011 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2008 - 2010 Ricardo Quesada <nl> Copyright ( c ) 2011 Zynga Inc . <nl> <nl> CCParticleSystem : : CCParticleSystem ( ) <nl> , m_fEmissionRate ( 0 ) <nl> , m_uTotalParticles ( 0 ) <nl> , m_pTexture ( NULL ) <nl> + , m_bOpacityModifyRGB ( false ) <nl> , m_bIsBlendAdditive ( false ) <nl> , m_ePositionType ( kCCPositionTypeFree ) <nl> , m_bIsAutoRemoveOnFinish ( false ) <nl> bool CCParticleSystem : : initWithDictionary ( CCDictionary * dictionary ) <nl> / / don ' t get the internal texture if a batchNode is used <nl> if ( ! m_pBatchNode ) <nl> { <nl> + / / Set a compatible default for the alpha transfer <nl> + m_bOpacityModifyRGB = false ; <nl> + <nl> / / texture <nl> / / Try to get the texture from the cache <nl> const char * textureName = dictionary - > valueForKey ( " textureFileName " ) - > getCString ( ) ; <nl> bool CCParticleSystem : : initWithTotalParticles ( unsigned int numberOfParticles ) <nl> <nl> CCParticleSystem : : ~ CCParticleSystem ( ) <nl> { <nl> + unscheduleUpdate ( ) ; <nl> CC_SAFE_FREE ( m_pParticles ) ; <nl> CC_SAFE_RELEASE ( m_pTexture ) ; <nl> } <nl> void CCParticleSystem : : postStep ( ) <nl> / / ParticleSystem - CCTexture protocol <nl> void CCParticleSystem : : setTexture ( CCTexture2D * var ) <nl> { <nl> - CC_SAFE_RETAIN ( var ) ; <nl> - CC_SAFE_RELEASE ( m_pTexture ) ; <nl> - m_pTexture = var ; <nl> - <nl> - / / If the new texture has No premultiplied alpha , AND the blendFunc hasn ' t been changed , then update it <nl> - if ( m_pTexture & & ! m_pTexture - > getHasPremultipliedAlpha ( ) & & <nl> - ( m_tBlendFunc . src = = CC_BLEND_SRC & & m_tBlendFunc . dst = = CC_BLEND_DST ) ) <nl> + if ( m_pTexture ! = var ) <nl> { <nl> - m_tBlendFunc . src = GL_SRC_ALPHA ; <nl> - m_tBlendFunc . dst = GL_ONE_MINUS_SRC_ALPHA ; <nl> + CC_SAFE_RETAIN ( var ) ; <nl> + CC_SAFE_RELEASE ( m_pTexture ) ; <nl> + m_pTexture = var ; <nl> + updateBlendFunc ( ) ; <nl> + } <nl> + } <nl> + <nl> + void CCParticleSystem : : updateBlendFunc ( ) <nl> + { <nl> + CCAssert ( ! m_pBatchNode , " Can ' t change blending functions when the particle is being batched " ) ; <nl> + <nl> + bool premultiplied = m_pTexture - > getHasPremultipliedAlpha ( ) ; <nl> + <nl> + m_bOpacityModifyRGB = false ; <nl> + <nl> + if ( m_pTexture & & ( m_tBlendFunc . src = = CC_BLEND_SRC & & m_tBlendFunc . dst = = CC_BLEND_DST ) ) <nl> + { <nl> + if ( premultiplied ) <nl> + { <nl> + m_bOpacityModifyRGB = true ; <nl> + } <nl> + else <nl> + { <nl> + m_tBlendFunc . src = GL_SRC_ALPHA ; <nl> + m_tBlendFunc . dst = GL_ONE_MINUS_SRC_ALPHA ; <nl> + } <nl> } <nl> } <nl> <nl> ccBlendFunc CCParticleSystem : : getBlendFunc ( ) <nl> return m_tBlendFunc ; <nl> } <nl> <nl> - void CCParticleSystem : : setBlendFunc ( ccBlendFunc var ) <nl> + void CCParticleSystem : : setBlendFunc ( ccBlendFunc blendFunc ) <nl> { <nl> - m_tBlendFunc = var ; <nl> + if ( m_tBlendFunc . src ! = blendFunc . src | | m_tBlendFunc . dst ! = blendFunc . dst ) { <nl> + m_tBlendFunc = blendFunc ; <nl> + this - > updateBlendFunc ( ) ; <nl> + } <nl> } <nl> <nl> tCCPositionType CCParticleSystem : : getPositionType ( ) <nl> mmm a / cocos2dx / particle_nodes / CCParticleSystem . h <nl> ppp b / cocos2dx / particle_nodes / CCParticleSystem . h <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 - 2011 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2008 - 2010 Ricardo Quesada <nl> Copyright ( c ) 2011 Zynga Inc . <nl> <nl> class CC_DLL CCParticleSystem : public CCNode , public CCTextureProtocol <nl> CC_PROPERTY ( CCTexture2D * , m_pTexture , Texture ) <nl> / * * conforms to CocosNodeTexture protocol * / <nl> CC_PROPERTY ( ccBlendFunc , m_tBlendFunc , BlendFunc ) <nl> + / * * does the alpha value modify color * / <nl> + CC_PROPERTY ( bool , m_bOpacityModifyRGB , OpacityModifyRGB ) <nl> + <nl> / * * whether or not the particles are using blend additive . <nl> If enabled , the following blending function will be used . <nl> @ code <nl> class CC_DLL CCParticleSystem : public CCNode , public CCTextureProtocol <nl> <nl> virtual void update ( ccTime dt ) ; <nl> virtual void updateWithNoTime ( void ) ; <nl> + <nl> + protected : <nl> + virtual void updateBlendFunc ( ) ; <nl> } ; <nl> <nl> NS_CC_END <nl> mmm a / cocos2dx / particle_nodes / CCParticleSystemQuad . cpp <nl> ppp b / cocos2dx / particle_nodes / CCParticleSystemQuad . cpp <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 - 2011 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2008 - 2010 Ricardo Quesada <nl> - Copyright ( c ) 2009 Leonardo Kasperavičius <nl> + Copyright ( c ) 2009 Leonardo Kasperavičius <nl> Copyright ( c ) 2011 Zynga Inc . <nl> <nl> http : / / www . cocos2d - x . org <nl> void CCParticleSystemQuad : : updateQuadWithParticle ( tCCParticle * particle , const C <nl> { <nl> quad = & ( m_pQuads [ m_uParticleIdx ] ) ; <nl> } <nl> - ccColor4B color = { ( GLubyte ) ( particle - > color . r * 255 ) , ( GLubyte ) ( particle - > color . g * 255 ) , ( GLubyte ) ( particle - > color . b * 255 ) , <nl> - ( GLubyte ) ( particle - > color . a * 255 ) } ; <nl> + ccColor4B color = ( m_bOpacityModifyRGB ) <nl> + ? ( ccColor4B ) { particle - > color . r * particle - > color . a * 255 , particle - > color . g * particle - > color . a * 255 , particle - > color . b * particle - > color . a * 255 , particle - > color . a * 255 } <nl> + : ( ccColor4B ) { particle - > color . r * 255 , particle - > color . g * 255 , particle - > color . b * 255 , particle - > color . a * 255 } ; <nl> + <nl> quad - > bl . colors = color ; <nl> quad - > br . colors = color ; <nl> quad - > tl . colors = color ; <nl> mmm a / cocos2dx / particle_nodes / CCParticleSystemQuad . h <nl> ppp b / cocos2dx / particle_nodes / CCParticleSystemQuad . h <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 - 2011 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2008 - 2010 Ricardo Quesada <nl> Copyright ( c ) 2009 Leonardo Kasperavičius <nl> - Copyright ( c ) 2011 ynga Inc . <nl> + Copyright ( c ) 2011 Zynga Inc . <nl> <nl> http : / / www . cocos2d - x . org <nl> <nl> Special features and Limitations : <nl> - Particle size can be any float number . <nl> - The system can be scaled <nl> - The particles can be rotated <nl> - - On 1st and 2nd gen iPhones : It is only a bit slower that CCParticleSystemPoint <nl> - - On 3rd gen iPhone and iPads : It is MUCH faster than CCParticleSystemPoint <nl> - - It consumes more RAM and more GPU memory than CCParticleSystemPoint <nl> - It supports subrects <nl> + - It supports batched rendering since 1 . 1 <nl> @ since v0 . 8 <nl> * / <nl> class CC_DLL CCParticleSystemQuad : public CCParticleSystem <nl> mmm a / cocos2dx / proj . win32 / cocos2d - win32 . vcproj <nl> ppp b / cocos2dx / proj . win32 / cocos2d - win32 . vcproj <nl> <nl> < Filter <nl> Name = " data_support " <nl> > <nl> + < File <nl> + RelativePath = " . . \ support \ data_support \ ccCArray . cpp " <nl> + > <nl> + < / File > <nl> < File <nl> RelativePath = " . . \ support \ data_support \ ccCArray . h " <nl> > <nl> mmm a / cocos2dx / sprite_nodes / CCSprite . cpp <nl> ppp b / cocos2dx / sprite_nodes / CCSprite . cpp <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 - 2011 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2008 - 2010 Ricardo Quesada <nl> Copyright ( c ) 2011 Zynga Inc . <nl> <nl> void CCSprite : : setTextureCoords ( CCRect rect ) <nl> bottom = top + ( rect . size . width * 2 - 2 ) / ( 2 * atlasHeight ) ; <nl> # else <nl> left = rect . origin . x / atlasWidth ; <nl> - right = left + ( rect . size . height / atlasWidth ) ; <nl> + right = ( rect . origin . x + rect . size . height ) / atlasWidth ; <nl> top = rect . origin . y / atlasHeight ; <nl> - bottom = top + ( rect . size . width / atlasHeight ) ; <nl> + bottom = ( rect . origin . y + rect . size . width ) / atlasHeight ; <nl> # endif / / CC_FIX_ARTIFACTS_BY_STRECHING_TEXEL <nl> <nl> if ( m_bFlipX ) <nl> void CCSprite : : setTextureCoords ( CCRect rect ) <nl> bottom = top + ( rect . size . height * 2 - 2 ) / ( 2 * atlasHeight ) ; <nl> # else <nl> left = rect . origin . x / atlasWidth ; <nl> - right = left + rect . size . width / atlasWidth ; <nl> + right = ( rect . origin . x + rect . size . width ) / atlasWidth ; <nl> top = rect . origin . y / atlasHeight ; <nl> - bottom = top + rect . size . height / atlasHeight ; <nl> + bottom = ( rect . origin . y + rect . size . height ) / atlasHeight ; <nl> # endif / / ! CC_FIX_ARTIFACTS_BY_STRECHING_TEXEL <nl> <nl> if ( m_bFlipX ) <nl> void CCSprite : : setAnchorPoint ( const CCPoint & anchor ) <nl> SET_DIRTY_RECURSIVELY ( ) ; <nl> } <nl> <nl> - void CCSprite : : setIsRelativeAnchorPoint ( bool bRelative ) <nl> + void CCSprite : : setIgnoreAnchorPointForPosition ( bool value ) <nl> { <nl> - CCAssert ( ! m_pobBatchNode , " relativeTransformAnchor is invalid in CCSprite " ) ; <nl> - CCNode : : setIsRelativeAnchorPoint ( bRelative ) ; <nl> + CCAssert ( ! m_pobBatchNode , " ignoreAnchorPointForPosition is invalid in CCSprite " ) ; <nl> + CCNode : : setIgnoreAnchorPointForPosition ( value ) ; <nl> } <nl> <nl> void CCSprite : : setIsVisible ( bool bVisible ) <nl> void CCSprite : : updateBlendFunc ( void ) <nl> <nl> void CCSprite : : setTexture ( CCTexture2D * texture ) <nl> { <nl> - CCAssert ( ! m_pobBatchNode , " setTexture doesn ' t work when the sprite is rendered using a CCSpriteBatchNode " ) ; <nl> + / / If batchnode , then texture id should be the same <nl> + CCAssert ( ! m_pobBatchNode | | texture . name = = m_pobBatchNode - > getTexture ( ) - > getName ( ) , " CCSprite : Batched sprites should use the same texture as the batchnode " ) ; <nl> / / accept texture = = nil as argument <nl> CCAssert ( ! texture | | dynamic_cast < CCTexture2D * > ( texture ) , " setTexture expects a CCTexture2D . Invalid argument " ) ; <nl> <nl> - if ( m_pobTexture ! = texture ) <nl> + if ( ! m_pobBatchNode & & m_pobTexture ! = texture ) <nl> { <nl> CC_SAFE_RETAIN ( texture ) ; <nl> CC_SAFE_RELEASE ( m_pobTexture ) ; <nl> mmm a / cocos2dx / sprite_nodes / CCSprite . h <nl> ppp b / cocos2dx / sprite_nodes / CCSprite . h <nl> class CC_DLL CCSprite : public CCNode , public CCTextureProtocol , public CCRGBAPr <nl> virtual void setScale ( float fScale ) ; <nl> virtual void setVertexZ ( float fVertexZ ) ; <nl> virtual void setAnchorPoint ( const CCPoint & anchor ) ; <nl> - virtual void setIsRelativeAnchorPoint ( bool bRelative ) ; <nl> + virtual void setIgnoreAnchorPointForPosition ( bool value ) ; <nl> virtual void setIsVisible ( bool bVisible ) ; <nl> void setFlipX ( bool bFlipX ) ; <nl> void setFlipY ( bool bFlipY ) ; <nl> mmm a / cocos2dx / sprite_nodes / CCSpriteBatchNode . cpp <nl> ppp b / cocos2dx / sprite_nodes / CCSpriteBatchNode . cpp <nl> void CCSpriteBatchNode : : increaseAtlasCapacity ( void ) <nl> if ( ! m_pobTextureAtlas - > resizeCapacity ( quantity ) ) <nl> { <nl> / / serious problems <nl> - CCLOG ( " cocos2d : WARNING : Not enough memory to resize the atlas " ) ; <nl> + CCLOGWARN ( " cocos2d : WARNING : Not enough memory to resize the atlas " ) ; <nl> CCAssert ( false , " Not enough memory to resize the atla " ) ; <nl> } <nl> } <nl> mmm a / cocos2dx / sprite_nodes / CCSpriteFrameCache . cpp <nl> ppp b / cocos2dx / sprite_nodes / CCSpriteFrameCache . cpp <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 - 2011 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2008 - 2010 Ricardo Quesada <nl> Copyright ( c ) 2009 Jason Booth <nl> Copyright ( c ) 2009 Robert J Payne <nl> THE SOFTWARE . <nl> # include " CCFileUtils . h " <nl> # include " CCString . h " <nl> # include " CCArray . h " <nl> + # include " CCDictionary . h " <nl> # include < vector > <nl> <nl> using namespace std ; <nl> bool CCSpriteFrameCache : : init ( void ) <nl> { <nl> m_pSpriteFrames = new CCDictionary ( ) ; <nl> m_pSpriteFramesAliases = new CCDictionary ( ) ; <nl> + m_pLoadedFileNames = new std : : set < std : : string > ( ) ; <nl> return true ; <nl> } <nl> <nl> CCSpriteFrameCache : : ~ CCSpriteFrameCache ( void ) <nl> { <nl> CC_SAFE_RELEASE ( m_pSpriteFrames ) ; <nl> CC_SAFE_RELEASE ( m_pSpriteFramesAliases ) ; <nl> + CC_SAFE_DELETE ( m_pLoadedFileNames ) ; <nl> } <nl> <nl> void CCSpriteFrameCache : : addSpriteFramesWithDictionary ( CCDictionary * dictionary , CCTexture2D * pobTexture ) <nl> void CCSpriteFrameCache : : addSpriteFramesWithDictionary ( CCDictionary * dictionary , <nl> } <nl> <nl> / / check the format <nl> - CCAssert ( format > = 0 & & format < = 3 , " " ) ; <nl> + CCAssert ( format > = 0 & & format < = 3 , " format is not supported for CCSpriteFrameCache addSpriteFramesWithDictionary : textureFilename : " ) ; <nl> <nl> CCDictElement * pElement = NULL ; <nl> CCDICT_FOREACH ( framesDict , pElement ) <nl> void CCSpriteFrameCache : : addSpriteFramesWithDictionary ( CCDictionary * dictionary , <nl> / / check ow / oh <nl> if ( ! ow | | ! oh ) <nl> { <nl> - CCLOG ( " cocos2d : WARNING : originalWidth / Height not found on the CCSpriteFrame . AnchorPoint won ' t work as expected . Regenrate the . plist " ) ; <nl> + CCLOGWARN ( " cocos2d : WARNING : originalWidth / Height not found on the CCSpriteFrame . AnchorPoint won ' t work as expected . Regenrate the . plist " ) ; <nl> } <nl> / / abs ow / oh <nl> ow = abs ( ow ) ; <nl> void CCSpriteFrameCache : : addSpriteFramesWithDictionary ( CCDictionary * dictionary , <nl> std : : string oneAlias = ( ( CCString * ) pObj ) - > getCString ( ) ; <nl> if ( m_pSpriteFramesAliases - > objectForKey ( oneAlias . c_str ( ) ) ) <nl> { <nl> - CCLOG ( " cocos2d : WARNING : an alias with name % s already exists " , oneAlias . c_str ( ) ) ; <nl> + CCLOGWARN ( " cocos2d : WARNING : an alias with name % s already exists " , oneAlias . c_str ( ) ) ; <nl> } <nl> <nl> m_pSpriteFramesAliases - > setObject ( frameKey , oneAlias . c_str ( ) ) ; <nl> void CCSpriteFrameCache : : addSpriteFramesWithFile ( const char * plist , const char * <nl> <nl> void CCSpriteFrameCache : : addSpriteFramesWithFile ( const char * pszPlist ) <nl> { <nl> - const char * pszPath = CCFileUtils : : fullPathFromRelativePath ( pszPlist ) ; <nl> - CCDictionary * dict = CCDictionary : : dictionaryWithContentsOfFileThreadSafe ( pszPath ) ; <nl> - <nl> - string texturePath ( " " ) ; <nl> + CCAssert ( pszPlist , " plist filename should not be NULL " ) ; <nl> <nl> - CCDictionary * metadataDict = ( CCDictionary * ) dict - > objectForKey ( " metadata " ) ; <nl> - if ( metadataDict ) <nl> + if ( m_pLoadedFileNames - > find ( pszPlist ) ! = m_pLoadedFileNames - > end ( ) ) <nl> { <nl> - / / try to read texture file name from meta data <nl> - texturePath = metadataDict - > valueForKey ( " textureFileName " ) - > getCString ( ) ; <nl> - } <nl> + const char * pszPath = CCFileUtils : : fullPathFromRelativePath ( pszPlist ) ; <nl> + CCDictionary * dict = CCDictionary : : dictionaryWithContentsOfFileThreadSafe ( pszPath ) ; <nl> <nl> - if ( ! texturePath . empty ( ) ) <nl> - { <nl> - / / build texture path relative to plist file <nl> - texturePath = CCFileUtils : : fullPathFromRelativeFile ( texturePath . c_str ( ) , pszPath ) ; <nl> - } <nl> - else <nl> - { <nl> - / / build texture path by replacing file extension <nl> - texturePath = pszPath ; <nl> + string texturePath ( " " ) ; <nl> <nl> - / / remove . xxx <nl> - size_t startPos = texturePath . find_last_of ( " . " ) ; <nl> - texturePath = texturePath . erase ( startPos ) ; <nl> + CCDictionary * metadataDict = ( CCDictionary * ) dict - > objectForKey ( " metadata " ) ; <nl> + if ( metadataDict ) <nl> + { <nl> + / / try to read texture file name from meta data <nl> + texturePath = metadataDict - > valueForKey ( " textureFileName " ) - > getCString ( ) ; <nl> + } <nl> <nl> - / / append . png <nl> - texturePath = texturePath . append ( " . png " ) ; <nl> + if ( ! texturePath . empty ( ) ) <nl> + { <nl> + / / build texture path relative to plist file <nl> + texturePath = CCFileUtils : : fullPathFromRelativeFile ( texturePath . c_str ( ) , pszPath ) ; <nl> + } <nl> + else <nl> + { <nl> + / / build texture path by replacing file extension <nl> + texturePath = pszPath ; <nl> <nl> - CCLOG ( " cocos2d : CCSpriteFrameCache : Trying to use file % s as texture " , texturePath . c_str ( ) ) ; <nl> - } <nl> + / / remove . xxx <nl> + size_t startPos = texturePath . find_last_of ( " . " ) ; <nl> + texturePath = texturePath . erase ( startPos ) ; <nl> <nl> - CCTexture2D * pTexture = CCTextureCache : : sharedTextureCache ( ) - > addImage ( texturePath . c_str ( ) ) ; <nl> + / / append . png <nl> + texturePath = texturePath . append ( " . png " ) ; <nl> <nl> - if ( pTexture ) <nl> - { <nl> - addSpriteFramesWithDictionary ( dict , pTexture ) ; <nl> - } <nl> - else <nl> - { <nl> - CCLOG ( " cocos2d : CCSpriteFrameCache : Couldn ' t load texture " ) ; <nl> + CCLOG ( " cocos2d : CCSpriteFrameCache : Trying to use file % s as texture " , texturePath . c_str ( ) ) ; <nl> + } <nl> + <nl> + CCTexture2D * pTexture = CCTextureCache : : sharedTextureCache ( ) - > addImage ( texturePath . c_str ( ) ) ; <nl> + <nl> + if ( pTexture ) <nl> + { <nl> + addSpriteFramesWithDictionary ( dict , pTexture ) ; <nl> + m_pLoadedFileNames - > insert ( pszPlist ) ; <nl> + } <nl> + else <nl> + { <nl> + CCLOG ( " cocos2d : CCSpriteFrameCache : Couldn ' t load texture " ) ; <nl> + } <nl> + <nl> + dict - > release ( ) ; <nl> } <nl> <nl> - dict - > release ( ) ; <nl> } <nl> <nl> void CCSpriteFrameCache : : addSpriteFrame ( CCSpriteFrame * pobFrame , const char * pszFrameName ) <nl> void CCSpriteFrameCache : : removeSpriteFrames ( void ) <nl> { <nl> m_pSpriteFrames - > removeAllObjects ( ) ; <nl> m_pSpriteFramesAliases - > removeAllObjects ( ) ; <nl> + m_pLoadedFileNames - > clear ( ) ; <nl> } <nl> <nl> void CCSpriteFrameCache : : removeUnusedSpriteFrames ( void ) <nl> { <nl> + bool bRemoved = false ; <nl> CCDictElement * pElement = NULL ; <nl> CCDICT_FOREACH ( m_pSpriteFrames , pElement ) <nl> { <nl> void CCSpriteFrameCache : : removeUnusedSpriteFrames ( void ) <nl> { <nl> CCLOG ( " cocos2d : CCSpriteFrameCache : removing unused frame : % s " , pElement - > getStrKey ( ) ) ; <nl> m_pSpriteFrames - > removeObjectForElememt ( pElement ) ; <nl> + bRemoved = true ; <nl> } <nl> } <nl> + <nl> + / / XXX . Since we don ' t know the . plist file that originated the frame , we must remove all . plist from the cache <nl> + if ( bRemoved ) <nl> + { <nl> + m_pLoadedFileNames - > clear ( ) ; <nl> + } <nl> } <nl> <nl> <nl> void CCSpriteFrameCache : : removeSpriteFrameByName ( const char * pszName ) <nl> { <nl> m_pSpriteFrames - > removeObjectForKey ( pszName ) ; <nl> } <nl> + <nl> + / / XXX . Since we don ' t know the . plist file that originated the frame , we must remove all . plist from the cache <nl> + m_pLoadedFileNames - > clear ( ) ; <nl> } <nl> <nl> void CCSpriteFrameCache : : removeSpriteFramesFromFile ( const char * plist ) <nl> void CCSpriteFrameCache : : removeSpriteFramesFromFile ( const char * plist ) <nl> <nl> removeSpriteFramesFromDictionary ( ( CCDictionary * ) dict ) ; <nl> <nl> + / / remove it from the cache <nl> + set < string > : : iterator ret = m_pLoadedFileNames - > find ( plist ) ; <nl> + if ( ret ! = m_pLoadedFileNames - > end ( ) ) <nl> + { <nl> + m_pLoadedFileNames - > erase ( ret ) ; <nl> + } <nl> + <nl> dict - > release ( ) ; <nl> } <nl> <nl> mmm a / cocos2dx / sprite_nodes / CCSpriteFrameCache . h <nl> ppp b / cocos2dx / sprite_nodes / CCSpriteFrameCache . h <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 - 2011 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2008 - 2010 Ricardo Quesada <nl> Copyright ( c ) 2009 Jason Booth <nl> Copyright ( c ) 2009 Robert J Payne <nl> THE SOFTWARE . <nl> # include " CCSpriteFrame . h " <nl> # include " CCTexture2D . h " <nl> # include " CCObject . h " <nl> - # include " CCDictionary . h " <nl> + # include < set > <nl> <nl> NS_CC_BEGIN <nl> <nl> + class CCDictionary ; <nl> + class CCArray ; <nl> class CCSprite ; <nl> <nl> / * * @ brief Singleton that handles the loading of the sprite frames . <nl> class CC_DLL CCSpriteFrameCache : public CCObject <nl> bool init ( void ) ; <nl> ~ CCSpriteFrameCache ( void ) ; <nl> <nl> + private : <nl> / * Adds multiple Sprite Frames with a dictionary . The texture will be associated with the created sprite frames . <nl> * / <nl> void addSpriteFramesWithDictionary ( CCDictionary * pobDictionary , CCTexture2D * pobTexture ) ; <nl> - <nl> + public : <nl> / * * Adds multiple Sprite Frames from a plist file . <nl> * A texture will be loaded automatically . The texture name will composed by replacing the . plist suffix with . png <nl> * If you want to use another texture , you should use the addSpriteFramesWithFile : texture method . <nl> class CC_DLL CCSpriteFrameCache : public CCObject <nl> * / <nl> void removeSpriteFramesFromFile ( const char * plist ) ; <nl> <nl> + private : <nl> / * * Removes multiple Sprite Frames from CCDictionary . <nl> * @ since v0 . 99 . 5 <nl> * / <nl> void removeSpriteFramesFromDictionary ( CCDictionary * dictionary ) ; <nl> - <nl> + public : <nl> / * * Removes all Sprite Frames associated with the specified textures . <nl> * It is convinient to call this method when a specific texture needs to be removed . <nl> * @ since v0 . 995 . <nl> class CC_DLL CCSpriteFrameCache : public CCObject <nl> protected : <nl> CCDictionary * m_pSpriteFrames ; <nl> CCDictionary * m_pSpriteFramesAliases ; <nl> + std : : set < std : : string > * m_pLoadedFileNames ; <nl> } ; <nl> <nl> NS_CC_END <nl> mmm a / cocos2dx / support / CCVertex . cpp <nl> ppp b / cocos2dx / support / CCVertex . cpp <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2011 ForzeField Studios S . L <nl> <nl> http : / / www . cocos2d - x . org <nl> <nl> <nl> NS_CC_BEGIN <nl> <nl> - void ccVertexLineToPolygon ( CCPoint * points , float stroke , ccVertex2F * vertices , ccTex2F * texCoords , unsigned int offset , unsigned int nuPoints ) <nl> + void ccVertexLineToPolygon ( CCPoint * points , float stroke , ccVertex2F * vertices , unsigned int offset , unsigned int nuPoints ) <nl> { <nl> nuPoints + = offset ; <nl> if ( nuPoints < = 1 ) return ; <nl> void ccVertexLineToPolygon ( CCPoint * points , float stroke , ccVertex2F * vertices , <nl> <nl> unsigned int idx ; <nl> unsigned int nuPointsMinus = nuPoints - 1 ; <nl> - float texDelta = 1 . 0f / ( float ) nuPointsMinus ; <nl> <nl> for ( unsigned int i = offset ; i < nuPoints ; i + + ) <nl> { <nl> void ccVertexLineToPolygon ( CCPoint * points , float stroke , ccVertex2F * vertices , <nl> vertices [ idx ] = vertex2 ( p1 . x + perpVector . x , p1 . y + perpVector . y ) ; <nl> vertices [ idx + 1 ] = vertex2 ( p1 . x - perpVector . x , p1 . y - perpVector . y ) ; <nl> <nl> - texCoords [ idx ] = tex2 ( 0 , texDelta * ( float ) i ) ; <nl> - texCoords [ idx + 1 ] = tex2 ( 1 , texDelta * ( float ) i ) ; <nl> } <nl> <nl> / / Validate vertexes <nl> mmm a / cocos2dx / support / CCVertex . h <nl> ppp b / cocos2dx / support / CCVertex . h <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2011 ForzeField Studios S . L <nl> <nl> http : / / www . cocos2d - x . org <nl> NS_CC_BEGIN <nl> / * * @ file CCVertex . h * / <nl> <nl> / * * converts a line to a polygon * / <nl> - void CC_DLL ccVertexLineToPolygon ( CCPoint * points , float stroke , ccVertex2F * vertices , ccTex2F * texCoords , unsigned int offset , unsigned int nuPoints ) ; <nl> + void CC_DLL ccVertexLineToPolygon ( CCPoint * points , float stroke , ccVertex2F * vertices , unsigned int offset , unsigned int nuPoints ) ; <nl> <nl> / * * returns wheter or not the line intersects * / <nl> bool CC_DLL ccVertexLineIntersect ( float Ax , float Ay , <nl> new file mode 100644 <nl> index 000000000000 . . e1609a6d125f <nl> mmm / dev / null <nl> ppp b / cocos2dx / support / data_support / ccCArray . cpp <nl> <nl> + / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> + Copyright ( c ) 2007 Scott Lembcke <nl> + <nl> + http : / / www . cocos2d - x . org <nl> + <nl> + Permission is hereby granted , free of charge , to any person obtaining a copy <nl> + of this software and associated documentation files ( the " Software " ) , to deal <nl> + in the Software without restriction , including without limitation the rights <nl> + to use , copy , modify , merge , publish , distribute , sublicense , and / or sell <nl> + copies of the Software , and to permit persons to whom the Software is <nl> + furnished to do so , subject to the following conditions : <nl> + <nl> + The above copyright notice and this permission notice shall be included in <nl> + all copies or substantial portions of the Software . <nl> + <nl> + THE SOFTWARE IS PROVIDED " AS IS " , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR <nl> + IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY , <nl> + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL THE <nl> + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM , DAMAGES OR OTHER <nl> + LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE , ARISING FROM , <nl> + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <nl> + THE SOFTWARE . <nl> + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * / <nl> + <nl> + # include " ccCArray . h " <nl> + # include " CCObject . h " <nl> + <nl> + NS_CC_BEGIN <nl> + <nl> + / * * Allocates and initializes a new array with specified capacity * / <nl> + ccArray * ccArrayNew ( unsigned int capacity ) { <nl> + if ( capacity = = 0 ) <nl> + capacity = 1 ; <nl> + <nl> + ccArray * arr = ( ccArray * ) malloc ( sizeof ( ccArray ) ) ; <nl> + arr - > num = 0 ; <nl> + arr - > arr = ( CCARRAY_ID * ) calloc ( capacity , sizeof ( CCObject * ) ) ; <nl> + arr - > max = capacity ; <nl> + <nl> + return arr ; <nl> + } <nl> + <nl> + / * * Frees array after removing all remaining objects . Silently ignores NULL arr . * / <nl> + void ccArrayFree ( ccArray * * arr ) <nl> + { <nl> + if ( arr = = NULL | | * arr = = NULL ) return ; <nl> + <nl> + ccArrayRemoveAllObjects ( * arr ) ; <nl> + <nl> + free ( ( * arr ) - > arr ) ; <nl> + free ( * arr ) ; <nl> + <nl> + * arr = NULL ; <nl> + } <nl> + <nl> + void ccArrayDoubleCapacity ( ccArray * arr ) <nl> + { <nl> + arr - > max * = 2 ; <nl> + CCARRAY_ID * newArr = ( CCARRAY_ID * ) realloc ( arr - > arr , arr - > max * sizeof ( CCObject * ) ) ; <nl> + / / will fail when there ' s not enough memory <nl> + CCAssert ( newArr ! = NULL , " ccArrayDoubleCapacity failed . Not enough memory " ) ; <nl> + arr - > arr = newArr ; <nl> + } <nl> + <nl> + void ccArrayEnsureExtraCapacity ( ccArray * arr , unsigned int extra ) <nl> + { <nl> + while ( arr - > max < arr - > num + extra ) <nl> + ccArrayDoubleCapacity ( arr ) ; <nl> + } <nl> + <nl> + void ccArrayShrink ( ccArray * arr ) <nl> + { <nl> + unsigned int newSize ; <nl> + <nl> + / / only resize when necessary <nl> + if ( arr - > max > arr - > num & & ! ( arr - > num = = 0 & & arr - > max = = 1 ) ) <nl> + { <nl> + if ( arr - > num ! = 0 ) <nl> + { <nl> + newSize = arr - > num ; <nl> + arr - > max = arr - > num ; <nl> + } <nl> + else <nl> + { / / minimum capacity of 1 , with 0 elements the array would be free ' d by realloc <nl> + newSize = 1 ; <nl> + arr - > max = 1 ; <nl> + } <nl> + <nl> + arr - > arr = ( CCARRAY_ID * ) realloc ( arr - > arr , newSize * sizeof ( CCObject * ) ) ; <nl> + CCAssert ( arr - > arr ! = NULL , " could not reallocate the memory " ) ; <nl> + } <nl> + } <nl> + <nl> + / * * Returns index of first occurence of object , CC_INVALID_INDEX if object not found . * / <nl> + unsigned int ccArrayGetIndexOfObject ( ccArray * arr , CCObject * object ) <nl> + { <nl> + unsigned int i ; <nl> + <nl> + for ( i = 0 ; i < arr - > num ; i + + ) <nl> + if ( arr - > arr [ i ] = = object ) return i ; <nl> + <nl> + return CC_INVALID_INDEX ; <nl> + } <nl> + <nl> + / * * Returns a Boolean value that indicates whether object is present in array . * / <nl> + bool ccArrayContainsObject ( ccArray * arr , CCObject * object ) <nl> + { <nl> + return ccArrayGetIndexOfObject ( arr , object ) ! = CC_INVALID_INDEX ; <nl> + } <nl> + <nl> + / * * Appends an object . Bahaviour undefined if array doesn ' t have enough capacity . * / <nl> + void ccArrayAppendObject ( ccArray * arr , CCObject * object ) <nl> + { <nl> + CCAssert ( object ! = NULL , " Invalid parameter ! " ) ; <nl> + object - > retain ( ) ; <nl> + arr - > arr [ arr - > num ] = object ; <nl> + arr - > num + + ; <nl> + } <nl> + <nl> + / * * Appends an object . Capacity of arr is increased if needed . * / <nl> + void ccArrayAppendObjectWithResize ( ccArray * arr , CCObject * object ) <nl> + { <nl> + ccArrayEnsureExtraCapacity ( arr , 1 ) ; <nl> + ccArrayAppendObject ( arr , object ) ; <nl> + } <nl> + <nl> + / * * Appends objects from plusArr to arr . Behaviour undefined if arr doesn ' t have <nl> + enough capacity . * / <nl> + void ccArrayAppendArray ( ccArray * arr , ccArray * plusArr ) <nl> + { <nl> + unsigned int i ; <nl> + <nl> + for ( i = 0 ; i < plusArr - > num ; i + + ) <nl> + ccArrayAppendObject ( arr , plusArr - > arr [ i ] ) ; <nl> + } <nl> + <nl> + / * * Appends objects from plusArr to arr . Capacity of arr is increased if needed . * / <nl> + void ccArrayAppendArrayWithResize ( ccArray * arr , ccArray * plusArr ) <nl> + { <nl> + ccArrayEnsureExtraCapacity ( arr , plusArr - > num ) ; <nl> + ccArrayAppendArray ( arr , plusArr ) ; <nl> + } <nl> + <nl> + / * * Inserts an object at index * / <nl> + void ccArrayInsertObjectAtIndex ( ccArray * arr , CCObject * object , unsigned int index ) <nl> + { <nl> + CCAssert ( index < = arr - > num , " Invalid index . Out of bounds " ) ; <nl> + CCAssert ( object ! = NULL , " Invalid parameter ! " ) ; <nl> + <nl> + ccArrayEnsureExtraCapacity ( arr , 1 ) ; <nl> + <nl> + unsigned int remaining = arr - > num - index ; <nl> + if ( remaining > 0 ) <nl> + { <nl> + memmove ( ( void * ) & arr - > arr [ index + 1 ] , ( void * ) & arr - > arr [ index ] , sizeof ( CCObject * ) * remaining ) ; <nl> + } <nl> + <nl> + object - > retain ( ) ; <nl> + arr - > arr [ index ] = object ; <nl> + arr - > num + + ; <nl> + } <nl> + <nl> + / * * Swaps two objects * / <nl> + void ccArraySwapObjectsAtIndexes ( ccArray * arr , unsigned int index1 , unsigned int index2 ) <nl> + { <nl> + CCAssert ( index1 < arr - > num , " ( 1 ) Invalid index . Out of bounds " ) ; <nl> + CCAssert ( index2 < arr - > num , " ( 2 ) Invalid index . Out of bounds " ) ; <nl> + <nl> + CCObject * object1 = arr - > arr [ index1 ] ; <nl> + <nl> + arr - > arr [ index1 ] = arr - > arr [ index2 ] ; <nl> + arr - > arr [ index2 ] = object1 ; <nl> + } <nl> + <nl> + / * * Removes all objects from arr * / <nl> + void ccArrayRemoveAllObjects ( ccArray * arr ) <nl> + { <nl> + while ( arr - > num > 0 ) <nl> + { <nl> + ( arr - > arr [ - - arr - > num ] ) - > release ( ) ; <nl> + } <nl> + } <nl> + <nl> + / * * Removes object at specified index and pushes back all subsequent objects . <nl> + Behaviour undefined if index outside [ 0 , num - 1 ] . * / <nl> + void ccArrayRemoveObjectAtIndex ( ccArray * arr , unsigned int index , bool bReleaseObj / * = true * / ) <nl> + { <nl> + if ( bReleaseObj ) <nl> + { <nl> + CC_SAFE_RELEASE ( arr - > arr [ index ] ) ; <nl> + } <nl> + <nl> + arr - > num - - ; <nl> + <nl> + unsigned int remaining = arr - > num - index ; <nl> + if ( remaining > 0 ) <nl> + { <nl> + memmove ( ( void * ) & arr - > arr [ index ] , ( void * ) & arr - > arr [ index + 1 ] , remaining * sizeof ( CCObject * ) ) ; <nl> + } <nl> + } <nl> + <nl> + / * * Removes object at specified index and fills the gap with the last object , <nl> + thereby avoiding the need to push back subsequent objects . <nl> + Behaviour undefined if index outside [ 0 , num - 1 ] . * / <nl> + void ccArrayFastRemoveObjectAtIndex ( ccArray * arr , unsigned int index ) <nl> + { <nl> + CC_SAFE_RELEASE ( arr - > arr [ index ] ) ; <nl> + unsigned int last = - - arr - > num ; <nl> + arr - > arr [ index ] = arr - > arr [ last ] ; <nl> + } <nl> + <nl> + void ccArrayFastRemoveObject ( ccArray * arr , CCObject * object ) <nl> + { <nl> + unsigned int index = ccArrayGetIndexOfObject ( arr , object ) ; <nl> + if ( index ! = CC_INVALID_INDEX ) <nl> + ccArrayFastRemoveObjectAtIndex ( arr , index ) ; <nl> + } <nl> + <nl> + / * * Searches for the first occurance of object and removes it . If object is not <nl> + found the function has no effect . * / <nl> + void ccArrayRemoveObject ( ccArray * arr , CCObject * object , bool bReleaseObj / * = true * / ) <nl> + { <nl> + unsigned int index = ccArrayGetIndexOfObject ( arr , object ) ; <nl> + if ( index ! = CC_INVALID_INDEX ) <nl> + { <nl> + ccArrayRemoveObjectAtIndex ( arr , index , bReleaseObj ) ; <nl> + } <nl> + } <nl> + <nl> + / * * Removes from arr all objects in minusArr . For each object in minusArr , the <nl> + first matching instance in arr will be removed . * / <nl> + void ccArrayRemoveArray ( ccArray * arr , ccArray * minusArr ) <nl> + { <nl> + unsigned int i ; <nl> + <nl> + for ( i = 0 ; i < minusArr - > num ; i + + ) <nl> + ccArrayRemoveObject ( arr , minusArr - > arr [ i ] ) ; <nl> + } <nl> + <nl> + / * * Removes from arr all objects in minusArr . For each object in minusArr , all <nl> + matching instances in arr will be removed . * / <nl> + void ccArrayFullRemoveArray ( ccArray * arr , ccArray * minusArr ) <nl> + { <nl> + unsigned int back = 0 ; <nl> + unsigned int i ; <nl> + <nl> + for ( i = 0 ; i < arr - > num ; i + + ) { <nl> + if ( ccArrayContainsObject ( minusArr , arr - > arr [ i ] ) ) { <nl> + CC_SAFE_RELEASE ( arr - > arr [ i ] ) ; <nl> + back + + ; <nl> + } else <nl> + arr - > arr [ i - back ] = arr - > arr [ i ] ; <nl> + } <nl> + <nl> + arr - > num - = back ; <nl> + } <nl> + <nl> + / * * Sends to each object in arr the message identified by given selector . * / <nl> + void ccArrayMakeObjectsPerformSelector ( ccArray * arr , SEL_CallFunc sel ) <nl> + { <nl> + unsigned int i ; <nl> + <nl> + for ( i = 0 ; i < arr - > num ; i + + ) <nl> + { <nl> + / / # pragma clang diagnostic push <nl> + / / # if defined ( __has_feature ) & & __has_feature ( objc_arc ) <nl> + / / # pragma clang diagnostic ignored " - Warc - performSelector - leaks " <nl> + / / # endif <nl> + ( arr - > arr [ i ] - > * sel ) ( ) ; <nl> + / / [ arr - > arr [ i ] performSelector : sel ] ; <nl> + / / # pragma clang diagnostic pop <nl> + } <nl> + <nl> + } <nl> + <nl> + void ccArrayMakeObjectsPerformSelectorWithObject ( ccArray * arr , SEL_CallFuncO sel , CCObject * object ) <nl> + { <nl> + unsigned int i ; <nl> + <nl> + for ( i = 0 ; i < arr - > num ; i + + ) <nl> + { <nl> + / / # pragma clang diagnostic push <nl> + / / <nl> + / / # if defined ( __has_feature ) & & __has_feature ( objc_arc ) <nl> + / / # pragma clang diagnostic ignored " - Warc - performSelector - leaks " <nl> + / / # endif <nl> + ( arr - > arr [ i ] - > * sel ) ( object ) ; <nl> + / / [ arr - > arr [ i ] performSelector : sel withObject : object ] ; <nl> + / / # pragma clang diagnostic pop <nl> + } <nl> + <nl> + } <nl> + <nl> + void ccArrayMakeObjectPerformSelectorWithArrayObjects ( ccArray * arr , SEL_CallFuncO sel , CCObject * object ) <nl> + { <nl> + unsigned int i ; <nl> + <nl> + for ( i = 0 ; i < arr - > num ; i + + ) <nl> + { <nl> + / / # pragma clang diagnostic push <nl> + / / <nl> + / / # if defined ( __has_feature ) & & __has_feature ( objc_arc ) <nl> + / / # pragma clang diagnostic ignored " - Warc - performSelector - leaks " <nl> + / / # endif <nl> + / / [ object performSelector : sel withObject : arr - > arr [ i ] ] ; <nl> + ( object - > * sel ) ( arr - > arr [ i ] ) ; <nl> + / / # pragma clang diagnostic pop <nl> + } <nl> + } <nl> + <nl> + <nl> + / / # pragma mark - <nl> + / / # pragma mark ccCArray for Values ( c structures ) <nl> + <nl> + / * * Allocates and initializes a new C array with specified capacity * / <nl> + ccCArray * ccCArrayNew ( unsigned int capacity ) <nl> + { <nl> + if ( capacity = = 0 ) <nl> + capacity = 1 ; <nl> + <nl> + ccCArray * arr = ( ccCArray * ) malloc ( sizeof ( ccCArray ) ) ; <nl> + arr - > num = 0 ; <nl> + arr - > arr = ( CCARRAY_ID * ) malloc ( capacity * sizeof ( CCObject * ) ) ; <nl> + arr - > max = capacity ; <nl> + <nl> + return arr ; <nl> + } <nl> + <nl> + / * * Frees C array after removing all remaining values . Silently ignores NULL arr . * / <nl> + void ccCArrayFree ( ccCArray * arr ) <nl> + { <nl> + if ( arr = = NULL ) return ; <nl> + <nl> + ccCArrayRemoveAllValues ( arr ) ; <nl> + <nl> + free ( arr - > arr ) ; <nl> + free ( arr ) ; <nl> + } <nl> + <nl> + / * * Doubles C array capacity * / <nl> + void ccCArrayDoubleCapacity ( ccCArray * arr ) <nl> + { <nl> + ccArrayDoubleCapacity ( arr ) ; <nl> + } <nl> + <nl> + / * * Increases array capacity such that max > = num + extra . * / <nl> + void ccCArrayEnsureExtraCapacity ( ccCArray * arr , unsigned int extra ) <nl> + { <nl> + ccArrayEnsureExtraCapacity ( arr , extra ) ; <nl> + } <nl> + <nl> + / * * Returns index of first occurence of value , CC_INVALID_INDEX if value not found . * / <nl> + unsigned int ccCArrayGetIndexOfValue ( ccCArray * arr , CCARRAY_ID value ) <nl> + { <nl> + unsigned int i ; <nl> + <nl> + for ( i = 0 ; i < arr - > num ; i + + ) <nl> + { <nl> + if ( arr - > arr [ i ] - > isEqual ( value ) ) return i ; <nl> + } <nl> + return CC_INVALID_INDEX ; <nl> + } <nl> + <nl> + / * * Returns a Boolean value that indicates whether value is present in the C array . * / <nl> + bool ccCArrayContainsValue ( ccCArray * arr , CCARRAY_ID value ) <nl> + { <nl> + return ccCArrayGetIndexOfValue ( arr , value ) ! = CC_INVALID_INDEX ; <nl> + } <nl> + <nl> + / * * Inserts a value at a certain position . Behaviour undefined if aray doesn ' t have enough capacity * / <nl> + void ccCArrayInsertValueAtIndex ( ccCArray * arr , CCARRAY_ID value , unsigned int index ) <nl> + { <nl> + CCAssert ( index < arr - > max , " ccCArrayInsertValueAtIndex : invalid index " ) ; <nl> + <nl> + unsigned int remaining = arr - > num - index ; <nl> + <nl> + / / last Value doesn ' t need to be moved <nl> + if ( remaining > 0 ) { <nl> + / / tex coordinates <nl> + memmove ( ( void * ) & arr - > arr [ index + 1 ] , ( void * ) & arr - > arr [ index ] , sizeof ( void * ) * remaining ) ; <nl> + } <nl> + <nl> + arr - > num + + ; <nl> + arr - > arr [ index ] = value ; <nl> + } <nl> + <nl> + / * * Appends an value . Bahaviour undefined if array doesn ' t have enough capacity . * / <nl> + void ccCArrayAppendValue ( ccCArray * arr , CCARRAY_ID value ) <nl> + { <nl> + arr - > arr [ arr - > num ] = ( CCObject * ) value ; <nl> + arr - > num + + ; <nl> + } <nl> + <nl> + / * * Appends an value . Capacity of arr is increased if needed . * / <nl> + void ccCArrayAppendValueWithResize ( ccCArray * arr , CCARRAY_ID value ) <nl> + { <nl> + ccCArrayEnsureExtraCapacity ( arr , 1 ) ; <nl> + ccCArrayAppendValue ( arr , value ) ; <nl> + } <nl> + <nl> + <nl> + / * * Appends values from plusArr to arr . Behaviour undefined if arr doesn ' t have <nl> + enough capacity . * / <nl> + void ccCArrayAppendArray ( ccCArray * arr , ccCArray * plusArr ) <nl> + { <nl> + unsigned int i ; <nl> + <nl> + for ( i = 0 ; i < plusArr - > num ; i + + ) <nl> + { <nl> + ccCArrayAppendValue ( arr , plusArr - > arr [ i ] ) ; <nl> + } <nl> + } <nl> + <nl> + / * * Appends values from plusArr to arr . Capacity of arr is increased if needed . * / <nl> + void ccCArrayAppendArrayWithResize ( ccCArray * arr , ccCArray * plusArr ) <nl> + { <nl> + ccCArrayEnsureExtraCapacity ( arr , plusArr - > num ) ; <nl> + ccCArrayAppendArray ( arr , plusArr ) ; <nl> + } <nl> + <nl> + / * * Removes all values from arr * / <nl> + void ccCArrayRemoveAllValues ( ccCArray * arr ) <nl> + { <nl> + arr - > num = 0 ; <nl> + } <nl> + <nl> + / * * Removes value at specified index and pushes back all subsequent values . <nl> + Behaviour undefined if index outside [ 0 , num - 1 ] . <nl> + @ since v0 . 99 . 4 <nl> + * / <nl> + void ccCArrayRemoveValueAtIndex ( ccCArray * arr , unsigned int index ) <nl> + { <nl> + unsigned int last ; <nl> + <nl> + for ( last = - - arr - > num ; index < last ; index + + ) <nl> + arr - > arr [ index ] = arr - > arr [ index + 1 ] ; <nl> + } <nl> + <nl> + / * * Removes value at specified index and fills the gap with the last value , <nl> + thereby avoiding the need to push back subsequent values . <nl> + Behaviour undefined if index outside [ 0 , num - 1 ] . <nl> + @ since v0 . 99 . 4 <nl> + * / <nl> + void ccCArrayFastRemoveValueAtIndex ( ccCArray * arr , unsigned int index ) <nl> + { <nl> + unsigned int last = - - arr - > num ; <nl> + arr - > arr [ index ] = arr - > arr [ last ] ; <nl> + } <nl> + <nl> + / * * Searches for the first occurance of value and removes it . If value is not found the function has no effect . <nl> + @ since v0 . 99 . 4 <nl> + * / <nl> + void ccCArrayRemoveValue ( ccCArray * arr , CCARRAY_ID value ) <nl> + { <nl> + unsigned int index = ccCArrayGetIndexOfValue ( arr , value ) ; <nl> + if ( index ! = CC_INVALID_INDEX ) <nl> + ccCArrayRemoveValueAtIndex ( arr , index ) ; <nl> + } <nl> + <nl> + / * * Removes from arr all values in minusArr . For each Value in minusArr , the first matching instance in arr will be removed . <nl> + @ since v0 . 99 . 4 <nl> + * / <nl> + void ccCArrayRemoveArray ( ccCArray * arr , ccCArray * minusArr ) <nl> + { <nl> + unsigned int i ; <nl> + <nl> + for ( i = 0 ; i < minusArr - > num ; i + + ) <nl> + ccCArrayRemoveValue ( arr , minusArr - > arr [ i ] ) ; <nl> + } <nl> + <nl> + / * * Removes from arr all values in minusArr . For each value in minusArr , all matching instances in arr will be removed . <nl> + @ since v0 . 99 . 4 <nl> + * / <nl> + void ccCArrayFullRemoveArray ( ccCArray * arr , ccCArray * minusArr ) <nl> + { <nl> + unsigned int i ; <nl> + unsigned int back = 0 ; <nl> + <nl> + for ( i = 0 ; i < arr - > num ; i + + ) { <nl> + if ( ccCArrayContainsValue ( minusArr , arr - > arr [ i ] ) ) { <nl> + back + + ; <nl> + } else <nl> + arr - > arr [ i - back ] = arr - > arr [ i ] ; <nl> + } <nl> + <nl> + arr - > num - = back ; <nl> + } <nl> + <nl> + / / used by mergesortL <nl> + void cc_pointerswap ( void * a , void * b , size_t width ) <nl> + { <nl> + void * tmp ; <nl> + tmp = * ( void * * ) a ; <nl> + * ( void * * ) a = * ( void * * ) b ; <nl> + * ( void * * ) b = tmp ; <nl> + } <nl> + <nl> + / / iterative mergesort arrd on <nl> + / / http : / / www . inf . fh - flensburg . de / lang / algorithmen / sortieren / merge / mergiter . htm <nl> + int cc_mergesortL ( ccCArray * array , size_t width , cc_comparator comparator ) <nl> + { <nl> + CCARRAY_ID * arr = array - > arr ; <nl> + int i , j , k , s , m , n = array - > num ; <nl> + <nl> + CCARRAY_ID * B = ( CCARRAY_ID * ) malloc ( ( n / 2 + 1 ) * width ) ; <nl> + for ( s = 1 ; s < n ; s + = s ) <nl> + { <nl> + for ( m = n - 1 - s ; m > = 0 ; m - = s + s ) <nl> + { <nl> + int lo = MAX ( m - ( s + 1 ) , 0 ) ; <nl> + int hi = m + s ; <nl> + <nl> + j = lo ; <nl> + <nl> + if ( m - j > 0 ) <nl> + { <nl> + / / triggers a warning when compiled with ARC , B needs to be strong typed , for compiling for obj - c + + <nl> + / / memcpy aritmetics aren ' t allowed on void * types <nl> + / / explicitely casting didn ' t work <nl> + / / # pragma clang diagnostic push <nl> + / / # if defined ( __has_feature ) & & __has_feature ( objc_arc ) <nl> + / / # pragma clang diagnostic ignored " - Warc - non - pod - memaccess " <nl> + / / # endif <nl> + <nl> + memcpy ( B , & arr [ j ] , ( m - j ) * width ) ; <nl> + / / # pragma clang diagnostic pop <nl> + } <nl> + <nl> + i = 0 ; <nl> + j = m ; <nl> + k = lo ; <nl> + <nl> + while ( k < j & & j < = hi ) <nl> + { <nl> + if ( comparator ( & B [ i ] , & arr [ j ] ) < = 0 ) <nl> + { <nl> + cc_pointerswap ( & arr [ k + + ] , & B [ i + + ] , width ) ; <nl> + } <nl> + <nl> + else <nl> + { <nl> + cc_pointerswap ( & arr [ k + + ] , & arr [ j + + ] , width ) ; <nl> + } <nl> + } <nl> + <nl> + while ( k < j ) <nl> + cc_pointerswap ( & arr [ k + + ] , & B [ i + + ] , width ) ; <nl> + } <nl> + } <nl> + free ( B ) ; <nl> + return 0 ; <nl> + } <nl> + <nl> + void cc_insertionSort ( ccCArray * arr , cc_comparator comparator ) <nl> + { <nl> + / / It sorts source array in ascending order <nl> + <nl> + / / adaptive - performance adapts to the initial order of elements <nl> + / / stable - insertion sort retains relative order of the same elements <nl> + / / in - place - requires constant amount of additional space <nl> + / / online - new elements can be added during the sort <nl> + <nl> + int i , j , length = arr - > num ; <nl> + <nl> + CCARRAY_ID * x = arr - > arr ; <nl> + CCObject * temp ; <nl> + <nl> + / / insertion sort <nl> + for ( i = 1 ; i < length ; i + + ) <nl> + { <nl> + j = i ; <nl> + / / continue moving element downwards while order is descending <nl> + while ( j > 0 & & ( comparator ( & x [ j - 1 ] , & x [ j ] ) = = CCOrderedDescending ) ) <nl> + { <nl> + temp = x [ j ] ; <nl> + x [ j ] = x [ j - 1 ] ; <nl> + x [ j - 1 ] = temp ; <nl> + j - - ; <nl> + } <nl> + } <nl> + } <nl> + <nl> + NS_CC_END <nl> mmm a / cocos2dx / support / data_support / ccCArray . h <nl> ppp b / cocos2dx / support / data_support / ccCArray . h <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 - 2011 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2007 Scott Lembcke <nl> <nl> http : / / www . cocos2d - x . org <nl> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <nl> THE SOFTWARE . <nl> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * / <nl> <nl> - / * * <nl> + / * * <nl> @ file <nl> - Based on Chipmunk cpArray . <nl> - ccArray is a faster alternative to CCMutableArray , it does pretty much the <nl> - same thing ( stores CCObjects and retains / releases them appropriately ) . It ' s <nl> + based on Chipmunk cpArray . <nl> + ccArray is a faster alternative to NSMutableArray , it does pretty much the <nl> + same thing ( stores NSObjects and retains / releases them appropriately ) . It ' s <nl> faster because : <nl> - - it uses a plain C interface so it doesn ' t incur Objective - c messaging overhead <nl> + - it uses a plain C interface so it doesn ' t incur Objective - c messaging overhead <nl> - it assumes you know what you ' re doing , so it doesn ' t spend time on safety checks <nl> - ( index out of bounds , required capacity etc . ) <nl> + ( index out of bounds , required capacity etc . ) <nl> - comparisons are done using pointer equality instead of isEqual <nl> + <nl> + There are 2 kind of functions : <nl> + - ccArray functions that manipulates objective - c objects ( retain and release are performanced ) <nl> + - ccCArray functions that manipulates values like if they were standard C structures ( no retain / release is performed ) <nl> * / <nl> <nl> # ifndef CC_ARRAY_H <nl> THE SOFTWARE . <nl> # include < limits . h > <nl> # include " ccMacros . h " <nl> # include " CCObject . h " <nl> - # include " ccMacros . h " <nl> <nl> NS_CC_BEGIN <nl> <nl> - / / Easy integration <nl> - # define CCARRAYDATA_FOREACH ( __array__ , __object__ ) \ <nl> - __object__ = __array__ - > arr [ 0 ] ; for ( unsigned int i = 0 , num = __array__ - > num ; i < num ; i + + , __object__ = __array__ - > arr [ i ] ) \ <nl> + # define CC_INVALID_INDEX 0xffffffff <nl> <nl> - typedef struct _ccArray <nl> - { <nl> - unsigned int num , max ; <nl> - CCObject * * arr ; / / equals CCObject * * arr ; <nl> + <nl> + / / # pragma mark - <nl> + / / # pragma mark ccArray for Objects <nl> + <nl> + / / Easy integration <nl> + # define CCARRAYDATA_FOREACH ( __array__ , __object__ ) \ <nl> + __object__ = __array__ - > arr [ 0 ] ; for ( unsigned int i = 0 , num = __array__ - > num ; i < num ; i + + , __object__ = __array__ - > arr [ i ] ) \ <nl> + <nl> + / / # if defined ( __has_feature ) & & __has_feature ( objc_arc ) <nl> + / / typedef __strong CCObject * CCARRAY_ID ; <nl> + / / # else <nl> + typedef CCObject * CCARRAY_ID ; <nl> + / / # endif <nl> + <nl> + typedef struct ccArray { <nl> + unsigned int num , max ; <nl> + CCARRAY_ID * arr ; <nl> } ccArray ; <nl> <nl> - / * * Allocates and initializes a new array with specified capacity * / <nl> - static inline ccArray * ccArrayNew ( unsigned int capacity ) <nl> + enum CCComparisonResult <nl> { <nl> - if ( capacity = = 0 ) <nl> - { <nl> - capacity = 1 ; <nl> - } <nl> - <nl> - ccArray * arr = ( ccArray * ) malloc ( sizeof ( ccArray ) ) ; <nl> - arr - > num = 0 ; <nl> - <nl> - arr - > arr = ( CCObject * * ) malloc ( capacity * sizeof ( CCObject * ) ) ; <nl> - arr - > max = capacity ; <nl> - <nl> - return arr ; <nl> - } <nl> - <nl> - static inline void ccArrayRemoveAllObjects ( ccArray * arr ) ; <nl> + CCOrderedDescending = 1 , <nl> + CCOrderedAscending = - 1 , <nl> + CCOrderedSame = 0 <nl> + } ; <nl> + <nl> + typedef int ( * cc_comparator ) ( const void * , const void * ) ; <nl> + <nl> + / * * Allocates and initializes a new array with specified capacity * / <nl> + ccArray * ccArrayNew ( unsigned int capacity ) ; <nl> <nl> / * * Frees array after removing all remaining objects . Silently ignores nil arr . * / <nl> - static inline void ccArrayFree ( ccArray * & arr ) <nl> - { <nl> - if ( arr = = NULL ) <nl> - { <nl> - return ; <nl> - } <nl> - <nl> - ccArrayRemoveAllObjects ( arr ) ; <nl> - <nl> - free ( arr - > arr ) ; <nl> - free ( arr ) ; <nl> - arr = NULL ; <nl> - } <nl> + void ccArrayFree ( ccArray * * arr ) ; <nl> <nl> / * * Doubles array capacity * / <nl> - static inline void ccArrayDoubleCapacity ( ccArray * arr ) <nl> - { <nl> - arr - > max * = 2 ; <nl> - CCObject * * newArr = ( CCObject * * ) realloc ( arr - > arr , arr - > max * sizeof ( CCObject * ) ) ; <nl> - / / will fail when there ' s not enough memory <nl> - CCAssert ( newArr ! = 0 , " ccArrayDoubleCapacity failed . Not enough memory " ) ; <nl> - arr - > arr = newArr ; <nl> - } <nl> + void ccArrayDoubleCapacity ( ccArray * arr ) ; <nl> <nl> / * * Increases array capacity such that max > = num + extra . * / <nl> - static inline void ccArrayEnsureExtraCapacity ( ccArray * arr , unsigned int extra ) <nl> - { <nl> - while ( arr - > max < arr - > num + extra ) <nl> - { <nl> - ccArrayDoubleCapacity ( arr ) ; <nl> - } <nl> - } <nl> + void ccArrayEnsureExtraCapacity ( ccArray * arr , unsigned int extra ) ; <nl> <nl> / * * shrinks the array so the memory footprint corresponds with the number of items * / <nl> - static inline void ccArrayShrink ( ccArray * arr ) <nl> - { <nl> - unsigned int newSize ; <nl> - <nl> - / / only resize when necessary <nl> - if ( arr - > max > arr - > num & & ! ( arr - > num = = 0 & & arr - > max = = 1 ) ) <nl> - { <nl> - if ( arr - > num ! = 0 ) <nl> - { <nl> - newSize = arr - > num ; <nl> - arr - > max = arr - > num ; <nl> - } <nl> - else <nl> - { / / minimum capacity of 1 , with 0 elements the array would be free ' d by realloc <nl> - newSize = 1 ; <nl> - arr - > max = 1 ; <nl> - } <nl> - <nl> - arr - > arr = ( CCObject * * ) realloc ( arr - > arr , newSize * sizeof ( CCObject * ) ) ; <nl> - CCAssert ( arr - > arr ! = NULL , " could not reallocate the memory " ) ; <nl> - } <nl> - } <nl> - <nl> - / * * Returns index of first occurence of object , UXNotFound if object not found . * / <nl> - static inline unsigned int ccArrayGetIndexOfObject ( ccArray * arr , CCObject * object ) <nl> - { <nl> - for ( unsigned int i = 0 ; i < arr - > num ; i + + ) <nl> - { <nl> - if ( arr - > arr [ i ] = = object ) <nl> - { <nl> - return i ; <nl> - } <nl> - } <nl> + void ccArrayShrink ( ccArray * arr ) ; <nl> <nl> - return UINT_MAX ; <nl> - } <nl> + / * * Returns index of first occurence of object , NSNotFound if object not found . * / <nl> + unsigned int ccArrayGetIndexOfObject ( ccArray * arr , CCObject * object ) ; <nl> <nl> / * * Returns a Boolean value that indicates whether object is present in array . * / <nl> - static inline bool ccArrayContainsObject ( ccArray * arr , CCObject * object ) <nl> - { <nl> - return ccArrayGetIndexOfObject ( arr , object ) ! = UINT_MAX ; <nl> - } <nl> + bool ccArrayContainsObject ( ccArray * arr , CCObject * object ) ; <nl> <nl> / * * Appends an object . Bahaviour undefined if array doesn ' t have enough capacity . * / <nl> - static inline void ccArrayAppendObject ( ccArray * arr , CCObject * object ) <nl> - { <nl> - arr - > arr [ arr - > num ] = object ; object - > retain ( ) ; <nl> - arr - > num + + ; <nl> - } <nl> + void ccArrayAppendObject ( ccArray * arr , CCObject * object ) ; <nl> <nl> / * * Appends an object . Capacity of arr is increased if needed . * / <nl> - static inline void ccArrayAppendObjectWithResize ( ccArray * arr , CCObject * object ) <nl> - { <nl> - ccArrayEnsureExtraCapacity ( arr , 1 ) ; <nl> - ccArrayAppendObject ( arr , object ) ; <nl> - } <nl> + void ccArrayAppendObjectWithResize ( ccArray * arr , CCObject * object ) ; <nl> <nl> - / * * Appends objects from plusArr to arr . Behaviour undefined if arr doesn ' t have <nl> - enough capacity . * / <nl> - static inline void ccArrayAppendArray ( ccArray * arr , ccArray * plusArr ) <nl> - { <nl> - for ( unsigned int i = 0 ; i < plusArr - > num ; i + + ) <nl> - { <nl> - ccArrayAppendObject ( arr , plusArr - > arr [ i ] ) ; <nl> - } <nl> - } <nl> + / * * Appends objects from plusArr to arr . <nl> + Behaviour undefined if arr doesn ' t have enough capacity . * / <nl> + void ccArrayAppendArray ( ccArray * arr , ccArray * plusArr ) ; <nl> <nl> / * * Appends objects from plusArr to arr . Capacity of arr is increased if needed . * / <nl> - static inline void ccArrayAppendArrayWithResize ( ccArray * arr , ccArray * plusArr ) <nl> - { <nl> - ccArrayEnsureExtraCapacity ( arr , plusArr - > num ) ; <nl> - ccArrayAppendArray ( arr , plusArr ) ; <nl> - } <nl> + void ccArrayAppendArrayWithResize ( ccArray * arr , ccArray * plusArr ) ; <nl> <nl> / * * Inserts an object at index * / <nl> - static inline void ccArrayInsertObjectAtIndex ( ccArray * arr , CCObject * object , unsigned int index ) <nl> - { <nl> - CCAssert ( index < = arr - > num , " Invalid index . Out of bounds " ) ; <nl> - <nl> - ccArrayEnsureExtraCapacity ( arr , 1 ) ; <nl> - <nl> - unsigned int remaining = arr - > num - index ; <nl> - if ( remaining > 0 ) <nl> - memmove ( & arr - > arr [ index + 1 ] , & arr - > arr [ index ] , sizeof ( CCObject * ) * remaining ) ; <nl> - <nl> - object - > retain ( ) ; <nl> - arr - > arr [ index ] = object ; <nl> - arr - > num + + ; <nl> - } <nl> + void ccArrayInsertObjectAtIndex ( ccArray * arr , CCObject * object , unsigned int index ) ; <nl> <nl> / * * Swaps two objects * / <nl> - static inline void ccArraySwapObjectsAtIndexes ( ccArray * arr , unsigned int index1 , unsigned int index2 ) <nl> - { <nl> - CCAssert ( index1 < arr - > num , " ( 1 ) Invalid index . Out of bounds " ) ; <nl> - CCAssert ( index2 < arr - > num , " ( 2 ) Invalid index . Out of bounds " ) ; <nl> - <nl> - CCObject * object1 = arr - > arr [ index1 ] ; <nl> - <nl> - arr - > arr [ index1 ] = arr - > arr [ index2 ] ; <nl> - arr - > arr [ index2 ] = object1 ; <nl> - } <nl> + void ccArraySwapObjectsAtIndexes ( ccArray * arr , unsigned int index1 , unsigned int index2 ) ; <nl> <nl> / * * Removes all objects from arr * / <nl> - static inline void ccArrayRemoveAllObjects ( ccArray * arr ) <nl> - { <nl> - while ( arr - > num > 0 ) <nl> - { <nl> - arr - > arr [ - - arr - > num ] - > release ( ) ; <nl> - } <nl> - } <nl> + void ccArrayRemoveAllObjects ( ccArray * arr ) ; <nl> <nl> / * * Removes object at specified index and pushes back all subsequent objects . <nl> Behaviour undefined if index outside [ 0 , num - 1 ] . * / <nl> - static inline void ccArrayRemoveObjectAtIndex ( ccArray * arr , unsigned int index , bool bReleaseObj ) <nl> - { <nl> - CCAssert ( arr & & arr - > num > 0 & & index < arr - > num , " Invalid index . Out of bounds " ) ; <nl> - if ( bReleaseObj ) <nl> - { <nl> - arr - > arr [ index ] - > release ( ) ; <nl> - } <nl> - <nl> - arr - > num - - ; <nl> - <nl> - unsigned int remaining = arr - > num - index ; <nl> - if ( remaining > 0 ) <nl> - { <nl> - memmove ( & arr - > arr [ index ] , & arr - > arr [ index + 1 ] , remaining * sizeof ( void * ) ) ; <nl> - } <nl> - } <nl> + void ccArrayRemoveObjectAtIndex ( ccArray * arr , unsigned int index , bool bReleaseObj = true ) ; <nl> <nl> / * * Removes object at specified index and fills the gap with the last object , <nl> thereby avoiding the need to push back subsequent objects . <nl> Behaviour undefined if index outside [ 0 , num - 1 ] . * / <nl> - static inline void ccArrayFastRemoveObjectAtIndex ( ccArray * arr , unsigned int index ) <nl> - { <nl> - arr - > arr [ index ] - > release ( ) ; <nl> + void ccArrayFastRemoveObjectAtIndex ( ccArray * arr , unsigned int index ) ; <nl> <nl> - unsigned int last = - - arr - > num ; <nl> - arr - > arr [ index ] = arr - > arr [ last ] ; <nl> - } <nl> - <nl> - static inline void ccArrayFastRemoveObject ( ccArray * arr , CCObject * object ) <nl> - { <nl> - unsigned int index = ccArrayGetIndexOfObject ( arr , object ) ; <nl> - if ( index ! = UINT_MAX ) <nl> - { <nl> - ccArrayFastRemoveObjectAtIndex ( arr , index ) ; <nl> - } <nl> - } <nl> + void ccArrayFastRemoveObject ( ccArray * arr , CCObject * object ) ; <nl> <nl> / * * Searches for the first occurance of object and removes it . If object is not <nl> found the function has no effect . * / <nl> - static inline void ccArrayRemoveObject ( ccArray * arr , CCObject * object , bool bReleaseObj ) <nl> - { <nl> - unsigned int index = ccArrayGetIndexOfObject ( arr , object ) ; <nl> - <nl> - if ( index ! = UINT_MAX ) <nl> - { <nl> - ccArrayRemoveObjectAtIndex ( arr , index , bReleaseObj ) ; <nl> - } <nl> - } <nl> + void ccArrayRemoveObject ( ccArray * arr , CCObject * object , bool bReleaseObj = true ) ; <nl> <nl> / * * Removes from arr all objects in minusArr . For each object in minusArr , the <nl> first matching instance in arr will be removed . * / <nl> - static inline void ccArrayRemoveArray ( ccArray * arr , ccArray * minusArr ) <nl> - { <nl> - for ( unsigned int i = 0 ; i < minusArr - > num ; i + + ) <nl> - { <nl> - ccArrayRemoveObject ( arr , minusArr - > arr [ i ] , true ) ; <nl> - } <nl> - } <nl> + void ccArrayRemoveArray ( ccArray * arr , ccArray * minusArr ) ; <nl> <nl> / * * Removes from arr all objects in minusArr . For each object in minusArr , all <nl> matching instances in arr will be removed . * / <nl> - static inline void ccArrayFullRemoveArray ( ccArray * arr , ccArray * minusArr ) <nl> - { <nl> - unsigned int back = 0 ; <nl> - <nl> - for ( unsigned int i = 0 ; i < arr - > num ; i + + ) <nl> - { <nl> - if ( ccArrayContainsObject ( minusArr , arr - > arr [ i ] ) ) <nl> - { <nl> - arr - > arr [ i ] - > release ( ) ; <nl> - back + + ; <nl> - } <nl> - else <nl> - { <nl> - arr - > arr [ i - back ] = arr - > arr [ i ] ; <nl> - } <nl> - } <nl> - <nl> - arr - > num - = back ; <nl> - } <nl> - <nl> - typedef struct _ccCArray <nl> - { <nl> - unsigned int num , max ; <nl> - void * * arr ; / / equals CCObject * * arr ; <nl> - } ccCArray ; <nl> + void ccArrayFullRemoveArray ( ccArray * arr , ccArray * minusArr ) ; <nl> + <nl> + / * * Sends to each object in arr the message identified by given selector . * / <nl> + void ccArrayMakeObjectsPerformSelector ( ccArray * arr , SEL_CallFunc sel ) ; <nl> + <nl> + void ccArrayMakeObjectsPerformSelectorWithObject ( ccArray * arr , SEL_CallFuncO sel , CCObject * object ) ; <nl> + <nl> + void ccArrayMakeObjectPerformSelectorWithArrayObjects ( ccArray * arr , SEL_CallFuncO sel , CCObject * object ) ; <nl> <nl> - static inline void ccCArrayRemoveAllValues ( ccCArray * arr ) ; <nl> + <nl> + / / # pragma mark - <nl> + / / # pragma mark ccCArray for Values ( c structures ) <nl> + <nl> + typedef ccArray ccCArray ; <nl> <nl> / * * Allocates and initializes a new C array with specified capacity * / <nl> - static inline ccCArray * ccCArrayNew ( unsigned int capacity ) <nl> - { <nl> - if ( capacity = = 0 ) <nl> - { <nl> - capacity = 1 ; <nl> - } <nl> - <nl> - ccCArray * arr = ( ccCArray * ) malloc ( sizeof ( ccCArray ) ) ; <nl> - arr - > num = 0 ; <nl> - arr - > arr = ( void * * ) malloc ( capacity * sizeof ( void * ) ) ; <nl> - arr - > max = capacity ; <nl> - <nl> - return arr ; <nl> - } <nl> + ccCArray * ccCArrayNew ( unsigned int capacity ) ; <nl> <nl> / * * Frees C array after removing all remaining values . Silently ignores nil arr . * / <nl> - static inline void ccCArrayFree ( ccCArray * arr ) <nl> - { <nl> - if ( arr = = NULL ) <nl> - { <nl> - return ; <nl> - } <nl> - <nl> - ccCArrayRemoveAllValues ( arr ) ; <nl> - <nl> - free ( arr - > arr ) ; <nl> - free ( arr ) ; <nl> - } <nl> + void ccCArrayFree ( ccCArray * arr ) ; <nl> <nl> / * * Doubles C array capacity * / <nl> - static inline void ccCArrayDoubleCapacity ( ccCArray * arr ) <nl> - { <nl> - ccArrayDoubleCapacity ( ( ccArray * ) arr ) ; <nl> - } <nl> + void ccCArrayDoubleCapacity ( ccCArray * arr ) ; <nl> <nl> / * * Increases array capacity such that max > = num + extra . * / <nl> - static inline void ccCArrayEnsureExtraCapacity ( ccCArray * arr , unsigned int extra ) <nl> - { <nl> - ccArrayEnsureExtraCapacity ( ( ccArray * ) arr , extra ) ; <nl> - } <nl> + void ccCArrayEnsureExtraCapacity ( ccCArray * arr , unsigned int extra ) ; <nl> <nl> / * * Returns index of first occurence of value , NSNotFound if value not found . * / <nl> - static inline int ccCArrayGetIndexOfValue ( ccCArray * arr , void * value ) <nl> - { <nl> - for ( unsigned int i = 0 ; i < arr - > num ; i + + ) <nl> - { <nl> - if ( arr - > arr [ i ] = = value ) <nl> - { <nl> - return i ; <nl> - } <nl> - } <nl> - <nl> - return - 1 ; <nl> - } <nl> + unsigned int ccCArrayGetIndexOfValue ( ccCArray * arr , CCARRAY_ID value ) ; <nl> <nl> / * * Returns a Boolean value that indicates whether value is present in the C array . * / <nl> - static inline bool ccCArrayContainsValue ( ccCArray * arr , void * value ) <nl> - { <nl> - return ccCArrayGetIndexOfValue ( arr , value ) ! = - 1 ; <nl> - } <nl> + bool ccCArrayContainsValue ( ccCArray * arr , CCARRAY_ID value ) ; <nl> <nl> - / * * Inserts a value at a certain position . The valid index is [ 0 , num ] * / <nl> - static inline void ccCArrayInsertValueAtIndex ( ccCArray * arr , void * value , unsigned int index ) <nl> - { <nl> - CCAssert ( index < arr - > max , " ccCArrayInsertValueAtIndex : invalid index " ) ; <nl> - unsigned int remaining = arr - > num - index ; <nl> - <nl> - / / make sure it has enough capacity <nl> - if ( arr - > num + 1 = = arr - > max ) <nl> - { <nl> - ccCArrayDoubleCapacity ( arr ) ; <nl> - } <nl> - <nl> - / / last Value doesn ' t need to be moved <nl> - if ( remaining > 0 ) <nl> - { <nl> - / / tex coordinates <nl> - memmove ( & arr - > arr [ index + 1 ] , & arr - > arr [ index ] , sizeof ( void * ) * remaining ) ; <nl> - } <nl> - <nl> - arr - > num + + ; <nl> - arr - > arr [ index ] = value ; <nl> - } <nl> - <nl> - / * * Appends an value * / <nl> - static inline void ccCArrayAppendValue ( ccCArray * arr , void * value ) <nl> - { <nl> - arr - > arr [ arr - > num ] = value ; <nl> - arr - > num + + ; <nl> + / * * Inserts a value at a certain position . Behaviour undefined if aray doesn ' t have enough capacity * / <nl> + void ccCArrayInsertValueAtIndex ( ccCArray * arr , CCARRAY_ID value , unsigned int index ) ; <nl> <nl> - / / double the capacity for the next append action <nl> - / / if the num > = max <nl> - if ( arr - > num > = arr - > max ) <nl> - { <nl> - ccCArrayDoubleCapacity ( arr ) ; <nl> - } <nl> - } <nl> + / * * Appends an value . Bahaviour undefined if array doesn ' t have enough capacity . * / <nl> + void ccCArrayAppendValue ( ccCArray * arr , CCARRAY_ID value ) ; <nl> <nl> / * * Appends an value . Capacity of arr is increased if needed . * / <nl> - static inline void ccCArrayAppendValueWithResize ( ccCArray * arr , void * value ) <nl> - { <nl> - ccCArrayEnsureExtraCapacity ( arr , 1 ) ; <nl> - ccCArrayAppendValue ( arr , value ) ; <nl> - } <nl> + void ccCArrayAppendValueWithResize ( ccCArray * arr , CCARRAY_ID value ) ; <nl> <nl> / * * Appends values from plusArr to arr . Behaviour undefined if arr doesn ' t have <nl> enough capacity . * / <nl> - static inline void ccCArrayAppendArray ( ccCArray * arr , ccCArray * plusArr ) <nl> - { <nl> - for ( unsigned int i = 0 ; i < plusArr - > num ; i + + ) <nl> - { <nl> - ccCArrayAppendValue ( arr , plusArr - > arr [ i ] ) ; <nl> - } <nl> - } <nl> + void ccCArrayAppendArray ( ccCArray * arr , ccCArray * plusArr ) ; <nl> <nl> / * * Appends values from plusArr to arr . Capacity of arr is increased if needed . * / <nl> - static inline void ccCArrayAppendArrayWithResize ( ccCArray * arr , ccCArray * plusArr ) <nl> - { <nl> - ccCArrayEnsureExtraCapacity ( arr , plusArr - > num ) ; <nl> - ccCArrayAppendArray ( arr , plusArr ) ; <nl> - } <nl> + void ccCArrayAppendArrayWithResize ( ccCArray * arr , ccCArray * plusArr ) ; <nl> <nl> / * * Removes all values from arr * / <nl> - static inline void ccCArrayRemoveAllValues ( ccCArray * arr ) <nl> - { <nl> - arr - > num = 0 ; <nl> - } <nl> + void ccCArrayRemoveAllValues ( ccCArray * arr ) ; <nl> <nl> / * * Removes value at specified index and pushes back all subsequent values . <nl> - Behaviour undefined if index outside [ 0 , num - 1 ] . * / <nl> - static inline void ccCArrayRemoveValueAtIndex ( ccCArray * arr , unsigned int index ) <nl> - { <nl> - for ( unsigned int last = - - arr - > num ; index < last ; index + + ) <nl> - { <nl> - arr - > arr [ index ] = arr - > arr [ index + 1 ] ; <nl> - } <nl> - } <nl> + Behaviour undefined if index outside [ 0 , num - 1 ] . <nl> + @ since v0 . 99 . 4 <nl> + * / <nl> + void ccCArrayRemoveValueAtIndex ( ccCArray * arr , unsigned int index ) ; <nl> <nl> / * * Removes value at specified index and fills the gap with the last value , <nl> thereby avoiding the need to push back subsequent values . <nl> - Behaviour undefined if index outside [ 0 , num - 1 ] . * / <nl> - static inline void ccCArrayFastRemoveValueAtIndex ( ccCArray * arr , unsigned int index ) <nl> - { <nl> - unsigned int last = - - arr - > num ; <nl> - arr - > arr [ index ] = arr - > arr [ last ] ; <nl> - } <nl> + Behaviour undefined if index outside [ 0 , num - 1 ] . <nl> + @ since v0 . 99 . 4 <nl> + * / <nl> + void ccCArrayFastRemoveValueAtIndex ( ccCArray * arr , unsigned int index ) ; <nl> <nl> - / * * Searches for the first occurance of value and removes it . If value is not <nl> - found the function has no effect . * / <nl> - static inline void ccCArrayRemoveValue ( ccCArray * arr , void * value ) <nl> - { <nl> - unsigned int index = ccCArrayGetIndexOfValue ( arr , value ) ; <nl> - if ( index ! = UINT_MAX ) <nl> - { <nl> - ccCArrayRemoveValueAtIndex ( arr , index ) ; <nl> - } <nl> - } <nl> - <nl> - / * * Removes from arr all values in minusArr . For each Value in minusArr , the <nl> - first matching instance in arr will be removed . * / <nl> - static inline void ccCArrayRemoveArray ( ccCArray * arr , ccCArray * minusArr ) <nl> - { <nl> - for ( unsigned int i = 0 ; i < minusArr - > num ; i + + ) <nl> - { <nl> - ccCArrayRemoveValue ( arr , minusArr - > arr [ i ] ) ; <nl> - } <nl> - } <nl> + / * * Searches for the first occurance of value and removes it . If value is not found the function has no effect . <nl> + @ since v0 . 99 . 4 <nl> + * / <nl> + void ccCArrayRemoveValue ( ccCArray * arr , CCARRAY_ID value ) ; <nl> <nl> - / * * Removes from arr all values in minusArr . For each value in minusArr , all <nl> - matching instances in arr will be removed . * / <nl> - static inline void ccCArrayFullRemoveArray ( ccCArray * arr , ccCArray * minusArr ) <nl> - { <nl> - unsigned int back = 0 ; <nl> - <nl> - for ( unsigned int i = 0 ; i < arr - > num ; i + + ) <nl> - { <nl> - if ( ccCArrayContainsValue ( minusArr , arr - > arr [ i ] ) ) <nl> - { <nl> - back + + ; <nl> - } else <nl> - { <nl> - arr - > arr [ i - back ] = arr - > arr [ i ] ; <nl> - } <nl> - } <nl> - <nl> - arr - > num - = back ; <nl> - } <nl> + / * * Removes from arr all values in minusArr . For each Value in minusArr , the first matching instance in arr will be removed . <nl> + @ since v0 . 99 . 4 <nl> + * / <nl> + void ccCArrayRemoveArray ( ccCArray * arr , ccCArray * minusArr ) ; <nl> <nl> - NS_CC_END <nl> + / * * Removes from arr all values in minusArr . For each value in minusArr , all matching instances in arr will be removed . <nl> + @ since v0 . 99 . 4 <nl> + * / <nl> + void ccCArrayFullRemoveArray ( ccCArray * arr , ccCArray * minusArr ) ; <nl> <nl> + / / iterative mergesort arrd on <nl> + / / http : / / www . inf . fh - flensburg . de / lang / algorithmen / sortieren / merge / mergiter . htm <nl> + int cc_mergesortL ( ccCArray * array , size_t width , cc_comparator comparator ) ; <nl> + <nl> + void cc_insertionSort ( ccCArray * arr , cc_comparator comparator ) ; <nl> + <nl> + void cc_pointerswap ( void * a , void * b , size_t width ) ; <nl> + <nl> + NS_CC_END <nl> + <nl> # endif / / CC_ARRAY_H <nl> mmm a / cocos2dx / textures / CCTexture2D . cpp <nl> ppp b / cocos2dx / textures / CCTexture2D . cpp <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 - 2011 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( c ) 2008 Apple Inc . All Rights Reserved . <nl> <nl> http : / / www . cocos2d - x . org <nl> CCTexture2D : : CCTexture2D ( ) <nl> , m_fMaxS ( 0 . 0 ) <nl> , m_fMaxT ( 0 . 0 ) <nl> , m_bHasPremultipliedAlpha ( false ) <nl> + , m_bHasMipmaps ( false ) <nl> , m_bPVRHaveAlphaPremultiplied ( true ) <nl> , m_pShaderProgram ( NULL ) <nl> { <nl> bool CCTexture2D : : getHasPremultipliedAlpha ( ) <nl> <nl> bool CCTexture2D : : initWithData ( const void * data , CCTexture2DPixelFormat pixelFormat , unsigned int pixelsWide , unsigned int pixelsHigh , const CCSize & contentSize ) <nl> { <nl> - glPixelStorei ( GL_UNPACK_ALIGNMENT , 1 ) ; <nl> + / / XXX : 32 bits or POT textures uses UNPACK of 4 ( is this correct ? ? ? ) <nl> + if ( pixelFormat = = kCCTexture2DPixelFormat_RGBA8888 | | ( ccNextPOT ( pixelsWide ) = = pixelsWide & & ccNextPOT ( pixelsHigh ) = = pixelsHigh ) ) <nl> + { <nl> + glPixelStorei ( GL_UNPACK_ALIGNMENT , 4 ) ; <nl> + } <nl> + else <nl> + { <nl> + glPixelStorei ( GL_UNPACK_ALIGNMENT , 1 ) ; <nl> + } <nl> + <nl> glGenTextures ( 1 , & m_uName ) ; <nl> ccGLBindTexture2D ( m_uName ) ; <nl> <nl> - this - > setAntiAliasTexParameters ( ) ; <nl> + glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MIN_FILTER , GL_LINEAR ) ; <nl> + glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MAG_FILTER , GL_LINEAR ) ; <nl> + glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_S , GL_CLAMP_TO_EDGE ) ; <nl> + glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_T , GL_CLAMP_TO_EDGE ) ; <nl> <nl> / / Specify OpenGL texture image <nl> <nl> bool CCTexture2D : : initWithData ( const void * data , CCTexture2DPixelFormat pixelFor <nl> m_fMaxT = contentSize . height / ( float ) ( pixelsHigh ) ; <nl> <nl> m_bHasPremultipliedAlpha = false ; <nl> + m_bHasMipmaps = false ; <nl> <nl> m_eResolutionType = kCCResolutionUnknown ; <nl> setShaderProgram ( CCShaderCache : : sharedShaderCache ( ) - > programForKey ( kCCShader_PositionTexture ) ) ; <nl> bool CCTexture2D : : initPremultipliedATextureWithImage ( CCImage * image , unsigned in <nl> / / implementation CCTexture2D ( Text ) <nl> bool CCTexture2D : : initWithString ( const char * text , const char * fontName , float fontSize ) <nl> { <nl> - return initWithString ( text , CCSizeMake ( 0 , 0 ) , CCTextAlignmentCenter , fontName , fontSize ) ; <nl> + return initWithString ( text , CCSizeMake ( 0 , 0 ) , kCCTextAlignmentCenter , kCCVerticalTextAlignmentTop , kCCLineBreakModeWordWrap , fontName , fontSize ) ; <nl> } <nl> - bool CCTexture2D : : initWithString ( const char * text , const CCSize & dimensions , CCTextAlignment alignment , const char * fontName , float fontSize ) <nl> + <nl> + bool CCTexture2D : : initWithString ( const char * text , const CCSize & dimensions , CCTextAlignment hAlignment , CCVerticalTextAlignment vAlignment , const char * fontName , float fontSize ) <nl> + { <nl> + return initWithString ( text , dimensions , hAlignment , vAlignment , kCCLineBreakModeWordWrap , fontName , fontSize ) ; <nl> + } <nl> + <nl> + bool CCTexture2D : : initWithString ( const char * text , const CCSize & dimensions , CCTextAlignment hAlignment , CCVerticalTextAlignment vAlignment , CCLineBreakMode lineBreakMode , const char * fontName , float fontSize ) <nl> { <nl> # if CC_ENABLE_CACHE_TEXTURE_DATA <nl> / / cache the texture data <nl> bool CCTexture2D : : initWithString ( const char * text , const CCSize & dimensions , CCT <nl> # endif <nl> <nl> CCImage image ; <nl> - CCImage : : ETextAlign eAlign = ( CCTextAlignmentCenter = = alignment ) ? CCImage : : kAlignCenter <nl> - : ( CCTextAlignmentLeft = = alignment ) ? CCImage : : kAlignLeft : CCImage : : kAlignRight ; <nl> + <nl> + CCImage : : ETextAlign eAlign ; <nl> + <nl> + if ( kCCVerticalTextAlignmentTop = = vAlignment ) <nl> + { <nl> + eAlign = ( kCCTextAlignmentCenter = = hAlignment ) ? CCImage : : kAlignTop <nl> + : ( kCCTextAlignmentLeft = = hAlignment ) ? CCImage : : kAlignTopLeft : CCImage : : kAlignTopRight ; <nl> + } <nl> + else if ( kCCVerticalTextAlignmentCenter = = vAlignment ) <nl> + { <nl> + eAlign = ( kCCTextAlignmentCenter = = hAlignment ) ? CCImage : : kAlignCenter <nl> + : ( kCCTextAlignmentLeft = = hAlignment ) ? CCImage : : kAlignLeft : CCImage : : kAlignRight ; <nl> + } <nl> + else if ( kCCVerticalTextAlignmentBottom = = vAlignment ) <nl> + { <nl> + eAlign = ( kCCTextAlignmentCenter = = hAlignment ) ? CCImage : : kAlignBottom <nl> + : ( kCCTextAlignmentLeft = = hAlignment ) ? CCImage : : kAlignBottomLeft : CCImage : : kAlignBottomRight ; <nl> + } <nl> + else <nl> + { <nl> + CCAssert ( false , " Not supported alignment format ! " ) ; <nl> + } <nl> <nl> - if ( ! image . initWithString ( text , ( int ) dimensions . width , ( int ) dimensions . height , eAlign , fontName , ( int ) fontSize ) ) <nl> + if ( ! image . initWithString ( text , ( int ) dimensions . width , ( int ) dimensions . height , eAlign , fontName , ( int ) fontSize ) ) <nl> { <nl> return false ; <nl> } <nl> bool CCTexture2D : : initWithPVRFile ( const char * file ) <nl> m_tContentSize = CCSizeMake ( ( float ) m_uPixelsWide , ( float ) m_uPixelsHigh ) ; <nl> m_bHasPremultipliedAlpha = PVRHaveAlphaPremultiplied_ ; <nl> m_ePixelFormat = pvr - > getFormat ( ) ; <nl> - <nl> - this - > setAntiAliasTexParameters ( ) ; <nl> + m_bHasMipmaps = pvr - > getNumberOfMipmaps ( ) > 1 ; <nl> + <nl> pvr - > release ( ) ; <nl> } <nl> else <nl> void CCTexture2D : : generateMipmap ( ) <nl> CCAssert ( m_uPixelsWide = = ccNextPOT ( m_uPixelsWide ) & & m_uPixelsHigh = = ccNextPOT ( m_uPixelsHigh ) , " Mimpap texture only works in POT textures " ) ; <nl> ccGLBindTexture2D ( m_uName ) ; <nl> glGenerateMipmap ( GL_TEXTURE_2D ) ; <nl> + m_bHasMipmaps = true ; <nl> } <nl> <nl> void CCTexture2D : : setTexParameters ( ccTexParams * texParams ) <nl> { <nl> - CCAssert ( ( m_uPixelsWide = = ccNextPOT ( m_uPixelsWide ) & & m_uPixelsHigh = = ccNextPOT ( m_uPixelsHigh ) ) | | <nl> - ( texParams - > wrapS = = GL_CLAMP_TO_EDGE & & texParams - > wrapT = = GL_CLAMP_TO_EDGE ) , <nl> - " GL_CLAMP_TO_EDGE should be used in NPOT textures " ) ; <nl> + CCAssert ( ( m_uPixelsWide = = ccNextPOT ( m_uPixelsWide ) | | texParams - > wrapS = = GL_CLAMP_TO_EDGE ) & & <nl> + ( m_uPixelsHigh = = ccNextPOT ( m_uPixelsHigh ) | | texParams - > wrapT = = GL_CLAMP_TO_EDGE ) , <nl> + " GL_CLAMP_TO_EDGE should be used in NPOT dimensions " ) ; <nl> + <nl> ccGLBindTexture2D ( m_uName ) ; <nl> glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MIN_FILTER , texParams - > minFilter ) ; <nl> glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MAG_FILTER , texParams - > magFilter ) ; <nl> void CCTexture2D : : setTexParameters ( ccTexParams * texParams ) <nl> <nl> void CCTexture2D : : setAliasTexParameters ( ) <nl> { <nl> - ccTexParams texParams = { GL_NEAREST , GL_NEAREST , GL_CLAMP_TO_EDGE , GL_CLAMP_TO_EDGE } ; <nl> - this - > setTexParameters ( & texParams ) ; <nl> + ccGLBindTexture2D ( m_uName ) ; <nl> + <nl> + if ( ! m_bHasMipmaps ) <nl> + { <nl> + glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MIN_FILTER , GL_NEAREST ) ; <nl> + } <nl> + else <nl> + { <nl> + glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MIN_FILTER , GL_NEAREST_MIPMAP_NEAREST ) ; <nl> + } <nl> + <nl> + glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MAG_FILTER , GL_NEAREST ) ; <nl> } <nl> <nl> void CCTexture2D : : setAntiAliasTexParameters ( ) <nl> { <nl> - ccTexParams texParams = { GL_LINEAR , GL_LINEAR , GL_CLAMP_TO_EDGE , GL_CLAMP_TO_EDGE } ; <nl> - this - > setTexParameters ( & texParams ) ; <nl> + ccGLBindTexture2D ( m_uName ) ; <nl> + <nl> + if ( ! m_bHasMipmaps ) <nl> + { <nl> + glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MIN_FILTER , GL_LINEAR ) ; <nl> + } <nl> + else <nl> + { <nl> + glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MIN_FILTER , GL_LINEAR_MIPMAP_NEAREST ) ; <nl> + } <nl> + <nl> + glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MAG_FILTER , GL_LINEAR ) ; <nl> } <nl> <nl> / / <nl> unsigned int CCTexture2D : : bitsPerPixelForFormat ( ) <nl> ret = 16 ; <nl> break ; <nl> case kCCTexture2DPixelFormat_RGB888 : <nl> - ret = 24 ; <nl> + / / It is 32 and not 24 , since its internal representation uses 32 bits . <nl> + ret = 32 ; <nl> break ; <nl> default : <nl> ret = - 1 ; <nl> mmm a / cocos2dx / textures / CCTexture2D . h <nl> ppp b / cocos2dx / textures / CCTexture2D . h <nl> <nl> / * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * <nl> - Copyright ( c ) 2010 - 2011 cocos2d - x . org <nl> + Copyright ( c ) 2010 - 2012 cocos2d - x . org <nl> Copyright ( C ) 2008 Apple Inc . All Rights Reserved . <nl> <nl> http : / / www . cocos2d - x . org <nl> class CCImage ; <nl> Possible texture pixel formats <nl> * / <nl> typedef enum { <nl> - kCCTexture2DPixelFormat_Automatic = 0 , <nl> + <nl> / / ! 32 - bit texture : RGBA8888 <nl> kCCTexture2DPixelFormat_RGBA8888 , <nl> / / ! 24 - bit texture : RGBA888 <nl> typedef enum { <nl> kCCTexture2DPixelFormat_Default = kCCTexture2DPixelFormat_RGBA8888 , <nl> <nl> / / backward compatibility stuff <nl> - kTexture2DPixelFormat_Automatic = kCCTexture2DPixelFormat_Automatic , <nl> kTexture2DPixelFormat_RGBA8888 = kCCTexture2DPixelFormat_RGBA8888 , <nl> kTexture2DPixelFormat_RGB888 = kCCTexture2DPixelFormat_RGB888 , <nl> kTexture2DPixelFormat_RGB565 = kCCTexture2DPixelFormat_RGB565 , <nl> class CC_DLL CCTexture2D : public CCObject <nl> Extensions to make it easy to create a CCTexture2D object from a string of text . <nl> Note that the generated textures are of type A8 - use the blending mode ( GL_SRC_ALPHA , GL_ONE_MINUS_SRC_ALPHA ) . <nl> * / <nl> + <nl> + bool initWithString ( const char * text , const CCSize & dimensions , CCTextAlignment hAlignment , CCVerticalTextAlignment vAlignment , CCLineBreakMode lineBreakMode , const char * fontName , float fontSize ) ; <nl> / * * Initializes a texture from a string with dimensions , alignment , font name and font size * / <nl> - bool initWithString ( const char * text , const CCSize & dimensions , CCTextAlignment alignment , const char * fontName , float fontSize ) ; <nl> + bool initWithString ( const char * text , const CCSize & dimensions , CCTextAlignment hAlignment , CCVerticalTextAlignment vAlignment , const char * fontName , float fontSize ) ; <nl> / * * Initializes a texture from a string with font name and font size * / <nl> bool initWithString ( const char * text , const char * fontName , float fontSize ) ; <nl> <nl> class CC_DLL CCTexture2D : public CCObject <nl> <nl> / * * sets the min filter , mag filter , wrap s and wrap t texture parameters . <nl> If the texture size is NPOT ( non power of 2 ) , then in can only use GL_CLAMP_TO_EDGE in GL_TEXTURE_WRAP_ { S , T } . <nl> + <nl> + @ warning Calling this method could allocate additional texture memory . <nl> + <nl> @ since v0 . 8 <nl> * / <nl> void setTexParameters ( ccTexParams * texParams ) ; <nl> class CC_DLL CCTexture2D : public CCObject <nl> - GL_TEXTURE_MIN_FILTER = GL_LINEAR <nl> - GL_TEXTURE_MAG_FILTER = GL_LINEAR <nl> <nl> + @ warning Calling this method could allocate additional texture memory . <nl> + <nl> @ since v0 . 8 <nl> * / <nl> void setAntiAliasTexParameters ( ) ; <nl> class CC_DLL CCTexture2D : public CCObject <nl> - GL_TEXTURE_MIN_FILTER = GL_NEAREST <nl> - GL_TEXTURE_MAG_FILTER = GL_NEAREST <nl> <nl> + @ warning Calling this method could allocate additional texture memory . <nl> + <nl> @ since v0 . 8 <nl> * / <nl> void setAliasTexParameters ( ) ; <nl> class CC_DLL CCTexture2D : public CCObject <nl> * / <nl> unsigned int bitsPerPixelForFormat ( ) ; <nl> <nl> + / * * returns the pixel format in a NSString . <nl> + @ since v2 . 0 <nl> + * / <nl> + CCString * stringForFormat ( ) ; <nl> + <nl> + <nl> + / * * Helper functions that returns bits per pixels for a given format . <nl> + @ since v2 . 0 <nl> + * / <nl> + unsigned int bitsPerPixelForFormat ( CCTexture2DPixelFormat format ) ; <nl> + <nl> / * * sets the default pixel format for UIImagescontains alpha channel . <nl> If the UIImage contains alpha channel , then the options are : <nl> - generate 32 - bit textures : kCCTexture2DPixelFormat_RGBA8888 ( default one ) <nl> class CC_DLL CCTexture2D : public CCObject <nl> <nl> How does it work ? <nl> - If the image is an RGBA ( with Alpha ) then the default pixel format will be used ( it can be a 8 - bit , 16 - bit or 32 - bit texture ) <nl> - - If the image is an RGB ( without Alpha ) then an RGB565 or RGB888 texture will be used ( 16 - bit texture ) <nl> + - If the image is an RGB ( without Alpha ) then : If the default pixel format is RGBA8888 then a RGBA8888 ( 32 - bit ) will be used . Otherwise a RGB565 ( 16 - bit texture ) will be used . <nl> + <nl> + This parameter is not valid for PVR / PVR . CCZ images . <nl> <nl> @ since v0 . 8 <nl> * / <nl> class CC_DLL CCTexture2D : public CCObject <nl> / * * whether or not the texture has their Alpha premultiplied * / <nl> CC_PROPERTY_READONLY ( bool , m_bHasPremultipliedAlpha , HasPremultipliedAlpha ) ; <nl> <nl> + CC_PROPERTY_READONLY ( bool , m_bHasMipmaps , HasMipmaps ) ; <nl> + <nl> / * * shader program used by drawAtPoint and drawInRect * / <nl> CC_PROPERTY ( CCGLProgram * , m_pShaderProgram , ShaderProgram ) ; <nl> <nl> mmm a / cocos2dx / textures / CCTexturePVR . cpp <nl> ppp b / cocos2dx / textures / CCTexturePVR . cpp <nl> bool CCTexturePVR : : createGLTexture ( ) <nl> { <nl> if ( m_uName ! = 0 ) <nl> { <nl> - glDeleteTextures ( 1 , & m_uName ) ; <nl> + ccGLDeleteTexture ( m_uName ) ; <nl> } <nl> <nl> glGenTextures ( 1 , & m_uName ) ; <nl> mmm a / cocos2dx / textures / CCTexturePVR . h <nl> ppp b / cocos2dx / textures / CCTexturePVR . h <nl> class CCTexturePVR : public CCObject <nl> How many mipmaps do we have . It must be at least one <nl> when proper initialization finishes <nl> * / <nl> - unsigned int m_uNumberOfMipmaps ; <nl> + CC_PROPERTY_READONLY ( unsigned int , m_uNumberOfMipmaps , NumberOfMipmaps ) ; <nl> <nl> / * <nl> Makrs for mipmaps . Each entry contains position in file <nl> mmm a / cocos2dx / tileMap_parallax_nodes / CCTMXLayer . cpp <nl> ppp b / cocos2dx / tileMap_parallax_nodes / CCTMXLayer . cpp <nl> void CCTMXLayer : : setupTileSprite ( CCSprite * sprite , CCPoint pos , unsigned int gid <nl> sprite - > setOpacity ( m_cOpacity ) ; <nl> <nl> / / issue 1264 , flip can be undone as well <nl> - if ( gid & kCCTMXTileHorizontalFlag ) <nl> - { <nl> - sprite - > setFlipX ( true ) ; <nl> - } <nl> - else <nl> - { <nl> - sprite - > setFlipX ( false ) ; <nl> - } <nl> - <nl> - if ( gid & kCCTMXTileVerticalFlag ) <nl> - { <nl> - sprite - > setFlipY ( true ) ; <nl> - } <nl> - else <nl> - { <nl> - sprite - > setFlipY ( false ) ; <nl> - } <nl> - <nl> - if ( gid & kCCTMXTileDiagonalFlag ) <nl> - { <nl> - CCAssert ( false , " Tiled Anti - Diagonally Flip not supported yet " ) ; <nl> + sprite - > setFlipX ( false ) ; <nl> + sprite - > setFlipX ( false ) ; <nl> + sprite - > setRotation ( 0 . 0f ) ; <nl> + sprite - > setAnchorPoint ( ccp ( 0 , 0 ) ) ; <nl> + <nl> + / / Rotation in tiled is achieved using 3 flipped states , flipping across the horizontal , vertical , and diagonal axes of the tiles . <nl> + if ( gid & kCCTMXTileDiagonalFlag ) <nl> + { <nl> + / / put the anchor in the middle for ease of rotation . <nl> + sprite - > setAnchorPoint ( ccp ( 0 . 5f , 0 . 5f ) ) ; <nl> + sprite - > setPosition ( ccp ( positionAt ( pos ) . x + sprite - > getContentSize ( ) . height / 2 , <nl> + positionAt ( pos ) . y + sprite - > getContentSize ( ) . width / 2 ) ) ; <nl> + <nl> + unsigned int flag = gid & ( kCCTMXTileHorizontalFlag | kCCTMXTileVerticalFlag ) ; <nl> + <nl> + / / handle the 4 diagonally flipped states . <nl> + if ( flag = = kCCTMXTileHorizontalFlag ) <nl> + { <nl> + sprite - > setRotation ( 90 . 0f ) ; <nl> + } <nl> + else if ( flag = = kCCTMXTileVerticalFlag ) <nl> + { <nl> + sprite - > setRotation ( 270 . 0f ) ; <nl> + } <nl> + else if ( flag = = ( kCCTMXTileVerticalFlag | kCCTMXTileHorizontalFlag ) ) <nl> + { <nl> + sprite - > setRotation ( 90 . 0f ) ; <nl> + sprite - > setFlipX ( true ) ; <nl> + } <nl> + else <nl> + { <nl> + sprite - > setRotation ( 270 . 0f ) ; <nl> + sprite - > setFlipX ( true ) ; <nl> + } <nl> + } <nl> + else <nl> + { <nl> + if ( gid & kCCTMXTileHorizontalFlag ) <nl> + { <nl> + sprite - > setFlipX ( true ) ; <nl> + } <nl> + <nl> + if ( gid & kCCTMXTileVerticalFlag ) <nl> + { <nl> + sprite - > setFlipY ( true ) ; <nl> + } <nl> } <nl> } <nl> <nl> mmm a / cocos2dx / tileMap_parallax_nodes / CCTMXXMLParser . cpp <nl> ppp b / cocos2dx / tileMap_parallax_nodes / CCTMXXMLParser . cpp <nl> bool CCTMXMapInfo : : parseXMLString ( const char * xmlString ) <nl> bool CCTMXMapInfo : : parseXMLData ( const CCData * data ) <nl> { <nl> / / TODO : implementation . <nl> + CCAssert ( false , " not implement ! " ) ; <nl> return false ; <nl> } <nl> <nl> mmm a / cocos2dx / tileMap_parallax_nodes / CCTileMapAtlas . cpp <nl> ppp b / cocos2dx / tileMap_parallax_nodes / CCTileMapAtlas . cpp <nl> void CCTileMapAtlas : : loadTGAfile ( const char * file ) <nl> { <nl> CCAssert ( file ! = NULL , " file must be non - nil " ) ; <nl> <nl> + const char * pPath = CCFileUtils : : sharedFileUtils ( ) - > fullPathFromRelativePath ( file ) <nl> + <nl> / / / / Find the path of the file <nl> / / NSBundle * mainBndl = [ CCDirector sharedDirector ] . loadingBundle ; <nl> / / CCString * resourcePath = [ mainBndl resourcePath ] ; <nl> / / CCString * path = [ resourcePath stringByAppendingPathComponent : file ] ; <nl> <nl> - m_pTGAInfo = tgaLoad ( CCFileUtils : : fullPathFromRelativePath ( file ) ) ; <nl> + m_pTGAInfo = tgaLoad ( pPath ) ; <nl> # if 1 <nl> if ( m_pTGAInfo - > status ! = TGA_OK ) <nl> { <nl>
issue : First commit since sync to rc2 .
cocos2d/cocos2d-x
c5cf23c8594f35b7c696abc2cd958d450467b61f
2012-06-08T06:11:48Z
mmm a / docs / root / intro / arch_overview / load_balancing / load_balancing . rst <nl> ppp b / docs / root / intro / arch_overview / load_balancing / load_balancing . rst <nl> Load Balancing <nl> <nl> overview <nl> load_balancers <nl> - original_dst <nl> - overprovisioning <nl> priority <nl> - zone_aware <nl> - panic_threshold <nl> locality_weight <nl> + overprovisioning <nl> + panic_threshold <nl> + original_dst <nl> + zone_aware <nl> subsets <nl>
docs : reorder lb docs ( )
envoyproxy/envoy
234f328eab0d7700a1db085af4d80a0b6c3b5f49
2018-12-28T03:16:31Z
mmm a / tensorflow / compiler / jit / tests / auto_clustering_test . cc <nl> ppp b / tensorflow / compiler / jit / tests / auto_clustering_test . cc <nl> namespace tensorflow { <nl> namespace { <nl> class AutoClusteringTestImpl : public AutoClusteringTest { <nl> protected : <nl> - / / Test auto - clustering with $ { key } . pbtxt <nl> + / / Test auto - clustering with a proto text file $ { key } . pbtxt . <nl> Status RunAutoClusteringTestWithPbtxt ( absl : : string_view key ) { <nl> string file_name_without_extension = <nl> absl : : StrCat ( testing : : TensorFlowSrcRoot ( ) , " / compiler / jit / tests / " , key ) ; <nl> class AutoClusteringTestImpl : public AutoClusteringTest { <nl> absl : : StrCat ( file_name_without_extension , " . golden_summary " ) ) ; <nl> } <nl> <nl> - / / Decompress file $ { key } . pbtxt . gz into $ { key } . pbtxt <nl> - / / and test auto - clustering with the . pbtxt . <nl> + / / Test auto - clustering with a gzipped proto text file $ { key } . pbtxt . gz . <nl> Status RunAutoClusteringTestWithGzippedPbtxt ( absl : : string_view key ) { <nl> string file_name_without_extension = <nl> absl : : StrCat ( testing : : TensorFlowSrcRoot ( ) , " / compiler / jit / tests / " , key ) ; <nl>
Revise comments .
tensorflow/tensorflow
c2b7bf049e220ebcd1bab7d070645cf832ea8910
2019-06-04T18:10:02Z