Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 185 for Director (2.18 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultPathTranslator.java

                } else if (file.getPath().startsWith(File.separator)) {
                    // drive-relative Windows path, don't align with project directory but with drive root
                    result = file.getAbsolutePath();
                } else {
                    // an ordinary relative path, align with project directory
                    result = basedir.resolve(path).normalize().toString();
                }
            }
    
            return result;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. .github/dependabot.yml

    #  limitations under the License.
    #
    version: 2
    updates:
    
      - package-ecosystem: maven
        directory: "/"
        schedule:
          interval: daily
    
      - package-ecosystem: "github-actions"
        directory: "/"
        schedule:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 12:45:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/go/internal/modload/import.go

    //
    // Otherwise, dirInModule returns the name of the directory where
    // Go source files would be expected, along with a boolean indicating
    // whether there are in fact Go source files in that directory.
    // A non-nil error indicates that the existence of the directory and/or
    // source files could not be determined, for example due to a permission error.
    func dirInModule(path, mpath, mdir string, isLocal bool) (dir string, haveGoFiles bool, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/internal/modfetch/codehost/codehost.go

    	// ReadZip downloads a zip file for the subdir subdirectory
    	// of the given revision to a new file in a given temporary directory.
    	// It should refuse to read more than maxSize bytes.
    	// It returns a ReadCloser for a streamed copy of the zip file.
    	// All files in the zip file are expected to be
    	// nested in a single top-level directory, whose name is not specified.
    	ReadZip(ctx context.Context, rev, subdir string, maxSize int64) (zip io.ReadCloser, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. 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)
  10. maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java

            return artifact;
        }
    
        private Artifact createTestArtifact(String directory, String type) throws IOException {
            return createTestArtifact(directory, "1.0", type);
        }
    
        private Artifact createTestArtifact(String directory, String version, String type) throws IOException {
            File testData = getTestFile(directory);
            FileUtils.deleteDirectory(testData);
            testData.mkdirs();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top