Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,036 for allowGet (0.12 sec)

  1. platforms/documentation/docs/src/snippets/tasks/commandLineOption-optionValues/groovy/buildSrc/src/main/java/UrlProcess.java

        public abstract Property<Boolean> getHttp();
    
        @Option(option = "url", description = "Configures the URL to send the request to.")
        public void setUrl(String url) {
            if (!getHttp().getOrElse(true) && url.startsWith("http://")) {
                throw new IllegalArgumentException("HTTP is not allowed");
            } else {
                this.url = url;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_internal.txt

    cd ../testinternal2
    env GO111MODULE=off
    ! go build -v .
    stderr 'p\.go:3:8: use of internal package .*internal/w not allowed'
    env GO111MODULE=''
    
    [compiler:gccgo] skip # gccgo does not have GOROOT
    cd ../testinternal
    ! go build -v .
    stderr 'p\.go:3:8: use of internal package net/http/internal not allowed'
    
    -- testinternal/go.mod --
    module testinternal
    
    go 1.16
    -- testinternal/p.go --
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/policy/v1/types.go

    	//               the number of allowed disruptions. Therefore no disruptions are
    	//               allowed and the status of the condition will be False.
    	// - InsufficientPods: The number of pods are either at or below the number
    	//                     required by the PodDisruptionBudget. No disruptions are
    	//                     allowed and the status of the condition will be False.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/compilability_check_util.h

        std::vector<StackFrame> stack_trace;
        std::string uncompilable_reason;
      };
    
      // Aggregates information about what kinds of ops are allowed.
      struct OperationFilter {  // TODO(lzr): Add AllowEverything() helper.
        // Whether resource variable ops are allowed are allowed in callees.  We do
        // not allow resource variable ops in called functions (either as direct TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  5. pkg/kubelet/util/format/pod.go

    // with pod UID as part of the string.
    func PodDesc(podName, podNamespace string, podUID types.UID) string {
    	// Use underscore as the delimiter because it is not allowed in pod name
    	// (DNS subdomain format), while allowed in the container name format.
    	return fmt.Sprintf("%s_%s(%s)", podName, podNamespace, podUID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authorization_test.go

    			fakeAuthorizer{
    				authorizer.DecisionAllow,
    				"RBAC: allowed to patch pod",
    				nil,
    			},
    			"allow",
    			"RBAC: allowed to patch pod",
    		},
    		"decision forbid": {
    			fakeAuthorizer{
    				authorizer.DecisionDeny,
    				"RBAC: not allowed to patch pod",
    				nil,
    			},
    			"forbid",
    			"RBAC: not allowed to patch pod",
    		},
    		"error": {
    			fakeAuthorizer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. pkg/registry/policy/poddisruptionbudget/strategy.go

    }
    
    // PrepareForUpdate clears fields that are not allowed to be set by end users on update.
    func (podDisruptionBudgetStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    	newPodDisruptionBudget := obj.(*policy.PodDisruptionBudget)
    	oldPodDisruptionBudget := old.(*policy.PodDisruptionBudget)
    	// Update is not allowed to set status
    	newPodDisruptionBudget.Status = oldPodDisruptionBudget.Status
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 22:25:42 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/controller_test.go

    	c.state.ReferencedNamespaceKeys = sets.String{"allowed": struct{}{}}
    
    	ns1 := &v1.Namespace{ObjectMeta: metav1.ObjectMeta{
    		Name: "ns1",
    		Labels: map[string]string{
    			"foo": "bar",
    		},
    	}}
    	ns2 := &v1.Namespace{ObjectMeta: metav1.ObjectMeta{
    		Name: "ns2",
    		Labels: map[string]string{
    			"allowed": "true",
    		},
    	}}
    	ns := clienttest.Wrap(t, c.namespaces)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 16:47:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. tests/integration/security/testdata/authz/conditions.yaml.tmpl

    spec:
      selector:
        matchLabels:
          app: "{{ .To.ServiceName }}"
      rules:
      - to:
        - operation:
            paths: [ "/source-ip" ]
        when:
        - key: source.ip
          values: {{ .Allowed.MustWorkloads.Addresses | toJson }}
      - to:
          - operation:
              paths: [ "/source-ip-notValues" ]
        when:
          - key: source.ip
            notValues: {{ .Denied.MustWorkloads.Addresses | toJson }}
    ---
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cgo_bad_directives.txt

    [!cgo] skip
    [short] skip
    
    cp x.go.txt x.go
    
    # Only allow //go:cgo_ldflag .* in cgo-generated code
    [compiler:gc] cp x_gc.go.txt x.go
    [compiler:gc] ! go build x
    [compiler:gc] stderr '//go:cgo_ldflag .* only allowed in cgo-generated code'
    
    # Ignore _* files
    rm x.go
    ! go build .
    stderr 'no Go files'
    cp cgo_yy.go.txt _cgo_yy.go
    ! go build .
    stderr 'no Go files' #_* files are ignored...
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top