Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 279 for Miss (0.19 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

        // is called within doStart() so we know that the service cannot terminate or fail concurrently
        // with adding this listener so it is impossible to miss an event that we are interested in.
        addListener(
            new Listener() {
              @Override
              public void terminated(State from) {
                executor.shutdown();
              }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                "in": "query",
                "name": "continue",
                "schema": {
                  "type": "string",
                  "uniqueItems": true
                }
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

                "in": "query",
                "name": "continue",
                "schema": {
                  "type": "string",
                  "uniqueItems": true
                }
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    [NOTE]
    ====
    The penultimate point above is what can make the integration with <<declaring_repositories.adoc#sec:case-for-maven-local,Maven Local>> problematic.
    As it is a cache for Maven, it will sometimes miss some artifacts of a given module.
    If Gradle is sourcing such a module from Maven Local, it will consider the missing artifacts to be missing altogether.
    ====
    
    === Repository disabling
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/converter.go

    	fieldCacheMap := fieldCache.value.Load().(fieldsCacheMap)
    	if info, ok := fieldCacheMap[structField{structType, field}]; ok {
    		return info
    	}
    
    	// Cache miss - we need to compute the field name.
    	info := &fieldInfo{}
    	typeField := structType.Field(field)
    	jsonTag := typeField.Tag.Get("json")
    	if len(jsonTag) == 0 {
    		// Make the first character lowercase.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "in": "query",
                "name": "continue",
                "schema": {
                  "type": "string",
                  "uniqueItems": true
                }
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/cache/cache.go

    type OutputID [HashSize]byte
    
    // Cache is the interface as used by the cmd/go.
    type Cache interface {
    	// Get returns the cache entry for the provided ActionID.
    	// On miss, the error type should be of type *entryNotFoundError.
    	//
    	// After a success call to Get, OutputFile(Entry.OutputID) must
    	// exist on disk for until Close is called (at the end of the process).
    	Get(ActionID) (Entry, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. internal/bucket/replication/replication_test.go

    			prefix:         "miss/prefix",
    			expectedNonRec: false,
    			expectedRec:    false,
    		},
    		// case 2 - only one rule which matches prefix filter
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. pilot/pkg/autoregistration/controller.go

    		return false, fmt.Errorf("failed updating WorkloadEntry %s/%s: WorkloadEntry not found", proxy.Metadata.Namespace, entryName)
    	}
    
    	// check if this was actually disconnected AFTER this connTime
    	// this check can miss, but when it does the `Update` will fail due to versioning
    	// and retry. The retry includes this check and passes the next time.
    	if timestamp, ok := wle.Annotations[annotation.IoIstioDisconnectedAt.Name]; ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

              stopwatch = Stopwatch.createStarted();
              startupTimers.put(service, stopwatch);
            }
            if (to.compareTo(RUNNING) >= 0 && stopwatch.isRunning()) {
              // N.B. if we miss the STARTING event then we may never record a startup time.
              stopwatch.stop();
              if (!(service instanceof NoOpService)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top