Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,883 for Paths (0.99 sec)

  1. pkg/test/datasets/validation/dataset/security-v1-AuthorizationPolicy.yaml

     - from:
       - source:
           principals: ["cluster.local/ns/default/sa/sleep"]
       - source:
           namespaces: ["test"]
       to:
       - operation:
           methods: ["GET"]
           paths: ["/info*"]
       - operation:
           methods: ["POST"]
           paths: ["/data"]
       when:
       - key: request.auth.claims[iss]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 519 bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

                    @Input
                    List<String> paths = []
    
                    @OutputDirectory
                    File dir = project.file("build/dir")
    
                    @OutputDirectory
                    File otherDir = project.file("build/otherDir")
    
                    @TaskAction
                    void generate() {
                        paths.each {
                            def f = new File(dir, it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. tests/integration/security/testdata/authz/custom-provider.yaml.tmpl

        - operation: # HTTP
            ports: [ "{{ (.To.PortForName `http`).WorkloadPort }}", "{{ (.To.PortForName `http2`).WorkloadPort }}" ]
            paths: [ "/custom" ]
            methods: [ "GET" ]
      - to:
        - operation: # GRPC
            ports: [ "{{ (.To.PortForName `grpc`).WorkloadPort }}" ]
            paths: [ "/proto.EchoTestService/Echo" ]
            methods: [ "POST" ]
      - to:
        - operation: # TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 724 bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/custom-bad-multiple-providers-in.yaml

        - to:
            - operation:
                paths: ["/httpbin1"]
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: httpbin-2
      namespace: foo
    spec:
      action: CUSTOM
      provider:
        name: another
      selector:
        matchLabels:
          app: httpbin
          version: v1
      rules:
        - to:
            - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 606 bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/ingress/testdata/overlay.yaml

    spec:
      rules:
        - host: foohost.bar.com
          http:
            paths:
              - backend:
                  service:
                    name: service1
                    port:
                      number: 4200
    ---
    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
      name: foo2
      namespace: ns
    spec:
      rules:
        - host: foohost.bar.com
          http:
            paths:
              - path: /second
                backend:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 596 bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    }
    
    func initTools(b *binrep, config string) {
    	// paths collect paths per tool; Key "" contains the default.
    	paths := make(map[string][]string)
    	for _, t := range strings.Split(config, ",") {
    		name, path := "", t
    		if ct := strings.SplitN(t, ":", 2); len(ct) == 2 {
    			name, path = ct[0], ct[1]
    		}
    		paths[name] = append(paths[name], path)
    	}
    
    	defaultPath := paths[""]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller_test.go

    		openapi := t.fetchOpenAPIOrDie()
    		if _, ok := openapi.Paths.Paths[path]; !ok {
    			return false, nil
    		}
    		return true, nil
    	})
    }
    
    func (t *testEnv) pollForPathNotExists(path string) {
    	wait.Poll(time.Second*1, wait.ForeverTestTimeout, func() (bool, error) {
    		openapi := t.fetchOpenAPIOrDie()
    		if _, ok := openapi.Paths.Paths[path]; ok {
    			return false, nil
    		}
    		return true, nil
    	})
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 17:10:53 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskLocalState.java

    @HasInternalProtocol
    public interface TaskLocalState {
        /**
         * Registers files and directories as local state of this task.
         *
         * @param paths The files that represent the local state. The given paths are evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         */
        void register(Object... paths);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/dry-run-allow-and-deny-in.yaml

        - to:
            - operation:
                paths: ["/allow"]
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: httpbin-2
      namespace: foo
      annotations:
        "istio.io/dry-run": "true"
    spec:
      selector:
        matchLabels:
          app: httpbin
          version: v1
      action: DENY
      rules:
        - to:
            - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 628 bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/http/custom-simple-http-in.yaml

        - to:
            - operation:
                paths: ["/httpbin1"]
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: httpbin-2
      namespace: foo
    spec:
      action: CUSTOM
      provider:
        name: default
      selector:
        matchLabels:
          app: httpbin
          version: v1
      rules:
        - to:
            - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 606 bytes
    - Viewed (0)
Back to top