Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 201 for Director (0.42 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

    fun Project.getBuildEnvironmentExtension(): BuildEnvironmentExtension? = extensions.findByType(BuildEnvironmentExtension::class.java)
    
    
    fun Project.repoRoot(): Directory = getBuildEnvironmentExtension()?.repoRoot?.get() ?: layout.projectDirectory.parentOrRoot()
    
    
    fun Directory.parentOrRoot(): Directory = if (this.file("version.txt").asFile.exists()) {
        this
    } else {
        val parent = dir("..")
        when {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/scan.go

    			// modules that contain them.
    			// TODO(matloob): perhaps don't return this error if the symlink leads to
    			// a directory with a go.mod file.
    			return ErrNotIndexed
    		}
    	}
    	return nil
    }
    
    // indexModule indexes the module at the given directory and returns its
    // encoded representation. It returns ErrNotIndexed if the module can't
    // be indexed because it contains symlinks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/configuration-management.apt

     are available in the ${maven.home}/site-configuration directory
    
    +-----+
    ${maven.home}
         |
         +--- maven.properties
    +-----+
    
    * Group configuration
    
     As far as properties go for an entire build the maven.properties could be placed at
     the top of the group but I'm not really sure how this might work. There could probably
     also be a directory for plugins.xml and maven.properties.
    
    * Project configuration
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. api/maven-api-metadata/src/main/mdo/metadata.mdo

            </field>
            <field>
              <name>release</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>What the last version added to the directory is, for the releases only ("groupId/artifactId" directory only)</description>
            </field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/shell.go

    // for the implementation of -n or -x.
    //
    // ShowCmd also replaces the name of the current script directory with dot (.)
    // but only when it is at the beginning of a space-separated token.
    //
    // If dir is not "" or "/" and not the current script directory, ShowCmd first
    // prints a "cd" command to switch to dir and updates the script directory.
    func (sh *Shell) ShowCmd(dir string, format string, args ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

            filename = "(none)";
            descriptors = Collections.emptyMap();
            isModuleHierarchy = false;
        }
    
        /**
         * Finds module information in the given JAR file, output directory, or test output directory.
         * If no module is found, or if module information cannot be extracted, then this constructor
         * builds an empty map.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileLookup.java

    public interface FileLookup {
        /**
         * Returns a file resolver with no base directory.
         */
        FileResolver getFileResolver();
    
        /**
         * Returns a file resolver with no base directory.
         */
        PathToFileResolver getPathToFileResolver();
    
        /**
         * Returns a file resolver with the given base directory.
         */
        FileResolver getFileResolver(File baseDirectory);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-jar-plugin/0.1/maven-jar-plugin-0.1.pom

        </dependency>
      </dependencies>
    
      <build>
        <resources>
          <resource>
            <directory></directory>
            <includes>
              <include>pom.xml</include>
              <include>src/**</include>
            </includes>
          </resource>
          <resource>
            <directory>src/main/resources</directory>
          </resource>
        </resources>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/remote-repo/org/apache/maven/its/plugins/maven-it-plugin/0.1/maven-it-plugin-0.1.pom

        </dependency>
      </dependencies>
    
      <build>
        <resources>
          <resource>
            <directory></directory>
            <includes>
              <include>pom.xml</include>
              <include>src/**</include>
            </includes>
          </resource>
          <resource>
            <directory>src/main/resources</directory>
          </resource>
        </resources>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/apache/maven/its/plugins/maven-it-plugin/0.1/pom.xml

        </dependency>
      </dependencies>
    
      <build>
        <resources>
          <resource>
            <directory></directory>
            <includes>
              <include>pom.xml</include>
              <include>src/**</include>
            </includes>
          </resource>
          <resource>
            <directory>src/main/resources</directory>
          </resource>
        </resources>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top