Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 90 for homeDir (0.12 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerSmokeTest.groovy

                : checkoutDir.file("tracker/build/intermediates/javac/debug/classes/${pathToClass}.class")
    
            when:
            SantaTrackerConfigurationCacheWorkaround.beforeBuild(checkoutDir, homeDir)
            def result = buildLocation(checkoutDir, agpVersion)
            def md5Before = compiledClassFile.md5Hash
    
            then:
            result.task(":tracker:compileDebugJavaWithJavac").outcome == SUCCESS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vcweb/vcweb.go

    		if err != nil {
    			return nil, err
    		}
    	}
    
    	homeDir := filepath.Join(workDir, "home")
    	if err := os.MkdirAll(homeDir, 0755); err != nil {
    		return nil, err
    	}
    
    	env := scriptEnviron(homeDir)
    
    	s := &Server{
    		env:       env,
    		logger:    logger,
    		scriptDir: scriptDir,
    		workDir:   workDir,
    		homeDir:   homeDir,
    		engine:    newScriptEngine(),
    		vcsHandlers: map[string]vcsHandler{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractAndroidSantaTrackerSmokeTest.groovy

        TestFile homeDir
    
        String kotlinVersion = KOTLIN_VERSIONS.latestStable
    
        def setup() {
            homeDir = temporaryFolder.createDir("test-kit-home")
        }
    
        def cleanup() {
            // The daemons started by test kit need to be killed, so no locked files are left behind.
            DaemonLogsAnalyzer.newAnalyzer(homeDir.file(ToolingApiGradleExecutor.TEST_KIT_DAEMON_DIR_NAME)).killAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. pkg/test/util/file/file.go

    }
    
    // NormalizePath expands the homedir (~) and returns an error if the file doesn't exist.
    func NormalizePath(originalPath string) (string, error) {
    	if originalPath == "" {
    		return "", nil
    	}
    	// trim leading/trailing spaces from the path and if it uses the homedir ~, expand it.
    	var err error
    	out := strings.TrimSpace(originalPath)
    	out, err = homedir.Expand(out)
    	if err != nil {
    		return "", err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/signing/gnupg-signatory/kotlin/gradle.properties

    // tag::user-properties[]
    signing.gnupg.executable=gpg
    signing.gnupg.useLegacyGpg=true
    signing.gnupg.homeDir=gnupg-home
    signing.gnupg.optionsFile=gnupg-home/gpg.conf
    signing.gnupg.keyName=24875D73
    signing.gnupg.passphrase=gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 255 bytes
    - Viewed (0)
  6. pkg/kube/client_factory.go

    		if diskCache {
    			// From https://github.com/kubernetes/cli-runtime/blob/4fdf49ae46a0caa7fafdfe97825c6129d5153f06/pkg/genericclioptions/config_flags.go#L288
    
    			cacheDir := filepath.Join(homedir.HomeDir(), ".kube", "cache")
    
    			httpCacheDir := filepath.Join(cacheDir, "http")
    			discoveryCacheDir := computeDiscoverCacheDir(filepath.Join(cacheDir, "discovery"), restConfig.Host)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 21:30:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCacheBuilderTest.groovy

    class DefaultCacheBuilderTest extends Specification {
        @Rule
        public final TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        private final TestFile homeDir = tmpDir.createDir("home")
        private final TestFile sharedCacheDir = homeDir.file("caches")
        private final Map<String, ?> properties = [a: "value", b: "value2"]
        private final CacheFactory cacheFactory = Mock()
        private final PersistentCache cache = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/signing/gnupg-signatory/groovy/gradle.properties

    // tag::user-properties[]
    signing.gnupg.executable=gpg
    signing.gnupg.useLegacyGpg=true
    signing.gnupg.homeDir=gnupg-home
    signing.gnupg.optionsFile=gnupg-home/gpg.conf
    signing.gnupg.keyName=24875D73
    signing.gnupg.passphrase=gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 255 bytes
    - Viewed (0)
  9. src/os/user/user.go

    	// list.
    	// On Windows, this is the user's display name.
    	// On Plan 9, this is the contents of /dev/user.
    	Name string
    	// HomeDir is the path to the user's home directory (if they have one).
    	HomeDir string
    }
    
    // Group represents a grouping of users.
    //
    // On POSIX systems Gid contains a decimal number representing the group ID.
    type Group struct {
    	Gid  string // group ID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/os/user/lookup_plan9.go

    	if err != nil {
    		return nil, fmt.Errorf("user: %s", err)
    	}
    
    	uname := string(ubytes)
    
    	u := &User{
    		Uid:      uname,
    		Gid:      uname,
    		Username: uname,
    		Name:     uname,
    		HomeDir:  os.Getenv("home"),
    	}
    
    	return u, nil
    }
    
    func lookupUser(username string) (*User, error) {
    	return nil, syscall.EPLAN9
    }
    
    func lookupUserId(uid string) (*User, error) {
    	return nil, syscall.EPLAN9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 16:09:09 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top