Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,426 for directory1 (0.19 sec)

  1. cmd/config-dir.go

    	// Points to current configuration directory -- deprecated, to be removed in future.
    	globalConfigDir = defaultConfigDir
    	// Points to current certs directory set by user with --certs-dir
    	globalCertsDir = defaultCertsDir
    	// Points to relative path to certs directory and is <value-of-certs-dir>/CAs
    	globalCertsCADir = defaultCertsCADir
    )
    
    // Get - returns current directory.
    func (dir *ConfigDir) Get() string {
    	return dir.path
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. maven-repository-metadata/src/site/apt/index.apt

     []
    
     Depending on what the directory represents ("groupId", "groupId/artifactId" or "groupId/artifactId/version"),
     the Maven Repository Metadata file contains 3 different sets of metadata:
    
     [[1]] in a "groupId" directory: a "groupId" directory may contain Maven plugins artifacts, which are described in metadata's <<<plugins>>> element,
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 07 10:05:21 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultProjectLayoutTest.groovy

        }
    
        def "can query the project directory"() {
            expect:
            layout.projectDirectory.getAsFile() == projectDir
        }
    
        def "can resolve directory relative to project directory"() {
            def pathProvider = withValues("a", "b")
    
            expect:
            def dir = layout.projectDirectory.dir("sub-dir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 23 16:13:03 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/layout/ResolvedBuildLayout.java

         *
         * <p>There are two cases where this might be true: Gradle was invoked from a directory where there is no build script and no settings script in the directory hierarchy,
         * or Gradle was invoked from a directory where there is a settings script in the directory hierarchy but the directory is not a project directory for any project defined
         * in that settings script.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. maven-artifact/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerMock.java

        private String extension, directory, classifier, packaging, language;
        private boolean includesDependencies, addedToClasspath;
    
        public void setExtension(String extension) {
            this.extension = extension;
        }
    
        @Override
        public String getExtension() {
            return extension;
        }
    
        public void setDirectory(String directory) {
            this.directory = directory;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. pkg/volume/flexvolume/probe.go

    // If the file is a symlink to a directory, it will watch the symlink but not any of the subdirectories.
    //
    // Each file or directory change triggers two events: one from the watch on itself, another from the watch
    // on its parent directory.
    func (prober *flexVolumeProber) addWatchRecursive(filename string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. src/io/fs/fs.go

    	// since the directory read, Info may return an error satisfying errors.Is(err, ErrNotExist).
    	// If the entry denotes a symbolic link, Info reports the information about the link itself,
    	// not the link's target.
    	Info() (FileInfo, error)
    }
    
    // A ReadDirFile is a directory file whose entries can be read with the ReadDir method.
    // Every directory file should implement this interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         * of the project.
         *
         * @return the path of the pom
         * @see #getBasedir()
         */
        @Nonnull
        Path getPomPath();
    
        /**
         * Returns the project base directory, i.e. the directory containing the project.
         * A project is usually read from the file system and this will point to
         * the directory containing the POM file.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. pkg/util/removeall/removeall.go

    		return nil
    	}
    
    	// Otherwise, is this a directory we need to recurse into?
    	dir, serr := os.Lstat(path)
    	if serr != nil {
    		if serr, ok := serr.(*os.PathError); ok && (os.IsNotExist(serr.Err) || serr.Err == syscall.ENOTDIR) {
    			return nil
    		}
    		return serr
    	}
    	if !dir.IsDir() {
    		// Not a directory; return the error from remove.
    		return err
    	}
    
    	// Directory.
    	isNotMount, err := mounter.IsLikelyNotMountPoint(path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 16:41:02 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/readme.xml

        <itemizedlist>
            <listitem>
                <para>The <filename>buildscript</filename> directory contains a project that uses the old <code>buildscript</code> syntax for using plugins.</para>
            </listitem>
            <listitem>
                <para>The <filename>dsl</filename> directory contains the a project that uses the new <code>plugins</code> syntax for using plugins.</para>
            </listitem>
            <listitem>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top