Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for checkDep (0.19 sec)

  1. pkg/apis/admissionregistration/validation/validation_test.go

    			ObjectMeta: metav1.ObjectMeta{
    				Name: "!!!",
    			},
    			Spec: admissionregistration.ValidatingAdmissionPolicySpec{},
    		},
    	}, {
    		name: "match conditions re-checked if paramKind changes",
    		oldconfig: &admissionregistration.ValidatingAdmissionPolicy{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "config",
    			},
    			Spec: admissionregistration.ValidatingAdmissionPolicySpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	srcfiles = append(srcfiles, cxxfiles...)
    	b.cacheSrcFiles(a, srcfiles)
    
    	// Running cgo generated the cgo header.
    	need &^= needCgoHdr
    
    	// Sanity check only, since Package.load already checked as well.
    	if len(gofiles) == 0 {
    		return &load.NoGoError{Package: p}
    	}
    
    	// Prepare Go vet config if needed.
    	if need&needVet != 0 {
    		buildVetConfig(a, srcfiles)
    		need &^= needVet
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.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: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/bootstrap.min.js.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    // After globalMapPath is removed, fd lock by loopback for the device can
    // be released safely because no one can consume the device at this point.
    // At last, device open status will be checked just in case.
    // If all steps are completed, the device is marked as unmounted.
    func (og *operationGenerator) GenerateUnmapDeviceFunc(
    	deviceToDetach AttachedVolume,
    	actualStateOfWorld ActualStateOfWorldMounterUpdater,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    			errors: map[string]string{
    				// the types used in validation rules don't integrate with CEL's Null type, so
    				// all attempts to compare values with null are caught by the type checker at compilation time
    				"self.unsetPlainStr == null":     "no matching overload for '_==_' applied to '(string, null)",
    				"self.unsetDefaultedStr != null": "no matching overload for '_!=_' applied to '(string, null)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    		p.XTestGoFiles,
    	)
    
    	// EmbedFiles may overlap with the other files.
    	// Dedup, but delay building the map as long as possible.
    	// Only files in the current directory (no slash in name)
    	// need to be checked against the files variable above.
    	var have map[string]bool
    	for _, file := range p.EmbedFiles {
    		if !strings.Contains(file, "/") {
    			if have == nil {
    				have = make(map[string]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    was for bringing the cook tulip-roots instead of onions.'
    
      Seven flung down his brush, and had just begun `Well, of all
    the unjust things--' when his eye chanced to fall upon Alice, as
    she stood watching them, and he checked himself suddenly:  the
    others looked round also, and all of them bowed low.
    
      `Would you tell me,' said Alice, a little timidly, `why you are
    painting those roses?'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    was for bringing the cook tulip-roots instead of onions.'
    
      Seven flung down his brush, and had just begun `Well, of all
    the unjust things--' when his eye chanced to fall upon Alice, as
    she stood watching them, and he checked himself suddenly:  the
    others looked round also, and all of them bowed low.
    
      `Would you tell me,' said Alice, a little timidly, `why you are
    painting those roses?'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

      int64_t nelems = 1;
      std::vector<int64_t> dims;
      dims.reserve(shape.dims());
      for (int i = 0; i < shape.dims(); ++i) {
        dims.push_back(shape.dim_size(i));
        nelems *= shape.dim_size(i);
      }
      CHECK_EQ(nelems, 0);
      return TF_NewTensor(
          dtype, reinterpret_cast<const int64_t*>(dims.data()), shape.dims(),
          reinterpret_cast<void*>(&empty), 0, [](void*, size_t, void*) {}, nullptr);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top