Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 118 for current$ (0.41 sec)

  1. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "message": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "format": "int32",
              "type": "integer"
            },
            "conditions": {
              "description": "Represents the latest available observations of a deployment's current state.",
              "items": {
                "$ref": "#/definitions/io.k8s.api.apps.v1.DeploymentCondition"
              },
              "type": "array",
              "x-kubernetes-patch-merge-key": "type",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

        final AtomicInteger readCount = new AtomicInteger();
    
        /**
         * A queue of elements currently in the map, ordered by write time. Elements are added to the
         * tail of the queue on write.
         */
        @GuardedBy("this")
        final Queue<ReferenceEntry<K, V>> writeQueue;
    
        /**
         * A queue of elements currently in the map, ordered by access time. Elements are added to the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

        final AtomicInteger readCount = new AtomicInteger();
    
        /**
         * A queue of elements currently in the map, ordered by write time. Elements are added to the
         * tail of the queue on write.
         */
        @GuardedBy("this")
        final Queue<ReferenceEntry<K, V>> writeQueue;
    
        /**
         * A queue of elements currently in the map, ordered by access time. Elements are added to the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                            conversion_metadata.attributes));
    
        // Additional function bodies could be discovered during the deferred
        // loading of the current function. Add them to the working queue.
        while (!importer.deferred_functions_.empty()) {
          deferred_functions_.push(importer.deferred_functions_.front());
          importer.deferred_functions_.pop();
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. src/reflect/value.go

    func (v Value) CanInterface() bool {
    	if v.flag == 0 {
    		panic(&ValueError{"reflect.Value.CanInterface", Invalid})
    	}
    	return v.flag&flagRO == 0
    }
    
    // Interface returns v's current value as an interface{}.
    // It is equivalent to:
    //
    //	var i interface{} = (v's underlying value)
    //
    // It panics if the Value was obtained by accessing
    // unexported struct fields.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. pkg/apis/batch/validation/validation_test.go

    			completions:   6,
    			wantTotal:     0,
    			wantError:     errors.New(`non-increasing order, previous: 3, current: 0`),
    		},
    		"invalid due to non-increasing order between intervals": {
    			indexesString: "0,0,5",
    			completions:   6,
    			wantTotal:     0,
    			wantError:     errors.New(`non-increasing order, previous: 0, current: 0`),
    		},
    		"invalid due to non-increasing order within interval": {
    			indexesString: "0,1-1,5",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    			}
    		}
    
    		if klet.serverCertificateManager != nil {
    			kubeDeps.TLSOptions.Config.GetCertificate = func(*tls.ClientHelloInfo) (*tls.Certificate, error) {
    				cert := klet.serverCertificateManager.Current()
    				if cert == nil {
    					return nil, fmt.Errorf("no serving certificate available for the kubelet")
    				}
    				return cert, nil
    			}
    		}
    	}
    
    	if kubeDeps.ProbeManager != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    // validateContainerLogStatus returns the container ID for the desired container to retrieve logs for, based on the state
    // of the container. The previous flag will only return the logs for the last terminated container, otherwise, the current
    // running container is preferred over a previous termination. If info about the container is not available then a specific
    // error is returned to the end user.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

      |   in as many languages as possible. (see MNG-3626)
      |
      | o annotation mechanism so that changes to the model can be accurately tracked.
      |
      | o need to clean up all the descriptions, matching anything to the current project-descriptor.xml file and
      |   improving on that
      |
      | o use enums where appropriate (eg dependency scope)
      |
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
Back to top