Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,883 for Paths (0.65 sec)

  1. pilot/pkg/security/authz/matcher/metadata.go

    			OneOf: value,
    		},
    	}
    
    	paths := make([]*matcher.MetadataMatcher_PathSegment, 0, len(keys))
    	for _, k := range keys {
    		paths = append(paths, &matcher.MetadataMatcher_PathSegment{
    			Segment: &matcher.MetadataMatcher_PathSegment_Key{
    				Key: k,
    			},
    		})
    	}
    
    	out := &matcher.MetadataMatcher{
    		Filter: filter,
    		Path:   paths,
    	}
    	if useExtendedJwt {
    		out.Value = &matcher.ValueMatcher{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tools/proto/buf.golang.yaml

    version: v1beta1
    plugins:
    - name: go
      out: .
      opt:
      - paths=source_relative
    - name: go-grpc
      out: .
      opt:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Mar 06 03:07:59 UTC 2022
    - 136 bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/tcp/custom-only-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)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/file/PathToFileResolver.java

    import java.io.File;
    
    /**
     * Resolves some path object to a `File`. May or may not be able to resolve relative paths.
     */
    public interface PathToFileResolver {
        /**
         * Resolves the given path to a file.
         */
        File resolve(Object path);
    
        /**
         * Returns a resolver that resolves paths relative to the given base dir.
         */
        PathToFileResolver newResolver(File baseDir);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/DefaultKotlinScript.kt

            fileOperations.file(path, validation)
    
        override fun files(vararg paths: Any): ConfigurableFileCollection =
            fileOperations.configurableFiles(*paths)
    
        override fun files(paths: Any, configuration: Action<ConfigurableFileCollection>): ConfigurableFileCollection =
            fileOperations.configurableFiles(paths).also(configuration::execute)
    
        override fun fileTree(baseDir: Any): ConfigurableFileTree =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 22:41:55 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. releasenotes/notes/44293.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 24 21:53:01 UTC 2023
    - 199 bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

                    session.createArtifactCoordinate("org.apache.maven.core.test", "test-extension", "1", "jar"));
    
            List<Path> paths = session.resolveDependencies(coord);
    
            assertNotNull(paths);
            assertEquals(10, paths.size());
            assertEquals("test-extension-1.jar", paths.get(0).getFileName().toString());
    
            // JUnit has an "Automatic-Module-Name", so it appears on the module path.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. tests/integration/security/testdata/authz/path-precedence.yaml.tmpl

    metadata:
      name: policy-{{ .To.ServiceName }}-deny
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: DENY
      rules:
        - to:
            - operation:
                paths: ["/allow/admin"]
    ---
    # The following policy allows access to path with prefix /allow.
    
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: policy-{{ .To.ServiceName }}-allow
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 689 bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/WorkspaceFile.groovy

            file = workspaceFile
            name = file.name.replace(".xcworkspacedata", "")
            contentXml = new XmlParser().parse(file)
        }
    
        void assertHasProjects(String... paths) {
            assert contentXml.FileRef.size() == paths.length
            paths.each { path ->
                assertHasProject(file.parentFile.parentFile.file(path))
            }
        }
    
        void assertHasProject(File projectFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileConfigCQ.java

        public void setPaths_Equal(String paths) {
            setPaths_Term(paths, null);
        }
    
        public void setPaths_Equal(String paths, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setPaths_Term(paths, opLambda);
        }
    
        public void setPaths_Term(String paths) {
            setPaths_Term(paths, null);
        }
    
        public void setPaths_Term(String paths, ConditionOptionCall<TermQueryBuilder> opLambda) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 165.3K bytes
    - Viewed (0)
Back to top