Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 455 for fullpath (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/DestroyerTaskCommandLineOrderIntegrationTest.groovy

                result.assertTaskOrder(cleanFoo.fullPath, cleanBar.fullPath, clean.fullPath)
                result.assertTaskOrder(cleanBarLocal.fullPath, generateBar.fullPath, generate.fullPath)
                result.assertTaskOrder(cleanBar.fullPath, generateBar.fullPath, generate.fullPath)
                result.assertTaskOrder(cleanFoo.fullPath, generateFoo.fullPath, generate.fullPath)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 14:13:02 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

                result.assertTaskOrder(generateFoo.fullPath, generateBar.fullPath)
                result.assertTaskOrder(generateFoo.fullPath, cleanFoo.fullPath, clean.fullPath)
                result.assertTaskOrder(packageBarSources.fullPath, cleanBar.fullPath, clean.fullPath)
                result.assertTaskOrder(generateBar.fullPath, cleanBar.fullPath, clean.fullPath)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/token_test.go

    	}
    
    	f, err := os.Create(fullPath)
    	if err != nil {
    		t.Errorf("Unable to create test file %q: %v", fullPath, err)
    	}
    	defer f.Close()
    
    	if _, err = f.WriteString(testConfigToken); err != nil {
    		t.Errorf("Unable to write test file %q: %v", fullPath, err)
    	}
    
    	// test dryRun = true on an exisiting file
    	if _, err = cmdutil.GetClientSet(fullPath, true); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

            .containsExactly(
                fullpath("/with/absolute.jar"),
                fullpath("base/relative.jar"),
                fullpath("base/relative/dir"))
            .inOrder();
      }
    
      public void testGetClassPathFromManifest_leadingBlanks() throws IOException {
        File jarFile = new File("base/some.jar");
        Manifest manifest = manifestClasspath(" relative.jar");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. operator/pkg/tpath/tree.go

    				}
    				continue
    			}
    			// leaf list, expect path element [V], match based on value V.
    			v, err := util.PathV(pe)
    			if err != nil {
    				return nil, false, fmt.Errorf("path %s: %s", fullPath, err)
    			}
    			if matchesRegex(v, le) {
    				scope.Debugf("found matching key %v, index %d", le, idx)
    				nn := &PathContext{
    					Parent: nc,
    					Node:   le,
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. src/syscall/exec_windows.go

    			}
    			if volToUpper(int(p[0])) == volToUpper(int(d[0])) {
    				return FullPath(d + "\\" + p[2:])
    			} else {
    				return FullPath(p)
    			}
    		}
    	} else {
    		// no drive letter
    		d, err := normalizeDir(dir)
    		if err != nil {
    			return "", err
    		}
    		if isSlash(p[0]) {
    			return FullPath(d[:2] + p)
    		} else {
    			return FullPath(d + "\\" + p)
    		}
    	}
    }
    
    type ProcAttr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

            buildOperations.all(QueryToolingModelBuildOperationType).collect { new ModelRequest(it) }
        }
    
        private static String fullPath(BuildOperationRecord operationRecord) {
            return fullPath(operationRecord.details.buildPath, operationRecord.details.projectPath)
        }
    
        private static String fullPath(String buildPath, String projectPath) {
            if (buildPath == ':') {
                return projectPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

        }
    
        TestFile inJarCache(String filename, boolean shouldBeFound = true) {
            String fullpath = result.output.readLines().find { it.matches(">>>file:.*${filename}") }.replace(">>>", "")
            assert fullpath.startsWith(jarsCacheDir.toURI().toString()) == shouldBeFound
            return new TestFile(new File(URI.create(fullpath)))
        }
    
        TestFile notInArtifactTransformCache(String filename) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. pkg/volume/util/atomic_writer.go

    		mode := os.FileMode(fileProjection.Mode)
    		fullPath := filepath.Join(dir, userVisiblePath)
    		baseDir, _ := filepath.Split(fullPath)
    
    		if err := os.MkdirAll(baseDir, os.ModePerm); err != nil {
    			klog.Errorf("%s: unable to create directory %s: %v", w.logContext, baseDir, err)
    			return err
    		}
    
    		if err := os.WriteFile(fullPath, content, mode); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/os/types_windows.go

    // and set name from path.
    func (fs *fileStat) saveInfoFromPath(path string) error {
    	fs.path = path
    	if !filepathlite.IsAbs(fs.path) {
    		var err error
    		fs.path, err = syscall.FullPath(fs.path)
    		if err != nil {
    			return &PathError{Op: "FullPath", Path: path, Err: err}
    		}
    	}
    	fs.name = filepathlite.Base(path)
    	return nil
    }
    
    func sameFile(fs1, fs2 *fileStat) bool {
    	e := fs1.loadFileId()
    	if e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top