Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for pathsOf (0.39 sec)

  1. src/cmd/go/alldocs.go

    // examples).
    //
    // The Dir, Target, Shlib, Root, ConflictDir, and Export file paths
    // are all absolute paths.
    //
    // By default, the lists GoFiles, CgoFiles, and so on hold names of files in Dir
    // (that is, paths relative to Dir, not absolute paths).
    // The generated files added when using the -compiled and -test flags
    // are absolute paths referring to cached copies of generated Go source files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    // import paths. We do this resolution lazily both to avoid file system work
    // and because the eventual real load of the test imports (during 'go test')
    // can produce better error messages if it starts with the original paths.
    // The initial load of p loads all the non-test imports and rewrites
    // the vendored paths, so nothing should ever call p.vendored(p.Imports).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. pkg/api/pod/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPodSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. src/crypto/x509/verify_test.go

    			},
    		},
    		{
    			// Build the following graph, which contains a cross-signature loop
    			// (A and C cross sign each other). Paths that include the A -> C -> A
    			// (and vice versa) loop should be ignored, resulting in the paths:
    			//   * Trust Anchor -> A -> B -> EE
    			//   * Trust Anchor -> C -> B -> EE
    			//   * Trust Anchor -> A -> C -> B -> EE
    			//   * Trust Anchor -> C -> A -> B -> EE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	Dir          string   // directory containing package
    	ImportPath   string   // canonical import path ("package path")
    	GoFiles      []string // absolute paths to package source files
    	NonGoFiles   []string // absolute paths to package non-Go files
    	IgnoredFiles []string // absolute paths to ignored source files
    
    	ModulePath    string            // module path (may be "" on module error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    					errs = appendErrors(errs, security.CheckEmptyValues("Ports", op.Ports))
    					errs = appendErrors(errs, security.CheckEmptyValues("Methods", op.Methods))
    					errs = appendErrors(errs, security.CheckEmptyValues("Paths", op.Paths))
    					errs = appendErrors(errs, security.CheckEmptyValues("Hosts", op.Hosts))
    					errs = appendErrors(errs, security.CheckEmptyValues("NotPorts", op.NotPorts))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. src/net/http/server.go

    //
    // The special wildcard {$} matches only the end of the URL.
    // For example, the pattern "/{$}" matches only the path "/",
    // whereas the pattern "/" matches every path.
    //
    // For matching, both pattern paths and incoming request paths are unescaped segment by segment.
    // So, for example, the path "/a%2Fb/100%25" is treated as having two segments, "a/b" and "100%".
    // The pattern "/a%2fb/" matches it, but the pattern "/a/b/" does not.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    		return
    	}
    
    	vars := mux.Vars(r)
    
    	var args dsync.LockArgs
    	var lockers []dsync.NetLocker
    	for _, path := range strings.Split(vars["paths"], ",") {
    		if path == "" {
    			continue
    		}
    		args.Resources = append(args.Resources, path)
    	}
    
    	for _, lks := range z.serverPools[0].erasureLockers {
    		lockers = append(lockers, lks...)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    // In particular, dict values should be linearized in sorted key order.
    //
    // The linearized index paths can be returned back to a structured
    // representation (e.g. to emit C structs matching a signature) with a simple
    // algorithm that recurses on each run of index paths with identical first
    // elements.
    class StructuredValueLinearizer {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    					"jwks_uri": "{{.URL}}/.testing/keys"
    			}`,
    			fetchKeysFromRemote: true,
    			want: &user.DefaultInfo{
    				Name: "jane",
    			},
    		},
    		{
    			name: "discovery url and issuer url have paths",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    					Issuer: apiserver.Issuer{
    						URL:          "https://auth.example.com/a/b/foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
Back to top