Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for newarchive (0.55 sec)

  1. src/internal/xcoff/ar.go

    	f, err := os.Open(name)
    	if err != nil {
    		return nil, err
    	}
    	arch, err := NewArchive(f)
    	if err != nil {
    		f.Close()
    		return nil, err
    	}
    	arch.closer = f
    	return arch, nil
    }
    
    // Close closes the Archive.
    // If the Archive was created using NewArchive directly instead of OpenArchive,
    // Close has no effect.
    func (a *Archive) Close() error {
    	var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gccgo.go

    	}
    
    	newID := 0
    	readAndRemoveCgoFlags := func(archive string) (string, error) {
    		newID++
    		newArchive := root.Objdir + fmt.Sprintf("_pkg%d_.a", newID)
    		if err := sh.CopyFile(newArchive, archive, 0666, false); err != nil {
    			return "", err
    		}
    		if cfg.BuildN || cfg.BuildX {
    			sh.ShowCmd("", "ar d %s _cgo_flags", newArchive)
    			if cfg.BuildN {
    				// TODO(rsc): We could do better about showing the right _cgo_flags even in -n mode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/cmd/distpack/pack.go

    	exe := ""
    	if goos == "windows" {
    		exe = ".exe"
    	}
    	version, versionTime := readVERSION(goroot)
    
    	// Start with files from GOROOT, filtering out non-distribution files.
    	base, err := NewArchive(goroot)
    	if err != nil {
    		log.Fatal(err)
    	}
    	base.SetTime(versionTime)
    	base.SetMode(mode)
    	base.Remove(
    		".git/**",
    		".gitattributes",
    		".github/**",
    		".gitignore",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/utils.go

    	//  cj.Status.Active = append(cj.Status.Active[:indexToRemove], cj.Status.Active[indexToRemove:]...)
    	newActive := []corev1.ObjectReference{}
    	for _, j := range cj.Status.Active {
    		if j.UID != uid {
    			newActive = append(newActive, j)
    		}
    	}
    	cj.Status.Active = newActive
    }
    
    // mostRecentScheduleTime returns:
    //   - the last schedule time or CronJob's creation time,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

        inputs.files(currentClasspath)
        inputs.files(extractGradleApiInfo)
    
        newClasspath.from(currentClasspath)
        oldClasspath.from(configurations.baselineClasspath)
    
        newArchives.from(currentDistroJars)
        oldArchives.from(baselineJars)
    
        // binary breaking change checking setup
        onlyModified = false
        failOnModification = false // we rely on the custom report to fail or not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                            oldArchives.from(v1Jar)
                            oldClasspath.from(v1.configurations.named("runtimeClasspath"), v1Jar)
    
                            newArchives.from(v2Jar)
                            newClasspath.from(v2.configurations.named("runtimeClasspath"), v2Jar)
    
                            onlyModified.set(false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

        private String defineUpdateTask(String archiveType) {
            return """
                abstract class UpdateTask extends DefaultTask {
                    @InputFile
                    abstract RegularFileProperty getArchive()
    
                    @Input
                    abstract Property<String> getReplacementText()
    
                    @Inject abstract ArchiveOperations getArchiveOperations()
    
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

              <code>
                <![CDATA[
        /**
         * @see java.lang.Object#toString()
         */
        public String toString()
        {
            return "MailingList {name=" + getName() + ", archive=" + getArchive() + "}";
        }
                ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
        <class>
          <name>Organization</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
Back to top