Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,770 for ALLOW (0.17 sec)

  1. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/tests/configurationCacheProblemsKotlin.sample.conf

      expect-failure: true
      expected-output-file: fail.out
      allow-additional-output: true
      allow-disordered-output: true
    },{
      executable: gradle
      args: "--rerun-tasks --configuration-cache-problems=warn someTask -DsomeDestination=dest"
      expect-failure: false
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 627 bytes
    - Viewed (0)
  2. tests/integration/security/testdata/authz/jwt.yaml.tmpl

    # The following policy enables authorization on workload:
    # - Allow request principal ******@****.***/sub-1 to access path /token1
    # - Allow request in group-2 to access path /token2
    # - Allow request with any token to access path /tokenAny
    # - Allow request with permission claim of "write" or "append" to access path /permission
    # - Allow request with valid JWT token to access path /jwt1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/tests/incrementalBuildUpToDateWhen.sample.conf

    commands: [{
        executable: gradle
        args: clean alwaysInstrumentClasses
        allow-additional-output: true
        allow-disordered-output: true
    },{
        executable: gradle
        args: alwaysInstrumentClasses
        expected-output-file: incrementalBuildUpToDateWhenAgain.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 340 bytes
    - Viewed (0)
  4. samples/extauthz/cmd/extauthz/main.go

    	// Determine whether to allow or deny the request.
    	allow := false
    	checkHeaderValue, contains := attrs.GetRequest().GetHttp().GetHeaders()[checkHeader]
    	if contains {
    		allow = checkHeaderValue == allowedValue
    	} else {
    		allow = attrs.Source != nil && strings.HasSuffix(attrs.Source.Principal, "/sa/"+*serviceAccount)
    	}
    
    	if allow {
    		return s.allow(request), nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/cors/CorsHandler.java

        protected static final String ACCESS_CONTROL_ALLOW_ORIGIN = "Access-Control-Allow-Origin";
    
        protected static final String ACCESS_CONTROL_ALLOW_HEADERS = "Access-Control-Allow-Headers";
    
        protected static final String ACCESS_CONTROL_ALLOW_METHODS = "Access-Control-Allow-Methods";
    
        protected static final String ACCESS_CONTROL_ALLOW_PRIVATE_NETWORK = "Access-Control-Allow-Private-Network";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/net/sockopt_aix.go

    	if family == syscall.AF_INET6 && sotype != syscall.SOCK_RAW {
    		// Allow both IP versions even if the OS default
    		// is otherwise. Note that some operating systems
    		// never admit this option.
    		syscall.SetsockoptInt(s, syscall.IPPROTO_IPV6, syscall.IPV6_V6ONLY, boolint(ipv6only))
    	}
    	if (sotype == syscall.SOCK_DGRAM || sotype == syscall.SOCK_RAW) && family != syscall.AF_UNIX {
    		// Allow broadcast.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 00:33:27 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/configurationCacheProblemsGroovy.sample.conf

      expect-failure: true
      expected-output-file: fail.out
      allow-additional-output: true
      allow-disordered-output: true
    },{
      executable: gradle
      args: "--rerun-tasks --configuration-cache-problems=warn someTask -DsomeDestination=dest"
      expect-failure: false
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 627 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go

    				AdmissionReviewVersions: []string{"v1beta1"},
    			}},
    			ExpectAllow: true,
    		},
    		{
    			Name: "match & allow",
    			Webhooks: []registrationv1.ValidatingWebhook{{
    				Name:                    "allow.example.com",
    				ClientConfig:            ccfgSVC("allow"),
    				Rules:                   matchEverythingRules,
    				NamespaceSelector:       &metav1.LabelSelector{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 47.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    }
    
    // A service that can be set to allow all or deny all authorization requests.
    type mockV1beta1Service struct {
    	allow      bool
    	statusCode int
    	called     int
    }
    
    func (m *mockV1beta1Service) Review(r *authorizationv1beta1.SubjectAccessReview) {
    	m.called++
    	r.Status.Allowed = m.allow
    }
    func (m *mockV1beta1Service) Allow()              { m.allow = true }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/model.go

    		return false
    	}
    	from := Reference{Kind: gvk.KubernetesGateway, Namespace: k8s.Namespace(namespace)}
    	to := Reference{Kind: gvk.Secret, Namespace: k8s.Namespace(p.Namespace)}
    	allow := refs[from][to]
    	if allow == nil {
    		return false
    	}
    	return allow.AllowAll || allow.AllowedNames.Contains(p.Name)
    }
    
    func (refs AllowedReferences) BackendAllowed(
    	k config.GroupVersionKind,
    	backendName k8s.ObjectName,
    	backendNamespace k8s.Namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top