Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,036 for allowGet (0.34 sec)

  1. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentStatus.java

         */
        static AgentStatus allowed() {
            return new DefaultAgentStatus();
        }
    
        /**
         * Returns an AgentStatus instance that disables instrumentation regardless of the agent's availability.
         */
        static AgentStatus disabled() {
            return new DisabledAgentStatus();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/query.go

    		return nil, errQueryDisabled
    	}
    	if allowed == nil {
    		allowed = func(context.Context, module.Version) error { return nil }
    	}
    
    	if MainModules.Contains(path) && (query == "upgrade" || query == "patch") {
    		m := module.Version{Path: path}
    		if err := allowed(ctx, m); err != nil {
    			return nil, fmt.Errorf("internal error: main module version is not allowed: %w", err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/benchmark-httproute.yaml

        allowedRoutes:
          namespaces:
            from: Selector
            selector:
              matchLabels:
                istio.io/test-name-part: allowed
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: allowed-1
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      - kind: Mesh
        name: istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

            """
    
            then:
            succeeds "help"
        }
    
        def "buildscript blocks are allowed before plugin statements"() {
            when:
            buildScript """
                buildscript {}
                plugins {}
            """
    
            then:
            succeeds "help"
        }
    
        def "buildscript blocks are not allowed after plugin blocks"() {
            when:
            buildScript """
                plugins {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CodeNarc.java

            this.config = config;
        }
    
        /**
         * The maximum number of priority 1 violations allowed before failing the build.
         */
        @Input
        public int getMaxPriority1Violations() {
            return maxPriority1Violations;
        }
    
        /**
         * The maximum number of priority 1 violations allowed before failing the build.
         */
        public void setMaxPriority1Violations(int maxPriority1Violations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller_test.go

    						"requestheader-group-headers":        `["delta"]`,
    						"requestheader-extra-headers-prefix": `["echo","foxtrot"]`,
    						"requestheader-client-ca-file":       string(anotherRandomCA),
    						"requestheader-allowed-names":        `["first","second"]`,
    					},
    				},
    			},
    			expectCreate: true,
    		},
    		{
    			name: "skip extension-apiserver-authentication",
    			clusterAuthInfo: ClusterAuthenticationInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. errors.go

    	// ErrPreloadNotAllowed preload is not allowed when count is used
    	ErrPreloadNotAllowed = errors.New("preload is not allowed when count is used")
    	// ErrDuplicatedKey occurs when there is a unique key constraint violation
    	ErrDuplicatedKey = errors.New("duplicated key not allowed")
    	// ErrForeignKeyViolated occurs when there is a foreign key constraint violation
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 02:53:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml

        allowedRoutes:
          namespaces:
            from: Selector
            selector:
              matchLabels:
                istio.io/test-name-part: allowed
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: allowed-1
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      - group: ""
        kind: Service
        name: a-example
      - group: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. pkg/kube/adapter.go

    	// This should be copied over from the corresponding AdmissionRequest.
    	UID types.UID `json:"uid"`
    
    	// Allowed indicates whether or not the admission request was permitted.
    	Allowed bool `json:"allowed"`
    
    	// Result contains extra details into why an admission request was denied.
    	// This field IS NOT consulted in any way if "Allowed" is "true".
    	Result *metav1.Status `json:"status,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 10 16:40:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/testers/ConcurrentMapReplaceEntryTester.java

        }
        expectUnchanged();
      }
    
      @MapFeature.Require(absent = SUPPORTS_PUT)
      public void testReplaceEntry_unsupportedAbsentKey() {
        try {
          getMap().replace(k3(), v3(), v4());
        } catch (UnsupportedOperationException tolerated) {
          // the operation would be a no-op, so exceptions are allowed but not required
        }
        expectUnchanged();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top