Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 108 for Director (0.65 sec)

  1. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTask.kt

     */
    @CacheableTask
    abstract class AbstractAcceptedApiChangesMaintenanceTask : DefaultTask() {
    
        /**
         * A directory that contains jsons with accepted API changes.
         * Any json is a directory is considered to contain accepted API changes.
         */
        @get:InputDirectory
        @get:PathSensitive(PathSensitivity.RELATIVE)
        abstract val apiChangesDirectory: DirectoryProperty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // to a subdirectory named "go" in the user's home directory
    // ($HOME/go on Unix, %USERPROFILE%\go on Windows),
    // unless that directory holds a Go distribution.
    // Run "go env GOPATH" to see the current GOPATH.
    //
    // See https://golang.org/wiki/SettingGOPATH to set a custom GOPATH.
    //
    // Each directory listed in GOPATH must have a prescribed structure:
    //
    // The src directory holds source code. The path below src
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. architecture/build-state-model.md

    The build process state also includes state that is tied to a particular Gradle user home directory.
    When that directory changes between Gradle invocations, the state is discarded and recreated.
    Typically, the Gradle user home directory does not change for a given process, so this is effectively process state.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/clean/clean.go

    The go command builds most objects in a temporary directory,
    so go clean is mainly concerned with object files left by other
    tools or by manual invocations of go build.
    
    If a package argument is given or the -i or -r flag is set,
    clean removes the following files from each of the
    source directories corresponding to the import paths:
    
    	_obj/            old object directory, left from Makefiles
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/cmd/doc/main.go

    	if err != nil {
    		log.Fatal(err)
    	}
    	if len(args) == 0 {
    		// Easy: current directory.
    		return importDir(wd), "", "", false
    	}
    	arg := args[0]
    	// We have an argument. If it is a directory name beginning with . or ..,
    	// use the absolute path name. This discriminates "./errors" from "errors"
    	// if the current directory contains a non-standard errors package.
    	if isDotSlash(arg) {
    		arg = filepath.Join(wd, arg)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. doc/next/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.23 {#introduction}
    
    **Go 1.23 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)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         */
        PathModularizationCache() {
            moduleInfo = new HashMap<>();
            pathTypes = new HashMap<>();
        }
    
        /**
         * Gets module information for the given JAR file or output directory.
         * Module descriptors are read when first requested, then cached.
         */
        PathModularization getModuleInfo(Path path) throws IOException {
            PathModularization info = moduleInfo.get(path);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

         *
         * The fixture build supports both Java and Kotlin sources.
         *
         * @param v1 sources producer for V1, receiver is the `src/main` directory
         * @param v2 sources producer for V2, receiver is the `src/main` directory
         * @param block convenience block invoked on the result
         * @return the check result
         */
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/internal/cache/default.go

    	defaultCache Cache
    )
    
    // cacheREADME is a message stored in a README in the cache directory.
    // Because the cache lives outside the normal Go trees, we leave the
    // README as a courtesy to explain where it came from.
    const cacheREADME = `This directory holds cached build artifacts from the Go build system.
    Run "go clean -cache" if the directory is getting too large.
    Run "go clean -fuzzcache" to delete the fuzz cache.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top