Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 560 for fullpath (0.2 sec)

  1. src/cmd/internal/bootstrap_test/experiment_toolid_test.go

    	// Set up GOROOT.
    	goroot := t.TempDir()
    	gorootSrc := filepath.Join(goroot, "src")
    	if err := overlayDir(gorootSrc, filepath.Join(realGoroot, "src")); err != nil {
    		t.Fatal(err)
    	}
    	gorootLib := filepath.Join(goroot, "lib")
    	if err := overlayDir(gorootLib, filepath.Join(realGoroot, "lib")); err != nil {
    		t.Fatal(err)
    	}
    	if err := os.WriteFile(filepath.Join(goroot, "VERSION"), []byte("go1.999"), 0666); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 18:47:14 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/validation/validation.go

    // the ErrorList.
    func ValidateResourceRequirements(requirements *v1.ResourceRequirements, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	limPath := fldPath.Child("limits")
    	reqPath := fldPath.Child("requests")
    	for resourceName, quantity := range requirements.Limits {
    		fldPath := limPath.Key(string(resourceName))
    		// Validate resource name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GrammarFileMetadata.java

    public class GrammarFileMetadata {
        private final File filePath;
        private final antlr.preprocessor.GrammarFile antlrGrammarFile;
        private final String packageName;
        private List<GrammarMetadata> grammarMetadatas = new ArrayList<GrammarMetadata>();
    
        public GrammarFileMetadata(File filePath, antlr.preprocessor.GrammarFile antlrGrammarFile, String packageName) {
            this.filePath = filePath;
            this.antlrGrammarFile = antlrGrammarFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    func NewDynamicEncryptionConfiguration(
    	name, filePath string,
    	dynamicTransformers *encryptionconfig.DynamicTransformers,
    	configContentHash string,
    	apiServerID string,
    ) *DynamicEncryptionConfigContent {
    	return &DynamicEncryptionConfigContent{
    		name:                           name,
    		filePath:                       filePath,
    		lastLoadedEncryptionConfigHash: configContentHash,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/workcmd/use.go

    	workDir := filepath.Dir(gowork) // absolute, since gowork itself is absolute
    
    	haveDirs := make(map[string][]string) // absolute → original(s)
    	for _, use := range wf.Use {
    		var abs string
    		if filepath.IsAbs(use.Path) {
    			abs = filepath.Clean(use.Path)
    		} else {
    			abs = filepath.Join(workDir, use.Path)
    		}
    		haveDirs[abs] = append(haveDirs[abs], use.Path)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. pkg/util/filesystem/util.go

    limitations under the License.
    */
    
    package filesystem
    
    import (
    	"path/filepath"
    )
    
    // IsPathClean will replace slashes to Separator (which is OS-specific).
    // This will make sure that all slashes are the same before comparing.
    func IsPathClean(path string) bool {
    	return filepath.ToSlash(filepath.Clean(path)) == filepath.ToSlash(path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 876 bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/extended-allow-path-out.yaml

                - orRules:
                    rules:
                    - urlPath:
                        path:
                          exact: /exact
                    - urlPath:
                        path:
                          prefix: /prefix/
                    - urlPath:
                        path:
                          suffix: /suffix
                    - urlPath:
                        path:
                          safeRegex:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/os/exec/dot_test.go

    		if runtime.GOOS == "windows" {
    			executable += ".exe"
    		}
    		if err := os.WriteFile(filepath.Join(dir, executable), []byte{1, 2, 3}, 0777); err != nil {
    			t.Fatal(err)
    		}
    		t.Setenv(pathVar, dir+string(filepath.ListSeparator)+origPath)
    
    		found, err := LookPath("execabs-test")
    		if wantErrDot {
    			wantFound := filepath.Join(".", executable)
    			if found != wantFound || !errors.Is(err, ErrDot) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:19:21 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/legacy_test.go

    			shouldError: true,
    		},
    		{
    			name:        "invalid suffix",
    			logSymLink:  filepath.Join(legacyContainerLogsDir, fmt.Sprintf("%s_%s_%s-%s", podName, podNamespace, containerName, containerID)[:251]+".invalidsuffix"),
    			expected:    "",
    			shouldError: true,
    		},
    		{
    			name:        "container ID too short",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 12:34:58 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/search.go

    					}
    				}
    				return nil
    			}
    
    			if !want {
    				return filepath.SkipDir
    			}
    			// Stop at module boundaries.
    			if (prune&pruneGoMod != 0) && pkgDir != root {
    				if fi, err := os.Stat(filepath.Join(pkgDir, "go.mod")); err == nil && !fi.IsDir() {
    					return filepath.SkipDir
    				}
    			}
    
    			if !have[name] {
    				have[name] = true
    				if isMatch(name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top