Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,770 for ALLOW (0.03 sec)

  1. 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)
  2. pilot/pkg/security/authz/builder/testdata/http/dry-run-mix-in.yaml

          version: v1
      action: ALLOW
      rules:
        - to:
            - operation:
                paths: ["/allow"]
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: httpbin-2
      namespace: foo
      annotations:
        "istio.io/dry-run": "false"
    spec:
      selector:
        matchLabels:
          app: httpbin
          version: v1
      action: ALLOW
      rules:
        - to:
            - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 633 bytes
    - Viewed (0)
  3. src/net/sockopt_linux.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.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/UnsupportedConfigurationMutationTest.groovy

    import org.gradle.test.fixtures.maven.MavenFileRepository
    import spock.lang.Issue
    
    @FluidDependenciesResolveTest
    class UnsupportedConfigurationMutationTest extends AbstractIntegrationSpec {
    
        def "does not allow adding dependencies to a configuration that has been resolved"() {
            buildFile << """
                configurations { a }
                configurations.a.resolve()
                dependencies { a files("some.jar") }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 17.6K bytes
    - Viewed (2)
  5. src/main/java/jcifs/internal/dtyp/ACE.java

     * with desired access bits <tt>0x00000003</tt> (<tt>FILE_READ_DATA |
     * FILE_WRITE_DATA</tt>) and the target file has the following security
     * descriptor ACEs:
     * 
     * <pre>
     * Allow WNET\alice     0x001200A9  Direct
     * Allow Administrators 0x001F01FF  Inherited
     * Allow SYSTEM         0x001F01FF  Inherited
     * </pre>
     * 
     * the access check would fail because the direct ACE has an access mask
     * of <tt>0x001200A9</tt> which doesn't have the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  6. src/net/sockopt_bsd.go

    		// 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: Thu Oct 28 18:17:57 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/webhook/client_test.go

    			expectAllowHTTP2: false,
    		},
    		{
    			name:             "allow http2 for localhost",
    			url:              "https://localhost",
    			expectAllowHTTP2: true,
    		},
    		{
    			name:             "allow http2 for 127.0.0.1",
    			url:              "https://127.0.0.1",
    			expectAllowHTTP2: true,
    		},
    		{
    			name:             "allow http2 for [::1]:0",
    			url:              "https://[::1]",
    			expectAllowHTTP2: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 09:09:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_cors/test_tutorial001.py

        assert response.status_code == 200, response.text
        assert response.text == "OK"
        assert (
            response.headers["access-control-allow-origin"]
            == "https://localhost.tiangolo.com"
        )
        assert response.headers["access-control-allow-headers"] == "X-Example"
    
        # Test standard response
        headers = {"Origin": "https://localhost.tiangolo.com"}
        response = client.get("/", headers=headers)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 09 18:06:12 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  9. samples/extauthz/cmd/extauthz/main_test.go

    		isGRPCV3 bool
    		isGRPCV2 bool
    		header   string
    		want     int
    	}{
    		{
    			name:   "HTTP-allow",
    			header: "allow",
    			want:   http.StatusOK,
    		},
    		{
    			name:   "HTTP-deny",
    			header: "deny",
    			want:   http.StatusForbidden,
    		},
    		{
    			name:     "GRPCv3-allow",
    			isGRPCV3: true,
    			header:   "allow",
    			want:     int(codes.OK),
    		},
    		{
    			name:     "GRPCv3-deny",
    			isGRPCV3: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 23 16:58:02 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/ACE.java

     * with desired access bits <tt>0x00000003</tt> (<tt>FILE_READ_DATA |
     * FILE_WRITE_DATA</tt>) and the target file has the following security
     * descriptor ACEs:
     * <pre>
     * Allow WNET\alice     0x001200A9  Direct
     * Allow Administrators 0x001F01FF  Inherited
     * Allow SYSTEM         0x001F01FF  Inherited
     * </pre>
     * the access check would fail because the direct ACE has an access mask
     * of <tt>0x001200A9</tt> which doesn't have the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.2K bytes
    - Viewed (0)
Back to top