Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. src/cmd/cgo/internal/testshared/shared_test.go

    		AssertRebuilt(t, "new source", target)
    		AssertRebuilt(t, "new source", shlib)
    	})
    
    	// If the .a file is newer than the .so, the .so is rebuilt (but not the .a)
    	t.Run("newarchive", func(t *testing.T) {
    		resetFileStamps()
    		AssertNotRebuilt(t, "new .a file before build", target)
    		goCmd(t, "list", "-linkshared", "-f={{.ImportPath}} {{.Stale}} {{.StaleReason}} {{.Target}}", "./depBase")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

            ConfigurableFileCollection oldArchives = getOldArchives();
            ConfigurableFileCollection newArchives = getNewArchives();
            List<JApiCmpWorkerAction.Archive> baseline = !oldArchives.isEmpty() ? toArchives(oldArchives) : inferArchives(getOldClasspath());
            List<JApiCmpWorkerAction.Archive> current = !newArchives.isEmpty() ? toArchives(newArchives) : inferArchives(getNewClasspath());
            execForNewGradle(baseline, current);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 10:58:32 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

            target.setSubscribe(source.getSubscribe().getOrNull());
            target.setUnsubscribe(source.getUnsubscribe().getOrNull());
            target.setPost(source.getPost().getOrNull());
            target.setArchive(source.getArchive().getOrNull());
            target.setOtherArchives(new ArrayList<>(source.getOtherArchives().get()));
            return target;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
Back to top