Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. staging/src/k8s.io/api/networking/v1beta1/types.go

    }
    
    // IngressRuleValue represents a rule to apply against incoming requests. If the
    // rule is satisfied, the request is routed to the specified backend. Currently
    // mixing different types of rules in a single Ingress is disallowed, so exactly
    // one of the following must be set.
    type IngressRuleValue struct {
    	//TODO:
    	// 1. Consider renaming this resource and the associated rules so they
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.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/types_swagger_doc_generated.go

    	"":         "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
    	"path":     "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\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  10. 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)
Back to top