Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 322 for hit (3.7 sec)

  1. src/debug/gosym/pclntab_test.go

    	}
    
    	// Find the sym package
    	pkg := tab.LookupFunc("debug/gosym.TestLineFromAline").Obj
    	if pkg == nil {
    		t.Fatalf("nil pkg")
    	}
    
    	// Walk every absolute line and ensure that we hit every
    	// source line monotonically
    	lastline := make(map[string]int)
    	final := -1
    	for i := 0; i < 10000; i++ {
    		path, line := pkg.lineFromAline(i)
    		// Check for end of object
    		if path == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 17:17:44 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

                return true
            })
        }
    
        @Override
        AbstractIntegrationSpec withBuildCache() {
            // When configuration cache is enabled, the task graph for cache-hit builds will be loaded from the cache and tasks will run in parallel and start in an arbitrary order
            // Use max-workers=1 to force non-parallel execution and the tasks to run in the specified order
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. pkg/serviceaccount/claims.go

    	case jwt.ErrIssuedInTheFuture:
    		return nil, errors.New("service account token is issued in the future")
    
    	// our current use of jwt.Expected above should make these cases impossible to hit
    	case jwt.ErrInvalidAudience, jwt.ErrInvalidID, jwt.ErrInvalidIssuer, jwt.ErrInvalidSubject:
    		klog.Errorf("service account token claim validation got unexpected validation failure: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/internal/coverage/cformat/format.go

    		}
    		units := make([]extcu, 0, len(p.unitTable))
    		for u := range p.unitTable {
    			units = append(units, u)
    		}
    
    		// Within a package, sort the units, then walk through the
    		// sorted array. Each time we hit a new function, emit the
    		// summary entry for the previous function, then make one last
    		// emit call at the end of the loop.
    		p.sortUnits(units)
    		fname := ""
    		ffile := ""
    		flit := false
    		var fline uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/cache2/Relay.kt

          }
    
          fileToClose?.closeQuietly()
        }
      }
    
      companion object {
        // TODO(jwilson): what to do about timeouts? They could be different and unfortunately when any
        //     timeout is hit we like to tear down the whole stream.
    
        private const val SOURCE_UPSTREAM = 1
        private const val SOURCE_FILE = 2
    
        @JvmField val PREFIX_CLEAN = "OkHttp cache v1\n".encodeUtf8()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    			expectedDecryptCalls:     0, // should not hit KMS plugin
    		},
    		{
    			desc:                     "cache entry expired should not withstand plugin failure",
    			cacheTTL:                 1 * time.Millisecond,
    			simulateKMSPluginFailure: true,
    			expectedError:            "failed to decrypt DEK, error: Envelope service was disabled",
    			expectedDecryptCalls:     10, // should hit KMS plugin for each read after cache entry expired and fail
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder.go

    // the cache tokens are returned to allow future writes to the cache.
    // This code will only trigger a cache hit if all subset clusters are present. This simplifies the code a bit,
    // as the non-subset and subset cluster generation are tightly coupled, in exchange for a likely trivial cache hit rate impact.
    func (cb *ClusterBuilder) getAllCachedSubsetClusters(clusterKey clusterCache) ([]*discovery.Resource, bool) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/HashFunction.java

     * prevention and <i>no</i> expectation of bit dispersion. This leaves them perfectly suitable for
     * use in hash tables, because extra collisions cause only a slight performance hit, while poor bit
     * dispersion is easily corrected using a secondary hash function (which all reasonable hash table
     * implementations in Java use). For the many uses of hash functions beyond data structures,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/HashFunction.java

     * prevention and <i>no</i> expectation of bit dispersion. This leaves them perfectly suitable for
     * use in hash tables, because extra collisions cause only a slight performance hit, while poor bit
     * dispersion is easily corrected using a secondary hash function (which all reasonable hash table
     * implementations in Java use). For the many uses of hash functions beyond data structures,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

            when:
            configurationCacheRun 'help'
    
            then:
            outputContains('In script plugin')
            buildLogicBuiltAndWorkGraphStoredAndLoaded()
    
            // TODO - should get a cache hit for this build (https://github.com/gradle/gradle/issues/23267)
            when:
            configurationCacheRun 'help'
    
            then:
            buildLogicBuiltAndWorkGraphStoredAndLoaded()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top