Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 663 for isarchive (0.31 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/ArStaticLibraryArchiver.java

            // Need to delete the previous archive, otherwise stale object files will remain
            if (!spec.getOutputFile().isFile()) {
                return;
            }
            if (!spec.getOutputFile().delete()) {
                throw new GradleException("Create static archive failed: could not delete previous archive");
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/ar.go

    				// Don't try to pull things out of a host archive to
    				// satisfy this symbol.
    				continue
    			}
    		}
    		newundefs = append(newundefs, s)
    		newfroms = append(newfroms, s)
    	}
    	return newundefs, newfroms
    }
    
    // hostArchive reads an archive file holding host objects and links in
    // required objects. The general format is the same as a Go archive
    // file, but it has an armap listing symbols and the objects that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/pack/pack_test.go

    		t.Fatalf("expected %q got %q", expect, result)
    	}
    }
    
    // Test that we can create an archive, write to it, and get the same contents back.
    // Tests the rv and then the pv command on a new archive.
    func TestCreate(t *testing.T) {
    	dir := t.TempDir()
    	testCreate(t, dir)
    }
    
    // Test that we can create an archive twice with the same name (Issue 8369).
    func TestCreateTwice(t *testing.T) {
    	dir := t.TempDir()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformFactoryForLegacy.java

     */
    
    package org.gradle.internal.classpath.transforms;
    
    import org.gradle.api.UncheckedIOException;
    import org.gradle.api.internal.file.archive.ZipEntry;
    import org.gradle.api.internal.file.archive.ZipInput;
    import org.gradle.api.internal.file.archive.impl.FileZipInput;
    import org.gradle.internal.classpath.ClasspathBuilder;
    import org.gradle.internal.classpath.ClasspathWalker;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. maven-core/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

          <post>******@****.***</post>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
        </mailingList>
        <mailingList>
          <name>Maven Developer List</name>
          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
          <post>******@****.***</post>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 27 10:08:56 UTC 2020
    - 8.6K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/artifact/IvyArtifactNotationParserFactoryTest.groovy

            def archive = rootProject.task('foo', type: Zip, {})
            archive.archiveBaseName.set("base-name")
            archive.archiveExtension.set('extension')
            archive.destinationDirectory.set(rootProject.buildDir)
    
            IvyArtifact ivyArtifact = parser.parseNotation(archive)
    
            then:
            ivyArtifact.name == 'pub-name'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

          <post>******@****.***</post>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
        </mailingList>
        <mailingList>
          <name>Maven Developer List</name>
          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
          <post>******@****.***</post>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. internal/event/target/redis.go

    func (target *RedisTarget) Store() event.TargetStore {
    	return target.store
    }
    
    // IsActive - Return true if target is up and active
    func (target *RedisTarget) IsActive() (bool, error) {
    	if err := target.init(); err != nil {
    		return false, err
    	}
    	return target.isActive()
    }
    
    func (target *RedisTarget) isActive() (bool, error) {
    	conn := target.pool.Get()
    	defer conn.Close()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/bugreport/bugreport.go

    			log.Errorf(err.Error())
    			continue
    		}
    		writeFile(filepath.Join(archive.ProxyOutputPath(tempDir, namespace, pod), common.ProxyContainerName+".log"), text, config.DryRun)
    	}
    
    	logRuntime(curTime, "Done with bug-report command before generating the archive file")
    
    	outDir, err := os.Getwd()
    	if err != nil {
    		log.Errorf("using ./ to write archive: %s", err.Error())
    		outDir = "."
    	}
    	if outputDir != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/ZipHasher.java

    import com.google.common.collect.ImmutableSet;
    import org.apache.commons.io.FilenameUtils;
    import org.gradle.api.internal.file.archive.ZipEntry;
    import org.gradle.api.internal.file.archive.ZipInput;
    import org.gradle.api.internal.file.archive.impl.FileZipInput;
    import org.gradle.api.internal.file.archive.impl.StreamZipInput;
    import org.gradle.internal.file.FileType;
    import org.gradle.internal.fingerprint.FileSystemLocationFingerprint;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top