Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,883 for Paths (0.04 sec)

  1. 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)
  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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorDependencyExcludeResolveIntegrationTest.groovy

        }
    
        /**
         * When a module is depended on via multiple paths and excluded on one of those paths, it is not excluded.
         *
         * Dependency graph:
         * a -> b, c
         * b -> d
         * c -> d
         */
        def "when a module is depended on via multiple paths and excluded on only one of those paths, it is not excluded (#name)"() {
            given:
            ivyRepo.module('d').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  4. pkg/volume/util/atomic_writer.go

    		// to avoid attempting to remove non-empty dirs
    		for subPath := file; subPath != ""; {
    			newPaths.Insert(subPath)
    			subPath, _ = filepath.Split(subPath)
    			subPath = strings.TrimSuffix(subPath, string(os.PathSeparator))
    		}
    	}
    	klog.V(5).Infof("%s: new paths:       %+v", w.targetDir, sets.List(newPaths))
    
    	result := paths.Difference(newPaths)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestMergeSpec.java

         * in the order in which they are added.
         *
         * @param mergePaths The paths of manifests to be merged
         * @return this
         */
        ManifestMergeSpec from(Object... mergePaths);
    
        /**
         * Adds an action to be applied to each key-value tuple in a merge operation. If multiple merge paths are specified,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorModuleExcludeResolveIntegrationTest.groovy

        }
    
        /**
         * When a module is depended on via multiple paths and excluded on one of those paths, it is not excluded.
         *
         * Dependency graph:
         * a -> b, c
         * b -> d
         * c -> d
         */
        def "when a module is depended on via multiple paths and excluded on only one of those paths, it is not excluded (#name)"() {
            given:
            ivyRepo.module('d').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    }
    
    // WithAlwaysAllowGroups appends the list of paths to AlwaysAllowGroups
    func (s *DelegatingAuthorizationOptions) WithAlwaysAllowGroups(groups ...string) *DelegatingAuthorizationOptions {
    	s.AlwaysAllowGroups = append(s.AlwaysAllowGroups, groups...)
    	return s
    }
    
    // WithAlwaysAllowPaths appends the list of paths to AlwaysAllowPaths
    func (s *DelegatingAuthorizationOptions) WithAlwaysAllowPaths(paths ...string) *DelegatingAuthorizationOptions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  8. tests/integration/security/testdata/authz/allow-principal.yaml.tmpl

                paths: [ "/allow" ]
                methods: [ "GET" ]
          from:
            - source:
                principals: [ "{{ .Allowed.ServiceAccountName }}" ]
        - to:
            - operation: # GRPC
                ports: [ "{{ (.To.PortForName `grpc`).WorkloadPort }}" ]
                paths: [ "/proto.EchoTestService/Echo" ]
                methods: [ "POST" ]
          from:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 998 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphPathResolver.java

                }
            }
    
            List<List<ComponentIdentifier>> paths = new ArrayList<>();
            for (DependencyGraphComponent version : directDependees) {
                List<ComponentIdentifier> path = shortestPaths.get(version);
                paths.add(path);
            }
            return paths;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/notfoundhandler/not_found_handler.go

    // It checks if the request have been made before the server has installed all known HTTP paths.
    // In that case it returns a 503 response otherwise it returns a 404.
    //
    // Note that we don't want to add additional checks to the readyz path as it might prevent fixing bricked clusters.
    // This specific handler is meant to "protect" requests that arrive before the paths and handlers are fully initialized.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 21 13:25:33 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top