Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for circuit (0.11 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		}
    	}
    
    	// the start containers routines depend on pod ip(as in primary pod ip)
    	// instead of trying to figure out if we have 0 < len(podIPs)
    	// everytime, we short circuit it here
    	podIP := ""
    	if len(podIPs) != 0 {
    		podIP = podIPs[0]
    	}
    
    	// Get podSandboxConfig for containers to start.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. src/go/build/build.go

    	l := strings.Split(name, "_")
    	if n := len(l); n > 0 && l[n-1] == "test" {
    		l = l[:n-1]
    	}
    	n := len(l)
    	if n >= 2 && knownOS[l[n-2]] && knownArch[l[n-1]] {
    		if allTags != nil {
    			// In case we short-circuit on l[n-1].
    			allTags[l[n-2]] = true
    		}
    		return ctxt.matchTag(l[n-1], allTags) && ctxt.matchTag(l[n-2], allTags)
    	}
    	if n >= 1 && (knownOS[l[n-1]] || knownArch[l[n-1]]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"optional.of('a') != optional.none()":                 3,
    				"optional.of('a').hasValue()":                         2,
    				"optional.of('a').or(optional.of('a')).hasValue()":    2, // or() is short-circuited
    				"optional.none().or(optional.of('a')).hasValue()":     3,
    				"optional.of('a').optMap(v, v == 'value').hasValue()": 8,
    				"self.obj.?field == optional.of('a')":                 5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      TF::VariantType variant_ty =
          getElementTypeOrSelf(type).dyn_cast<TF::VariantType>();
      if (!variant_ty) {
        return type;
      }
      if (!variant_ty.getSubtypes().empty()) {
        // Short-circut if the variant type has subtype info.
        return UnrankedTensorType::get(
            variant_ty.getSubtypes()[0].getElementType());
      }
      Type value_type = value.getType();
      Type element_type;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			return input, nil, nil
    		}, input)
    	if err != nil {
    		t.Fatalf("Update failed: %v", err)
    	}
    	if out.ResourceVersion != lastVersion {
    		t.Errorf("guaranteed update should have short-circuited write, got %#v", out)
    	}
    
    	revertTransformer = store.UpdatePrefixTransformer(
    		func(transformer *PrefixTransformer) value.Transformer {
    			transformer.stale = true
    			return transformer
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top