Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for homeDir (0.21 sec)

  1. src/cmd/go/internal/vcweb/script.go

    // behavior for the supported version-control tools.
    func scriptEnviron(homeDir string) []string {
    	env := []string{
    		"USER=gopher",
    		homeEnvName() + "=" + homeDir,
    		"GIT_CONFIG_NOSYSTEM=1",
    		"HGRCPATH=" + filepath.Join(homeDir, ".hgrc"),
    		"HGENCODING=utf-8",
    	}
    	// Preserve additional environment variables that may be needed by VCS tools.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 9K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts

    val cachesCleanerService = gradle.sharedServices.registerIfAbsent("cachesCleaner", CachesCleaner::class) {
        parameters.gradleVersion = moduleIdentity.version.map { it.version }
        parameters.homeDir = intTestHomeDir
    }
    
    fun Gradle.rootBuild(): Gradle = parent.let { it?.rootBuild() ?: this }
    
    tasks.withType<DistributionTest>().configureEach {
        shouldRunAfter("test")
    
        setJvmArgsOfTestJvm()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/software/signing/src/testFixtures/groovy/org/gradle/test/fixtures/GpgCmdFixture.groovy

            assert client
            properties.put('signing.gnupg.executable', client.executable)
            properties.put('signing.gnupg.useLegacyGpg', (client.version == 1).toString())
            properties.put('signing.gnupg.homeDir', gpgHomeSymlink.toAbsolutePath().toString())
            properties.remove('signing.gnupg.optionsFile')
            properties.store(buildDir.file('gradle.properties').newOutputStream(), '')
    
            return gpgHomeSymlink
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/modelRules/basicRuleSourcePlugin/groovy/build.gradle

      Person getFather()
    
    // tag::property-type-managedset[]
      ModelSet<Person> getChildren()
    // end::property-type-managedset[]
    
    // tag::property-type-file[]
      void setHomeDirectory(File homeDir)
      File getHomeDirectory()
    // end::property-type-file[]
    
    // tag::property-type-long[]
      void setId(Long id)
      Long getId()
    // end::property-type-long[]
    
    // tag::property-type-enum[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/security_windows.go

    )
    
    type LocalGroupUserInfo0 struct {
    	Name *uint16
    }
    
    type UserInfo4 struct {
    	Name            *uint16
    	Password        *uint16
    	PasswordAge     uint32
    	Priv            uint32
    	HomeDir         *uint16
    	Comment         *uint16
    	Flags           uint32
    	ScriptPath      *uint16
    	AuthFlags       uint32
    	FullName        *uint16
    	UsrComment      *uint16
    	Parms           *uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. pkg/test/loadbalancersim/lb_test.go

    							}
    						})
    					}
    				})
    			}
    		})
    	}
    
    	outputFile := os.Getenv("LB_SIM_OUTPUT_FILE")
    	if len(outputFile) == 0 {
    		homeDir, err := os.UserHomeDir()
    		if err != nil {
    			t.Fatal(err)
    		}
    		outputFile = fmt.Sprintf("%s/lb_output.csv", homeDir)
    	}
    
    	err := os.WriteFile(outputFile, []byte(sm.toCSV()), 0o644)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 19 23:29:30 UTC 2022
    - 11K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    // it returns standard kube cache dir.
    func getDefaultCacheDir() string {
    	if kcd := os.Getenv("KUBECACHEDIR"); kcd != "" {
    		return kcd
    	}
    
    	return filepath.Join(homedir.HomeDir(), ".kube", "cache")
    }
    
    // ToRESTMapper returns a mapper.
    func (f *ConfigFlags) ToRESTMapper() (meta.RESTMapper, error) {
    	if f.usePersistentConfig {
    		return f.toPersistentRESTMapper()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

                final File homeDir = new File(buildDefinition.getBuildRootDir(), "gradleHome");
                return new TestBuildScopeServices(buildTree.getServices(), homeDir, supplier);
            }
    
            @Override
            public BuildScopeServices getBuildServices() {
                return super.getBuildServices();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

            assert expected == actual
        }
    
        String getActualXml(File file) {
            def gradleUserHomeDir = executer.getGradleUserHomeDir()
            def homeDir = gradleUserHomeDir.absolutePath.replace(File.separator, '/')
            def pattern = Pattern.compile(Pattern.quote(homeDir) + "/caches/${CacheLayout.MODULES.getKey()}/${CacheLayout.FILE_STORE.getKey()}/([^/]+/[^/]+/[^/]+)/[a-z0-9]+/")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. cluster/gce/gci/master.yaml

    #cloud-config
    
    users:
    - name: etcd
      homedir: /var/etcd
      lock_passwd: true
      ssh_redirect_user: true
    
    - name: kube-bootstrap-logs-forwarder
      gecos: User the kube-bootstrap-logs-forwarder.service runs as.
      system: true
    
    write_files:
      - path: /etc/systemd/system/kube-bootstrap-logs-forwarder.service
        permissions: 0644
        owner: root
        content: |
          [Unit]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 12 16:22:20 UTC 2021
    - 5.5K bytes
    - Viewed (0)
Back to top