Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for isarchive (0.18 sec)

  1. src/cmd/link/internal/ld/lib.go

    	}
    	return path
    }
    
    type machoUpdateFunc func(ctxt *Link, exef *os.File, exem *macho.File, outexe string) error
    
    // archive builds a .a archive from the hostobj object files.
    func (ctxt *Link) archive() {
    	if ctxt.BuildMode != BuildModeCArchive {
    		return
    	}
    
    	exitIfErrors()
    
    	if *flagExtar == "" {
    		*flagExtar = "ar"
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Creating an archive file is essentially a file copy in which the destination is implicit, i.e., the archive file itself.
    Here is a basic example that specifies the path and name of the target archive file:
    
    ====
    include::sample[dir="snippets/files/copy/kotlin",files="build.gradle.kts[tags=create-archive-example]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            - $builtMainClassesPath (artifactType = java-classes-directory)
    
    --------------------------------------------------
    Variant archives
    --------------------------------------------------
    Configuration for archive artifacts.
    
    Capabilities
        - org:myLib:1.0 (default capability)
    Artifacts
        - $jarPath (artifactType = jar)
    
    --------------------------------------------------
    Variant default
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/index.vnd",
    				"application/iotp",
    				"application/ipp",
    				"application/isup",
    				"application/java-archive",
    				"application/vnd.android.package-archive",
    				"application/x-tika-java-enterprise-archive",
    				"application/x-tika-java-web-archive",
    				"application/x-tika-unix-dump",
    				"application/java-serialized-object",
    				"application/javascript",
    				"application/json",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    	// non-critical debug setting.
    	if !t.compileOnly && !t.short {
    		t.registerTest("GODEBUG=gcstoptheworld=2 archive/zip",
    			&goTest{
    				variant: "runtime:gcstoptheworld2",
    				timeout: 300 * time.Second,
    				short:   true,
    				env:     []string{"GODEBUG=gcstoptheworld=2"},
    				pkg:     "archive/zip",
    			})
    	}
    
    	// morestack tests. We only run these in long-test mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    }
    
    // dopack copies the package src to dst,
    // appending the files listed in extra.
    // The archive format is the traditional Unix ar format.
    func dopack(dst, src string, extra []string) {
    	bdst := bytes.NewBufferString(readfile(src))
    	for _, file := range extra {
    		b := readfile(file)
    		// find last path element for archive member name
    		i := strings.LastIndex(file, "/") + 1
    		j := strings.LastIndex(file, `\`) + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("post@", pom.getValue("mailingLists[1]/post"));
            assertEquals("mail-archive", pom.getValue("mailingLists[1]/archive"));
            assertEquals(1, ((List<?>) pom.getValue("mailingLists[1]/otherArchives")).size());
            assertEquals("other-archive", pom.getValue("mailingLists[1]/otherArchives[1]"));
    
            assertEquals("2.0.1", pom.getValue("prerequisites/maven"));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  8. .bazelrc

    build:windows --host_copt=/d2ReducedOptimizeHugeFunctions
    
    # Enable the runfiles symlink tree on Windows. This makes it possible to build
    # the pip package on Windows without an intermediate data-file archive, as the
    # build_pip_package script in its current form (as of Aug 2023) uses the
    # runfiles symlink tree to decide what to put into the Python wheel.
    startup --windows_enable_symlinks
    build:windows --enable_runfiles
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        WorkResult copy(Action<? super CopySpec> action);
    
        /**
         * Creates a {@link CopySpec} which can later be used to copy files or create an archive. The given closure is used
         * to configure the {@link CopySpec} before it is returned by this method.
         *
         * <pre class='autoTested'>
         * def baseSpec = copySpec {
         *    from "source"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    
    [[sec:inferred_task_dependencies]]
    === Inferred task dependencies
    
    Consider an archive task that packages the output of the `processTemplates` task. A build author will see that the archive task obviously requires `processTemplates` to run first and so may add an explicit `dependsOn`. However, if you define the archive task like so:
    
    .Inferred task dependency via task outputs
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top