Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,883 for Paths (0.16 sec)

  1. pkg/kubelet/apis/config/helpers.go

    // passing the configuration to the application. This method must be kept up to date as new fields are added.
    func KubeletConfigurationPathRefs(kc *KubeletConfiguration) []*string {
    	paths := []*string{}
    	paths = append(paths, &kc.StaticPodPath)
    	paths = append(paths, &kc.Authentication.X509.ClientCAFile)
    	paths = append(paths, &kc.TLSCertFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_trimpath.txt

    env GO111MODULE=on
    mkdir $WORK/a/src/paths $WORK/b/src/paths
    cp paths.go $WORK/a/src/paths
    cp paths.go $WORK/b/src/paths
    cp overlay.json $WORK/a/src/paths
    cp overlay.json $WORK/b/src/paths
    cp go.mod $WORK/a/src/paths/
    cp go.mod $WORK/b/src/paths/
    
    
    # A binary built without -trimpath should contain the module root dir
    # and GOROOT for debugging and stack traces.
    cd $WORK/a/src/paths
    go build -o $WORK/paths-dbg.exe .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/merge.go

    		for k, s := range staticSpec.Parameters {
    			specToReturn.Parameters[k] = s
    		}
    	}
    	if staticSpec.Paths != nil {
    		specToReturn.Paths = &spec.Paths{
    			Paths: make(map[string]spec.PathItem, len(staticSpec.Paths.Paths)),
    		}
    		for k, p := range staticSpec.Paths.Paths {
    			specToReturn.Paths.Paths[k] = p
    		}
    	}
    
    	crdSpec := &spec.Swagger{}
    	for _, s := range crdSpecs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 16 14:08:01 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/options/security_test.go

    	tests := []struct {
    		name     string
    		paths    []string
    		expected bool
    	}{
    		{
    			name: "non-existing cert paths",
    			paths: []string{
    				"/this-is-a-nonexisting-path-1", "/this-is-a-nonexisting-path-2",
    				"/this-is-a-nonexisting-path-3",
    			},
    			expected: false,
    		},
    		{
    			name:     "existing cert paths",
    			paths:    []string{cert.Name(), cert.Name(), cert.Name()},
    			expected: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 31 18:31:36 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileCollection.java

         */
        void setFrom(Iterable<?> paths);
    
        /**
         * Sets the source paths for this collection. The given paths are evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         *
         * @param paths The paths.
         */
        void setFrom(Object... paths);
    
        /**
         * Specifies the value to use as the convention (default value) to be used when resolving this file collection,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/merge_test.go

    			specs: []*spec3.OpenAPI{{
    				Paths: &spec3.Paths{
    					Paths: map[string]*spec3.Path{
    						"/apis/stable.example.com/v1/crd1": {},
    					},
    				},
    				Components: &spec3.Components{
    					Schemas: map[string]*spec.Schema{
    						"io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta": {},
    					},
    				},
    			},
    			},
    			expected: &spec3.OpenAPI{
    				Paths: &spec3.Paths{
    					Paths: map[string]*spec3.Path{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 12 20:11:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. src/go/internal/gccgoimporter/gccgoinstallation.go

    		if err != nil || !fi.IsDir() {
    			continue
    		}
    		paths = append(paths, spath)
    	}
    
    	paths = append(paths, inst.LibPaths...)
    
    	return
    }
    
    // Return an importer that searches incpaths followed by the gcc installation's
    // built-in search paths and the current directory.
    func (inst *GccgoInstallation) GetImporter(incpaths []string, initmap map[*types.Package]InitData) Importer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top