Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,883 for Paths (0.09 sec)

  1. tests/integration/security/testdata/authz/allow-namespace.yaml.tmpl

                paths: [ "/allow" ]
                methods: [ "GET" ]
          from:
            - source:
                namespaces: [ "{{ .Allowed.NamespaceName }}" ]
        - 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
    - 983 bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactManager.java

                        .filter(a -> Objects.equals(id, id(a)))
                        .forEach(a -> a.setFile(path != null ? path.toFile() : null));
            }
            if (path == null) {
                paths.remove(id);
            } else {
                paths.put(id, path);
            }
        }
    
        /**
         * Retrieve a stream of the project's artifacts.
         * Do not include the POM artifact as the file can't be set anyway.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. tests/integration/security/testdata/authz/deny-namespace.yaml.tmpl

                paths: [ "/deny*" ]
                notPaths: ["/deny/allow"]
                methods: [ "GET" ]
          from:
            - source:
                namespaces: [ "{{ .Denied.NamespaceName }}" ]
        - to:
            - operation: # GRPC
                ports: [ "{{ (.To.PortForName `grpc`).WorkloadPort }}" ]
                paths: [ "/proto.EchoTestService/Echo" ]
                methods: [ "POST" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1017 bytes
    - Viewed (0)
  4. tests/integration/security/testdata/authz/deny-principal.yaml.tmpl

                paths: [ "/deny*" ]
                notPaths: ["/deny/allow"]
                methods: [ "GET" ]
          from:
            - source:
                principals: [ "{{ .Denied.ServiceAccountName }}" ]
        - to:
            - operation: # GRPC
                ports: [ "{{ (.To.PortForName `grpc`).WorkloadPort }}" ]
                paths: [ "/proto.EchoTestService/Echo" ]
                methods: [ "POST" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

            modified((path): path, previous, current)
        }
    
        def modified(Map<String, String> paths, FileType previous = FileType.RegularFile, FileType current = FileType.RegularFile) {
            def singleEntry = Iterables.getOnlyElement(paths.entrySet())
            DefaultFileChange.modified(singleEntry.key, "test", previous, current, singleEntry.value)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig.jsp

                                            <label for="paths" class="col-sm-2 text-sm-right col-form-label"><la:message
                                                    key="labels.paths"/></label>
                                            <div class="col-sm-10">
                                                <la:text styleId="paths" property="paths" styleClass="form-control"/>
                                            </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/dry-run-mix-in.yaml

        - 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)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIgnoringIntegrationTest.groovy

            }
        }
    
        def 'paths ignored in file system checks are included in the configuration cache fingerprint'() {
            when:
            configurationCacheRun()
            configurationCacheRun("-D$IGNORE_FS_CHECKS_PROPERTY=test")
    
            then:
            outputContains("the set of paths ignored in file-system-check input tracking has changed")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

        kotlinCoreProjectEnvironment: KotlinCoreProjectEnvironment,
        paths: Collection<Path>,
    ): List<T> {
        val fs = kotlinCoreProjectEnvironment.environment.localFileSystem
        val psiManager = PsiManager.getInstance(kotlinCoreProjectEnvironment.project)
        return buildList {
            for (path in paths) {
                val vFile = fs.findFileByNioFile(path.toAbsolutePath()) ?: continue
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. src/os/exec/lp_windows_test.go

    //
    // The empty string results in an empty entry.
    // Paths beginning with . are kept as relative entries.
    func makePATH(root string, dirs []string) string {
    	paths := make([]string, 0, len(dirs))
    	for _, d := range dirs {
    		switch {
    		case d == "":
    			paths = append(paths, "")
    		case d == "." || (len(d) >= 2 && d[0] == '.' && os.IsPathSeparator(d[1])):
    			paths = append(paths, filepath.Clean(d))
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top