Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 197 for isAllowed (0.13 sec)

  1. pkg/registry/storage/csidriver/strategy_test.go

    	Strategy.PrepareForCreate(ctx, csiDriver)
    
    	errs := Strategy.Validate(ctx, csiDriver)
    	if len(errs) != 0 {
    		t.Errorf("unexpected error validating %v", errs)
    	}
    
    	// Update of spec is disallowed
    	newCSIDriver := csiDriver.DeepCopy()
    	attachNotRequired := false
    	newCSIDriver.Spec.AttachRequired = &attachNotRequired
    
    	Strategy.PrepareForUpdate(ctx, newCSIDriver, csiDriver)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/ops.h

        }
    
        /// Construct a multi-dimensional tensor from a nested initializer
        /// list. Note that C++ syntax allows nesting of arbitrarily typed
        /// initializer lists, so such invalid initializers cannot be disallowed at
        /// compile time. This function performs checks to make sure that the nested
        /// initializer list is indeed a valid multi-dimensional tensor.
        Initializer(const std::initializer_list<Initializer>& v);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

            //then
            assert jdt.contains('targetPlatform=1.1')
            assert jdt.contains('dummy=testValue')
        }
    
        @ToBeFixedForConfigurationCache
        void "setting project name within #hook is disallowed"(){
            given:
    
            buildScript """
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    eclipse {
      project {
        file {
          $hook { project ->
            project.name = "custom-name"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

    
            then:
            def e = thrown(IllegalStateException)
            e.message == 'The value for this property cannot be changed any further.'
        }
    
        def "cannot set to empty list after changes disallowed"() {
            given:
            def property = property()
            property.set(someValue())
            property.disallowChanges()
    
            when:
            property.empty()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

            if ( !selected.atLeast(getConfig().getMinimumVersion()) || !selected.atMost(getConfig().getMaximumVersion()) ) {
                log.error(
                    String.format(
                        "Server selected an disallowed dialect version %s (min: %s max: %s)",
                        selected,
                        getConfig().getMinimumVersion(),
                        getConfig().getMaximumVersion()));
                return false;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 22 10:09:46 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/validation/objectmeta.go

    	}
    	if _, ok := BannedOwners[gvk]; ok {
    		allErrs = append(allErrs, field.Invalid(fldPath, ownerReference, fmt.Sprintf("%s is disallowed from being an owner", gvk)))
    	}
    	return allErrs
    }
    
    // ValidateOwnerReferences validates that a set of owner references are correctly defined.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 07 03:12:31 UTC 2022
    - 12K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.cc

                                      input_shape_i, begin_i));
        DCHECK_EQ(slice_size.back().type(), DT_INT64);
      }
    
      // Trivial ConcatV2 nodes (with exactly one input) are disallowed.
      if (slice_size.size() == 1) {
        *size = slice_size[0];
      } else {
        auto concat_axis = ops::Const(host_scope.WithOpName("concat_axis"), 0);
        for (const Edge* e : control_deps) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

        ParallelExecute ops can be used instead. As so, regions within
        ParallelExecute op must not have control/data dependencies.
    
        While explicit dependencies between regions are disallowed, ParallelExecute
        op does not prevent implicit communication between regions (e.g.
        communication via send/recvs). In this case, users of ParallelExecute op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1/generated.proto

    // path are forwarded to the backend.
    message HTTPIngressPath {
      // path is matched against the path of an incoming request. Currently it can
      // contain characters disallowed from the conventional "path" part of a URL
      // as defined by RFC 3986. Paths must begin with a '/' and must be present
      // when using PathType with value "Exact" or "Prefix".
      // +optional
      optional string path = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. pkg/apis/certificates/validation/validation_test.go

    	testCases := []struct {
    		description          string
    		oldBundle, newBundle *capi.ClusterTrustBundle
    		wantErrors           field.ErrorList
    	}{{
    		description: "changing signer name disallowed",
    		oldBundle: &capi.ClusterTrustBundle{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "k8s.io:foo:bar",
    			},
    			Spec: capi.ClusterTrustBundleSpec{
    				SignerName:  "k8s.io/foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
Back to top