Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for scope_ (0.15 sec)

  1. pilot/pkg/model/sidecar_test.go

    		Meta: config.Meta{
    			Name:      "sidecar-scope-with-specific-host",
    			Namespace: "ns1",
    		},
    		Spec: &networking.Sidecar{
    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{"*/en.wikipedia.org"},
    				},
    			},
    		},
    	}
    
    	configs17 = &config.Config{
    		Meta: config.Meta{
    			Name:      "sidecar-scope-with-wildcard-host",
    			Namespace: "ns1",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // field results in a configuration error.
      //
      // - If `paramKind` is namespace-scoped, the namespace of the object being
      // evaluated for admission will be used when this field is left unset. Take
      // care that if this is left empty the binding must not match any cluster-scoped
      // resources, which will result in an error.
      //
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * project. The properties of this scope are read-only.</li>
     *
     * </ul>
     *
     * <p>When reading a property, the project searches the above scopes in order, and returns the value from the first
     * scope it finds the property in. If not found, an exception is thrown. See {@link #property(String)} for more details.</p>
     *
     * <p>When writing a property, the project searches the above scopes in order, and sets the property in the first scope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. fastapi/param_functions.py

        @app.get("/users/me/items/")
        async def read_own_items(
            current_user: Annotated[User, Security(get_current_active_user, scopes=["items"])]
        ):
            return [{"item_id": "Foo", "owner": current_user.username}]
        ```
        """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    var subAST = map[byte]AST{
    	't': &Name{Name: "std"},
    	'a': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "allocator"}},
    	'b': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "basic_string"}},
    	's': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "string"}},
    	'i': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "istream"}},
    	'o': &Qualified{Scope: &Name{Name: "std"}, Name: &Name{Name: "ostream"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. pkg/apis/networking/validation/validation_test.go

    		},
    		"valid name, valid controller, invalid params (bad scope)": {
    			ingressClass: makeValidIngressClass("test123", "foo.co/bar",
    				setParams(makeIngressClassParams(nil, "foo", "bar", utilpointer.String("bad-scope"), nil)),
    			),
    			expectedErrs: field.ErrorList{field.NotSupported(field.NewPath("spec.parameters.scope"),
    				"bad-scope", []string{"Cluster", "Namespace"})},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    					Type: "string",
    				},
    				ValidationExtensions: schema.ValidationExtensions{
    					XValidations: apiextensions.ValidationRules{
    						{
    							Rule:    "self.startsWith('s')",
    							Message: "scoped field should start with 's'",
    						},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				noError(),
    			},
    		},
    		{
    			name: "valid for byte",
    			input: schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

          "io.k8s.api.authorization.v1.LocalSubjectAccessReview": {
            "description": "LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        /*
                         * TODO Extensions like Flex Mojos use custom scopes like "merged", "internal", "external", etc. In
                         * order to don't break backward-compat with those, only warn but don't error out.
                         */
                        validateEnum(
                                prefix,
                                "scope",
                                problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        const string& scope =
            GetNodeAttrString(node->attrs(), kXlaInternalScopeAttr);
        if (!scope.empty()) {
          return scope;
        }
      } else {
        // If global_jit_level_ is OFF, respect only _XlaScope.
        const string& scope = GetNodeAttrString(node->attrs(), kXlaScopeAttr);
        if (!scope.empty()) {
          return scope;
        }
      }
    
      return std::nullopt;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top