Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 253 for isarchive (0.38 sec)

  1. src/runtime/signal_unix.go

    //go:nosplit
    //go:nowritebarrierrec
    func initsig(preinit bool) {
    	if !preinit {
    		// It's now OK for signal handlers to run.
    		signalsOK = true
    	}
    
    	// For c-archive/c-shared this is called by libpreinit with
    	// preinit == true.
    	if (isarchive || islibrary) && !preinit {
    		return
    	}
    
    	for i := uint32(0); i < _NSIG; i++ {
    		t := &sigtable[i]
    		if t.flags == 0 || t.flags&_SigDefault != 0 {
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. src/runtime/runtime1.go

    			t |= uint32(n) << tracebackShift
    		}
    	}
    	// when C owns the process, simply exit'ing the process on fatal errors
    	// and panics is surprising. Be louder and abort instead.
    	if islibrary || isarchive {
    		t |= tracebackCrash
    	}
    
    	t |= traceback_env
    
    	atomic.Store(&traceback_cache, t)
    }
    
    // Poor mans 64-bit division.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/runtime/symtab.go

    				println("\t", hex(datap.ftab[j].entryoff), funcname(funcInfo{(*_func)(unsafe.Pointer(&datap.pclntable[datap.ftab[j].funcoff])), datap}))
    			}
    			if GOOS == "aix" && isarchive {
    				println("-Wl,-bnoobjreorder is mandatory on aix/ppc64 with c-archive")
    			}
    			throw("invalid runtime symbol table")
    		}
    	}
    
    	min := datap.textAddr(datap.ftab[0].entryoff)
    	max := datap.textAddr(datap.ftab[nftab].entryoff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    //go:linkname goarm
    var (
    	goarm       uint8
    	goarmsoftfp uint8
    )
    
    // Set by the linker so the runtime can determine the buildmode.
    var (
    	islibrary bool // -buildmode=c-shared
    	isarchive bool // -buildmode=c-archive
    )
    
    // Must agree with internal/buildcfg.FramePointerEnabled.
    const framepointer_enabled = GOARCH == "amd64" || GOARCH == "arm64"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  5. 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)
  6. src/runtime/proc.go

    	// of collecting statistics in malloc and newproc
    	inittrace.active = false
    
    	close(main_init_done)
    
    	needUnlock = false
    	unlockOSThread()
    
    	if isarchive || islibrary {
    		// A program compiled with -buildmode=c-archive or c-shared
    		// has a main, but it is not executed.
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

                archive {
                    duplicatesStrategy = DuplicatesStrategy.INCLUDE
                }
            """
            when:
            run 'archive'
    
            def archive = archiveFixture(archiveType, file("build/test.${archiveType}"))
            then:
            archive.assertContainsFile('file1.txt', 2)
            archive.assertContainsFile('file2.txt', 1)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/pack/pack.go

    const (
    	arHeader = "!<arch>\n"
    )
    
    // An Archive represents an open archive file. It is always scanned sequentially
    // from start to end, without backing up.
    type Archive struct {
    	a        *archive.Archive
    	files    []string // Explicit list of files to be processed.
    	pad      int      // Padding bytes required at end of current archive file
    	matchAll bool     // match all files in archive
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/22685")
        @ToBeFixedForIsolatedProjects(because = "Access to root project from sub projects")
        def "can visit and edit zip archive differently from two different projects in a multiproject build"() {
            given: "an archive in the root of a multiproject build"
            createZip('test.zip') {
                subdir1 {
                    file ('file1.txt').text = 'original text 1'
                }
    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