Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for targetPath (0.18 sec)

  1. maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml

        <finalName>coreit</finalName>
        <resources>
          <resource>
            <directory>res/main</directory>
            <filtering>true</filtering>
            <targetPath>main</targetPath>
            <includes>
              <include>main.included</include>
            </includes>
            <excludes>
              <exclude>main.excluded</exclude>
            </excludes>
          </resource>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 8.6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml

        <finalName>coreit</finalName>
        <resources>
          <resource>
            <directory>res/main</directory>
            <filtering>true</filtering>
            <targetPath>main</targetPath>
            <includes>
              <include>main.included</include>
            </includes>
            <excludes>
              <exclude>main.excluded</exclude>
            </excludes>
          </resource>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 8.8K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/projects/fully-populated-child.xml

              <include>driver.properties</include>
            </includes>
          </resource>
          <resource>
            <directory>/src/messages</directory>
            <targetPath>org/apache/maven/messages</targetPath>
            <includes>
              <include>messages*.properties</include>
            </includes>
          </resource>
        </resources>
      </build>
    
      <reports>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 4.7K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment.xml

              <include>driver.properties</include>
            </includes>
          </testResource>
          <testResource>
            <directory>src/messages</directory>
            <targetPath>org/apache/maven/messages</targetPath>
            <includes>
              <include>messages*.properties</include>
            </includes>
          </testResource>
        </testResources>
      </build>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 3.6K bytes
    - Viewed (0)
  5. guava/pom.xml

              <include>LICENSE</include> <!-- copied from the parent pom because I couldn't figure out a way to make combine.children="append" work -->
              <include>proguard/*</include>
            </includes>
            <targetPath>META-INF</targetPath>
          </resource>
        </resources>
        <plugins>
          <plugin>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
              <archive>
                <manifestEntries>
    XML
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Mar 11 16:37:45 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  6. cmd/erasure-multipart.go

    				wait := deleteMultipartCleanupSleeper.Timer(ctx)
    				if time.Since(fi.ModTime) > expiry {
    					pathUUID := mustGetUUID()
    					targetPath := pathJoin(drivePath, minioMetaTmpDeletedBucket, pathUUID)
    
    					renameAll(pathJoin(drivePath, minioMetaMultipartBucket, uploadIDPath), targetPath, pathJoin(drivePath, minioMetaBucket))
    				}
    				wait()
    				return nil
    			})
    		})
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 19 16:44:59 GMT 2024
    - 42.4K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/project.xml

              <include>driver.properties</include>
            </includes>
          </resource>
          <resource>
            <directory>/src/messages</directory>
            <targetPath>org/apache/maven/messages</targetPath>
            <includes>
              <include>messages*.properties</include>
            </includes>
          </resource>
        </resources>
      </build>
    
      <reports>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 4.6K bytes
    - Viewed (0)
  8. android/guava/pom.xml

              <include>LICENSE</include> <!-- copied from the parent pom because I couldn't figure out a way to make combine.children="append" work -->
              <include>proguard/*</include>
            </includes>
            <targetPath>META-INF</targetPath>
          </resource>
        </resources>
        <plugins>
          <plugin>
            <artifactId>maven-jar-plugin</artifactId>
            <configuration>
              <archive>
                <manifestEntries>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 11 16:37:45 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  9. android/pom.xml

        <resources>
          <resource>
            <directory>../..</directory>
            <includes>
              <include>LICENSE</include>
            </includes>
            <targetPath>META-INF</targetPath>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>test</directory>
            <excludes>
              <exclude>**/*.java</exclude>
            </excludes>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Mar 12 20:26:18 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  10. cmd/xl-storage.go

    	pathUUID := mustGetUUID()
    	targetPath := pathutil.Join(s.drivePath, minioMetaTmpDeletedBucket, pathUUID)
    
    	if recursive {
    		err = renameAll(filePath, targetPath, pathutil.Join(s.drivePath, minioMetaBucket))
    	} else {
    		err = Rename(filePath, targetPath)
    	}
    
    	var targetPath2 string
    	if immediatePurge && HasSuffix(filePath, SlashSeparator) {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 19 11:26:59 GMT 2024
    - 82.4K bytes
    - Viewed (0)
Back to top