Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for bigfile (0.2 sec)

  1. maven-core/src/test/resources-project-builder/plugin-exec-w-and-wo-id/w-plugin-mgmt/pom.xml

        </pluginManagement>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-log-file</artifactId>
            <configuration>
              <logFile>target/exec.log</logFile>
              <string>exec</string>
            </configuration>
            <executions>
              <execution>
                <id>exec-1</id>
                <phase>validate</phase>
                <goals>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-exec-inheritance/pom.xml

                <inherited>true</inherited>
                <phase>validate</phase>
                <goals>
                  <goal>log-string</goal>
                </goals>
                <configuration>
                  <logFile>target/executions.txt</logFile>
                  <string>inherited-execution</string>
                </configuration>
              </execution>
              <execution>
                <id>non-inherited-execution</id>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/conf/logging/simplelogger.properties

    # under the License.
    
    org.slf4j.simpleLogger.defaultLogLevel=info
    org.slf4j.simpleLogger.showDateTime=false
    org.slf4j.simpleLogger.showThreadName=false
    org.slf4j.simpleLogger.showLogName=false
    org.slf4j.simpleLogger.logFile=System.out
    org.slf4j.simpleLogger.cacheOutputStream=true
    org.slf4j.simpleLogger.levelInBrackets=true
    org.slf4j.simpleLogger.log.Sisu=info
    org.slf4j.simpleLogger.warnLevelString=WARNING
    
    Properties
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 16 16:19:23 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  4. apache-maven/src/test/java/org/apache/maven/settings/GlobalSettingsTest.java

            String basedir = System.getProperty("basedir", System.getProperty("user.dir"));
    
            File globalSettingsFile = new File(basedir, "src/assembly/maven/conf/settings.xml");
            assertTrue(globalSettingsFile.isFile(), globalSettingsFile.getAbsolutePath());
    
            try (InputStream is = Files.newInputStream(globalSettingsFile.toPath())) {
                new SettingsStaxReader().read(is, true, new InputSource(globalSettingsFile.getAbsolutePath()));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/ExtensionDescriptorBuilder.java

         */
        public ExtensionDescriptor build(File extensionJar) throws IOException {
            ExtensionDescriptor extensionDescriptor = null;
    
            if (extensionJar.isFile()) {
                try (JarFile pluginJar = new JarFile(extensionJar, false)) {
                    ZipEntry pluginDescriptorEntry = pluginJar.getEntry(getExtensionDescriptorLocation());
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

            String metadataPath = localRepository.pathOfLocalRepositoryMetadata(metadata, localRepository);
            File metadataFile = new File(localRepository.getBasedir(), metadataPath);
            return metadataFile.isFile() ? new Date(metadataFile.lastModified()) : null;
        }
    
        private void mergeMetadata(
                RepositoryMetadata metadata,
                List<ArtifactRepository> remoteRepositories,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

                Versions versions,
                org.eclipse.aether.metadata.Metadata metadata,
                ArtifactRepository repository) {
            if (metadata != null && metadata.getFile() != null && metadata.getFile().isFile()) {
                try {
                    Map<String, ?> options = Collections.singletonMap(MetadataReader.IS_STRICT, Boolean.FALSE);
    
                    Metadata repoMetadata = metadataReader.read(metadata.getFile(), options);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-exec-w-and-wo-id/wo-plugin-mgmt/pom.xml

          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-log-file</artifactId>
            <version>2.1-SNAPSHOT</version>
            <configuration>
              <logFile>target/exec.log</logFile>
              <string>exec</string>
            </configuration>
            <executions>
              <execution>
                <id>exec-1</id>
                <phase>validate</phase>
                <goals>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/plugin-management-for-implicit-plugin/pom.xml

              <groupId>org.apache.maven.its.plugins</groupId>
              <artifactId>maven-it-plugin-log-file</artifactId>
              <version>2.1-SNAPSHOT</version>
              <configuration>
                <logFile>passed.txt</logFile>
              </configuration>
            </plugin>
          </plugins>
        </pluginManagement>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  10. Jenkinsfile

            jenkinsNotify()
        }
    }
    
    def archiveDirs(stageId, archives) {
        archives.each { archivePrefix, pathToContent ->
            if (fileExists(pathToContent)) {
                zip(zipFile: "${archivePrefix}-${stageId}.zip", dir: pathToContent, archive: true)
            }
        }
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 8.4K bytes
    - Viewed (0)
Back to top