Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 125 for someDir (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/plugin/use/internal/PluginUseScriptBlockMetadataCompiler.java

                                    PropertyExpression fullExpression = hasSinglePropertyExpressionArgument(call);
                                    if (fullExpression != null) {
                                        // <versionCatalog>.plugins.someId
                                        // or <versionCatalog>.plugins.some.id
                                        // because the expression might be complex we rely on its textual representation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 28 01:30:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top