Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 113 for someDir (0.32 sec)

  1. 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)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            "rootProject.name='someLib'" | "someLib"      | "configured root project name"
        }
    
        // Also covered by tests in configuration cache project
        @Requires(IntegTestPreconditions.NotConfigCached)
        def "generates build lifecycle operations for multiple included builds"() {
            given:
            def buildC = multiProjectBuild("buildC", ["someLib"]) {
                buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildOperationIntegrationTest.groovy

            where:
            settings                     | buildName | dependencyName | display
            ""                           | "buildB"  | "buildB"       | "default root project name"
            "rootProject.name='someLib'" | "buildB"  | "someLib"      | "configured root project name"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_vendor_embed.txt

        fmt.Println(a.Str())
    }
    -- a/go.mod --
    module example.com/a
    -- a/a.go --
    package a
    
    import _ "embed"
    
    //go:embed samedir_embed.txt
    var sameDir string
    
    //go:embed subdir/embed.txt
    var subDir string
    
    func Str() string {
    	return sameDir + subDir
    }
    -- a/a_test.go --
    package a
    
    import _ "embed"
    
    //go:embed subdir/test/embed.txt
    var subderTest string
    -- a/a_x_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:14:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. 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)
  8. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

        void "utility project's library and variable classpath entries contain necessary dependency attribute"() {
            //given
            file('libs/myFoo.jar').touch()
            createDirs("someLib")
            file('settings.gradle') << "include 'someLib'"
    
            file("build.gradle") <<
            """apply plugin: 'java'
               apply plugin: 'eclipse-wtp'
    
               ${mavenCentralRepository()}
    
               dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. 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)
  10. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginTest.groovy

        def "configures destinationDirectory for jar tasks"() {
            when:
            project.pluginManager.apply(JavaBasePlugin)
            project.version = '1.0'
    
            then:
            def someJar = project.tasks.create('someJar', Jar)
            someJar.destinationDirectory.get().asFile == project.libsDirectory.get().asFile
        }
    
        @Issue("gradle/gradle#8700")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 16.4K bytes
    - Viewed (0)
Back to top