Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 197 for Director (0.41 sec)

  1. src/cmd/go/main.go

    		return
    	}
    
    	if cfg.GOROOT == "" {
    		fmt.Fprintf(os.Stderr, "go: cannot find GOROOT directory: 'go' binary is trimmed and GOROOT is not set\n")
    		os.Exit(2)
    	}
    	if fi, err := os.Stat(cfg.GOROOT); err != nil || !fi.IsDir() {
    		fmt.Fprintf(os.Stderr, "go: cannot find GOROOT directory: %v\n", cfg.GOROOT)
    		os.Exit(2)
    	}
    	switch strings.ToLower(cfg.GOROOT) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TestKitIntegrationTest.kt

    import org.junit.Test
    
    
    class TestKitIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Test
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor::class)
        @LeaksFileHandles("Kotlin Compiler Daemon working directory")
        fun `withPluginClasspath works`() {
    
            withDefaultSettings()
    
            withBuildScript(
                """
    
                plugins {
                    `java-gradle-plugin`
                    `kotlin-dsl`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 10:30:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. api/pom.xml

        <module>maven-api-toolchain</module>
        <module>maven-api-metadata</module>
        <module>maven-api-core</module>
        <module>maven-api-spi</module>
      </modules>
    
      <properties>
        <project.directory>api</project.directory>
      </properties>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.codehaus.modello</groupId>
              <artifactId>modello-maven-plugin</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    	return tg.doGrepCount(match, &tg.stdout) + tg.doGrepCount(match, &tg.stderr)
    }
    
    // creatingTemp records that the test plans to create a temporary file
    // or directory. If the file or directory exists already, it will be
    // removed. When the test completes, the file or directory will be
    // removed if it exists.
    func (tg *testgoData) creatingTemp(path string) {
    	tg.t.Helper()
    	if filepath.IsAbs(path) && !strings.HasPrefix(path, tg.tempdir) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/swig/swig_test.go

    	swig, err := exec.LookPath("swig")
    	if err != nil {
    		t.Skipf("swig not in PATH: %s", err)
    	}
    
    	// Check that swig was installed with Go support by checking
    	// that a go directory exists inside the swiglib directory.
    	// See https://golang.org/issue/23469.
    	output, err := exec.Command(swig, "-go", "-swiglib").Output()
    	if err != nil {
    		t.Skip("swig is missing Go support")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:38:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/FileSystemExtensions.kt

    fun fileSystemEntryType(file: File): FileType =
        when {
            !file.exists() -> FileType.Missing
            file.isDirectory -> FileType.Directory
            else -> FileType.RegularFile
        }
    
    
    // This value is returned from directoryChildrenNamesHash when its argument doesn't exist or is not a directory.
    private
    val NON_DIRECTORY_CHILDREN_NAMES_HASH = HashCode.fromBytes(byteArrayOf(0, 0, 0, 0))
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modindex/read.go

    	errNotFromModuleCache = fmt.Errorf("%w: not from module cache", ErrNotIndexed)
    )
    
    // GetPackage returns the IndexPackage for the directory at the given path.
    // It will return ErrNotIndexed if the directory should be read without
    // using the index, for instance because the index is disabled, or the package
    // is not in a module.
    func GetPackage(modroot, pkgdir string) (*IndexPackage, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. doc/initial/1-intro.md

    <!--
    NOTE: In this document and others in this directory, the convention is to
    set fixed-width phrases with non-fixed-width spaces, as in
    `hello` `world`.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES — Introduction to Go 1.N {#introduction}
    
    **Go 1.N is not yet released. These are work-in-progress release notes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
  9. src/cmd/go/internal/script/cmds.go

    		})
    }
    
    // Rm removes a file or directory.
    //
    // If a directory, Rm also recursively removes that directory's
    // contents.
    func Rm() Cmd {
    	return Command(
    		CmdUsage{
    			Summary: "remove a file or directory",
    			Args:    "path...",
    			Detail: []string{
    				"If the path is a directory, its contents are removed recursively.",
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/BinaryCompatibilityHelper.groovy

    import japicmp.model.JApiChangeStatus
    import org.gradle.api.file.Directory
    import org.gradle.api.file.FileCollection
    
    class BinaryCompatibilityHelper {
        static setupJApiCmpRichReportRules(
            JapicmpTask japicmpTask,
            AcceptedApiChanges acceptedViolations,
            FileCollection sourceRoots,
            String currentVersion,
            File mainApiChangesJsonFile,
            Directory projectRootDir,
            File currentUpgradedPropertiesFile,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top