Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    		}
    		if len(visitors) > 1 {
    			b.dir = true
    		}
    
    		b.paths = append(b.paths, visitors...)
    	}
    	if len(b.paths) == 0 && len(b.errs) == 0 {
    		b.errs = append(b.errs, fmt.Errorf("error reading %v: recognized file extensions are %v", paths, FileExtensions))
    	}
    	return b
    }
    
    // ResourceTypes is a list of types of resources to operate on, when listing objects on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K 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. 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)
Back to top