Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,052 for pathsOf (0.3 sec)

  1. tests/integration/security/testdata/authz/conditions.yaml.tmpl

      rules:
      - to:
        - operation:
            paths: [ "/destination-ip-good" ]
        when:
        - key: destination.ip
          values: {{ .To.MustWorkloads.Addresses | toJson }}
      - to:
        - operation:
            paths: [ "/destination-ip-bad" ]
        when:
        - key: destination.ip
          values: [ "1.2.3.4" ]
      - to:
          - operation:
              paths: [ "/destination-ip-notValues" ]
        when:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. tests/integration/security/testdata/authz/jwt.yaml.tmpl

      rules:
      - to:
        - operation:
            paths: ["/token1"]
            methods: ["GET"]
        from:
        - source:
            requestPrincipals: ["******@****.***/sub-1"]
      - to:
        - operation:
            paths: ["/token2"]
            methods: ["GET"]
        when:
        - key: request.auth.claims[groups]
          values: ["group-2"]
      - to:
        - operation:
            paths: ["/tokenAny"]
            methods: ["GET"]
        from:
    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/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SymlinkContinuousIntegrationTest.groovy

            doLast {
                println "text: " + (symlink.exists() ? symlink.text:"missing")
            }
        }
    """
            when: "symlink is used as input and exists"
            Files.createSymbolicLink(Paths.get(symlink.toURI()), Paths.get(sourceFile.toURI()))
            then:
            succeeds("echo")
            executedAndNotSkipped(":echo")
            output.contains("text: original")
            when: "symlink is deleted"
            symlink.delete()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/authorizationpolicies.yaml

            - source:
                namespaces: ["httpbin"] # Namespace exists
          to:
            - operation:
                methods: ["GET"]
                paths: ["/info*"]
            - operation:
                methods: ["POST"]
                paths: ["/data"]
          when:
            - key: request.auth.claims[iss]
              values: ["https://accounts.google.com"]
    ---
    apiVersion: security.istio.io/v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 08 14:14:46 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/path/ModelPathTranslator.java

    /**
     * Resolves relative paths of a model against a specific base directory.
     *
     */
    public interface ModelPathTranslator {
    
        /**
         * Resolves the well-known paths of the specified model against the given base directory. Paths within plugin
         * configuration are not processed.
         *
         * @param model The model whose paths should be resolved, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/UserLocalArtifactRepository.java

            return localRepository.pathOfLocalRepositoryMetadata(metadata, repository);
        }
    
        @Override
        public String pathOf(Artifact artifact) {
            return localRepository.pathOf(artifact);
        }
    
        @Override
        public boolean hasLocalMetadata() {
            return true;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/process/internal/worker/DefaultWorkerProcessBuilderSpec.groovy

            paths.add(new File(validPath1))
            paths.add(new File(inValidPath2))
            paths.add(new File(validPath2))
            paths.add(new File(validPath3))
            paths.add(new File(inValidPath1))
            paths.add(new File(validPath4))
            paths.add(new File(validPath5))
            paths.add(new File(validPath6))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 21:01:42 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/InvalidateVirtualFileSystemAfterChangeCrossVersionSpec.groovy

        }
    
        boolean pathsInvalidatedForDaemon(DaemonFixture daemon) {
            daemon.log.contains("Invalidating ${changedPaths}")
        }
    
        static List<Path> toPaths(List<String> paths) {
            paths.collect { Paths.get(it) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManagerTest.java

            ArtifactRepository localRepository = localRepository();
    
            Artifact a = createArtifact("a", "0.0.1-SNAPSHOT");
            File file = new File(localRepository.getBasedir(), localRepository.pathOf(a));
            file.delete();
            a.setFile(file);
    
            File touchFile = updateCheckManager.getTouchfile(a);
            touchFile.delete();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. docs_src/generate_clients/tutorial004.js

    async function modifyOpenAPIFile(filePath) {
      try {
        const data = await fs.promises.readFile(filePath)
        const openapiContent = JSON.parse(data)
    
        const paths = openapiContent.paths
        for (const pathKey of Object.keys(paths)) {
          const pathData = paths[pathKey]
          for (const method of Object.keys(pathData)) {
            const operation = pathData[method]
            if (operation.tags && operation.tags.length > 0) {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 14 11:40:05 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top