Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for checkLine (0.4 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

         * refresh.
         */
        @CanIgnoreReturnValue
        @CheckForNull
        V refresh(K key, int hash, CacheLoader<? super K, V> loader, boolean checkTime) {
          final LoadingValueReference<K, V> loadingValueReference =
              insertLoadingValueReference(key, hash, checkTime);
          if (loadingValueReference == null) {
            return null;
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

         * refresh.
         */
        @CanIgnoreReturnValue
        @CheckForNull
        V refresh(K key, int hash, CacheLoader<? super K, V> loader, boolean checkTime) {
          final LoadingValueReference<K, V> loadingValueReference =
              insertLoadingValueReference(key, hash, checkTime);
          if (loadingValueReference == null) {
            return null;
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"['a', 'b'].sum() == 'c'": "found no matching overload for 'sum' applied to 'list(string).()", // compiler type checking error
    
    				// only allow min/max/indexOf/lastIndexOf on comparable types
    				"[[1], [2]].min() == [1]":                "found no matching overload for 'min' applied to 'list(list(int)).()",        // compiler type checking error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/validation/validation_test.go

    	}, {
    		name: "type checking",
    		status: &admissionregistration.ValidatingAdmissionPolicyStatus{
    			TypeChecking: &admissionregistration.TypeChecking{
    				ExpressionWarnings: []admissionregistration.ExpressionWarning{{
    					FieldRef: "spec.validations[0].expression",
    					Warning:  "message",
    				}},
    			},
    		},
    	}, {
    		name: "type checking bad json path",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	// we skip size comparison and do the name comparison instead
    	// (conveniently, .got sorts before .toc).
    	checkSize := symn != sym.SELFGOT
    
    	for k, s := range syms {
    		ss := ldr.SymSize(s)
    		sl[k] = symNameSize{sz: ss, sym: s}
    		if !checkSize {
    			sl[k].name = ldr.SymName(s)
    		}
    		ds := int64(len(ldr.Data(s)))
    		switch {
    		case ss < ds:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  6. pkg/volume/util/operationexecutor/operation_generator.go

    				continue
    			}
    
    			attached, areAttachedErr := volumeAttacher.VolumesAreAttached(volumesSpecs, nodeName)
    			if areAttachedErr != nil {
    				klog.Errorf(
    					"VolumesAreAttached failed for checking on node %q with: %v",
    					nodeName,
    					areAttachedErr)
    				continue
    			}
    
    			for spec, check := range attached {
    				if !check {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/helpers_test.go

    		},
    		Spec: v1.PodSpec{
    			Containers: containers,
    			Volumes:    volumes,
    			Priority:   &priority,
    		},
    	}
    }
    
    // nodeConditionList is a simple alias to support equality checking independent of order
    type nodeConditionList []v1.NodeConditionType
    
    // Equal adds the ability to check equality between two lists of node conditions.
    func (s1 nodeConditionList) Equal(s2 nodeConditionList) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

          },
          "io.k8s.api.admissionregistration.v1alpha1.TypeChecking": {
            "description": "TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy",
            "properties": {
              "expressionWarnings": {
                "description": "The type checking warnings for each expression.",
                "items": {
                  "allOf": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.4.md

    * Use shasum if sha1sum doesn't exist in the path ([#37362](https://github.com/kubernetes/kubernetes/pull/37362), [@roberthbailey](https://github.com/roberthbailey))
    * Guard the ready replica checking by server version ([#37303](https://github.com/kubernetes/kubernetes/pull/37303), [@krousey](https://github.com/krousey))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // direct path to the underlying code hosting site.
    //
    // Import path checking is disabled for code found within vendor trees.
    // This makes it possible to copy code into alternate locations in vendor trees
    // without needing to update import comments.
    //
    // Import path checking is also disabled when using modules.
    // Import path comments are obsoleted by the go.mod file's module statement.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top