Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 105 for checkDep (0.28 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    		schemaGenerator func(maxLength *int64) *schema.Structural
    		setMaxElements  int64
    
    		// calc costs expectations are checked against the generated schema without any max element limits set
    		expectedCalcCost           uint64
    		expectCalcCostExceedsLimit uint64
    
    		// calc costs expectations are checked against the generated schema with max element limits set
    		expectedSetCost             uint64
    		expectedSetCostExceedsLimit uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

            Value scale, zero_point;
            if (failed(CreateQuantizationParams(qtype, arg.getLoc(), rewriter,
                                                scale, zero_point))) {
              // As the quantized types are already checked, this is unexpected.
              call_op->emitError(
                  "Failed to create quantization parameter for an argument.");
              return failure();
            }
            qparam_args.push_back(scale);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    				s[k] = right[j]
    				j++
    			}
    		}
    	}
    	return s
    }
    
    // index returns the index of the item in the given items, or -1 if it doesn't exist
    // l must NOT be a slice of slices, this should be checked before calling.
    func index(l []interface{}, valToLookUp interface{}, mergeKey string, kind reflect.Kind) int {
    	var getValFn func(interface{}) interface{}
    	// Get the correct `getValFn` based on item `kind`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    with properties, the accessible properties of the object are field selectable via `self.field` and field presence can be checked via `has(self.field)`. Null valued fields are treated as absent fields in CEL expressions. If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map are accessible via `self[mapKey]`, map containment can be checked via `mapKey in self` and all entries of the map are accessible via CEL macros and functions such as `self.all(...)`. If the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    	if matches == 0 {
    		if len(vs.Spec.Http) > 0 {
    			fmt.Fprintf(writer, "%sWARNING: No destinations match pod subsets (checked %d HTTP routes)\n",
    				printSpaces(initPrintNum+printLevel1), len(vs.Spec.Http))
    		}
    		if len(vs.Spec.Tcp) > 0 {
    			fmt.Fprintf(writer, "%sWARNING: No destinations match pod subsets (checked %d TCP routes)\n",
    				printSpaces(initPrintNum+printLevel1), len(vs.Spec.Tcp))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			wantFilterStatuses:  []*framework.Status{nil, nil},
    			name:                "Test existing pod's anti-affinity: if an existing pod has a term with invalid topologyKey, labelSelector of the term is firstly checked, and then topologyKey of the term is also checked",
    		},
    		{
    			pod: st.MakePod().Node("nodeA").Namespace(defaultNamespace).PodAntiAffinityExists("foo", "invalid-node-label", st.PodAntiAffinityWithRequiredReq).Obj(),
    			pods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

            $custom_plugin_monitors = @()
    
            # Custom Plugin Monitors
            $custom_plugin_monitors += @("${npd_dir}\config\windows-health-checker-kubelet.json")
            $custom_plugin_monitors += @("${npd_dir}\config\windows-health-checker-kubeproxy.json")
            $custom_plugin_monitors += @("${npd_dir}\config\windows-defender-monitor.json")
    
            # System Stats Monitors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    
    			// unset fields that are not relevant to the test
    			for i := range got {
    				checker := got[i]
    				switch p := checker.(type) {
    				case *kmsPluginProbe:
    					p.service = nil
    					p.l = nil
    					p.lastResponse = nil
    				case *kmsv2PluginProbe:
    					p.service = nil
    					p.l = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    		for i, pkg := range pkgs {
    			_, err := compileInDir(runcmd, longdir, flags, importcfgfile, pkg.name, pkg.files...)
    			// Allow this package compilation fail based on conditions below;
    			// its errors were checked in previous case.
    			if err != nil && !(wantError && action == "errorcheckandrundir" && i == len(pkgs)-2) {
    				return err
    			}
    
    			if i == len(pkgs)-1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    	// check the full graph to see if the directory is a non-root dependency.
    	//
    	// If the roots are not consistent with the full module graph, the selected
    	// versions of root modules may differ from what we already checked above.
    	// Re-check those paths too.
    
    	mg, _ := rs.Graph(ctx)
    	var importPath string
    	for _, m := range mg.BuildList() {
    		var found bool
    		importPath, found = tryMod(m)
    		if found {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top