Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,036 for allowGet (0.19 sec)

  1. pkg/registry/core/pod/storage/eviction_test.go

    		eviction *policy.Eviction
    
    		badNameInURL bool
    
    		expectError   string
    		expectDeleted bool
    		podPhase      api.PodPhase
    		podName       string
    	}{
    		{
    			name: "matching pdbs with no disruptions allowed, pod running",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "default"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (1)
  2. pilot/pkg/config/kube/gateway/testdata/route-precedence.status.yaml.golden

        - group: gateway.networking.k8s.io
          kind: GRPCRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: http
      namespace: allowed-1
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. plugin/pkg/admission/serviceaccount/admission.go

    	return nil, errors.NewNotFound(api.Resource("serviceaccount"), name)
    }
    
    func (s *Plugin) limitSecretReferences(serviceAccount *corev1.ServiceAccount, pod *api.Pod) error {
    	// Ensure all secrets the pod references are allowed by the service account
    	mountableSecrets := sets.NewString()
    	for _, s := range serviceAccount.Secrets {
    		mountableSecrets.Insert(s.Name)
    	}
    	for _, volume := range pod.Spec.Volumes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRole.java

        boolean isDeclarationAgainstDeprecated();
    
        /**
         * Obtains a human-readable summary of the usage allowed by the given role.
         */
        default String describeUsage() {
            return UsageDescriber.describeRole(this);
        }
    
        /**
         * Checks that the current allowed usage of a configuration is the same as that specified by this role.
         *
         * Does not check deprecation status.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:39:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion_test.go

    		Attributes: model.ServiceAttributes{
    			Namespace: "allowed-1",
    		},
    		Ports:    ports,
    		Hostname: "svc2.allowed-1.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "allowed-2",
    		},
    		Ports:    ports,
    		Hostname: "svc2.allowed-2.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "allowed-1",
    		},
    		Ports:    ports,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  6. pkg/config/visibility/visibility.go

    	switch v {
    	case Private, Public:
    		return nil
    	case None:
    		return fmt.Errorf("exportTo ~ (none) is not allowed for Istio configuration objects")
    	default:
    		if !labels.IsDNS1123Label(string(v)) {
    			return fmt.Errorf("only .,*, or a valid DNS 1123 label is allowed as exportTo entry")
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 09 07:58:12 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/rbac.go

    }
    
    // authorizingVisitor short-circuits once allowed, and collects any resolution errors encountered
    type authorizingVisitor struct {
    	requestAttributes authorizer.Attributes
    
    	allowed bool
    	reason  string
    	errors  []error
    }
    
    func (v *authorizingVisitor) visit(source fmt.Stringer, rule *rbacv1.PolicyRule, err error) bool {
    	if rule != nil && RuleAllows(v.requestAttributes, rule) {
    		v.allowed = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 10:13:50 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  8. cmd/import-boss/main_test.go

    		`"k8s.io/kubernetes/cmd/import-boss/testdata/inverse/allowed/a2" <- "k8s.io/kubernetes/cmd/import-boss/testdata/inverse/allowed" did not match any rule`,
    		`"k8s.io/kubernetes/cmd/import-boss/testdata/inverse/forbidden/f2" <- "k8s.io/kubernetes/cmd/import-boss/testdata/inverse/allowed" did not match any rule`,
    	}
    
    	checkAllErrorStrings(t, errs, expect)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ExecutorFactory.java

         *
         * @param displayName The display name for the this executor. Used for thread names, logging and error message.
         * @param fixedSize The maximum number of threads allowed
         * @return The executor.
         */
        ManagedExecutor create(String displayName, int fixedSize);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/crypto/tls/defaults.go

    // defaultCipherSuitesFIPS are the FIPS-allowed cipher suites.
    var defaultCipherSuitesFIPS = []uint16{
    	TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
    	TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
    	TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
    	TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
    	TLS_RSA_WITH_AES_128_GCM_SHA256,
    	TLS_RSA_WITH_AES_256_GCM_SHA384,
    }
    
    // defaultCipherSuitesTLS13FIPS are the FIPS-allowed cipher suites for TLS 1.3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top