Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for Stub (0.46 sec)

  1. src/cmd/dist/test.go

    		}
    		t.registerTest("Testing without libgcc.",
    			&goTest{
    				variant:  "nolibgcc",
    				ldflags:  "-linkmode=internal -libgcc=none",
    				runTests: run,
    				pkg:      pkg,
    			})
    	}
    
    	// Stub out following test on alpine until 54354 resolved.
    	builderName := os.Getenv("GO_BUILDER_NAME")
    	disablePIE := strings.HasSuffix(builderName, "-alpine")
    
    	// Test internal linking of PIE binaries where it is supported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    	// using the controller and we hold sleepRatio at a conservative
    	// value. Used if the controller's assumptions fail to hold.
    	controllerCooldown int64
    
    	// sleepStub is a stub used for testing to avoid actually having
    	// the scavenger sleep.
    	//
    	// Unlike the other stubs, this is not populated if left nil
    	// Instead, it is called when non-nil because any valid implementation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

        DefaultExecutionPlan executionPlan
        DefaultFinalizedExecutionPlan finalizedPlan
    
        def accessHierarchies = new ExecutionNodeAccessHierarchies(CASE_SENSITIVE, Stub(Stat))
        def taskNodeFactory = new TaskNodeFactory(project.gradle, Stub(BuildTreeWorkGraphController), nodeValidator, new TestBuildOperationRunner(), accessHierarchies)
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// LoweredWB invokes runtime.gcWriteBarrier. arg0=mem, aux=# of buffer entries needed
    		// It saves all GP registers if necessary,
    		// but clobbers R14 (LR) because it's a call,
    		// and also clobbers R1 as the PLT stub does.
    		// Returns a pointer to a write barrier buffer in R9.
    		{name: "LoweredWB", argLength: 1, reg: regInfo{clobbers: (callerSave &^ gpg) | buildReg("R14") | r1, outputs: []regMask{r9}}, clobberFlags: true, aux: "Int64"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	os.Unsetenv("GOFLAGS")
    	os.Setenv("GOWORK", "off")
    
    	workdir = xworkdir()
    	if err := os.WriteFile(pathf("%s/go.mod", workdir), []byte("module bootstrap"), 0666); err != nil {
    		fatalf("cannot write stub go.mod: %s", err)
    	}
    	xatexit(rmworkdir)
    
    	tooldir = pathf("%s/pkg/tool/%s_%s", goroot, gohostos, gohostarch)
    
    	goversion := findgoversion()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        @Test
        void testPluginManagementInheritance() throws Exception {
            PomTestWrapper pom = this.buildPom("plugin-management-inheritance");
            assertEquals(
                    "0.1-stub-SNAPSHOT",
                    pom.getValue("build/pluginManagement/plugins[@artifactId='maven-compiler-plugin']/version"));
        }
    
        @Test
        void testProfilePlugins() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  7. src/go/build/build.go

    	// "go1.x" release tag. That is, the go1.x tag is present in
    	// all releases >= Go 1.x. Code that requires Go 1.x or later
    	// should say "go:build go1.x", and code that should only be
    	// built before Go 1.x (perhaps it is the stub to use in that
    	// case) should say "go:build !go1.x".
    	// The last element in ReleaseTags is the current release.
    	for i := 1; i <= goversion.Version; i++ {
    		c.ReleaseTags = append(c.ReleaseTags, "go1."+strconv.Itoa(i))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	// Every other win32 array API takes arguments as "pointer, count", except for this function. So we
    	// can't declare it as a usual [] type, because mksyscall will use the opposite order. We therefore
    	// trivially stub this ourselves.
    
    	var handlePtr *Handle
    	if len(handles) > 0 {
    		handlePtr = &handles[0]
    	}
    	return waitForMultipleObjects(uint32(len(handles)), uintptr(unsafe.Pointer(handlePtr)), waitAll, waitMilliseconds)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	var save [][]byte
    	var skipLines int
    	for _, line := range bytes.SplitAfter(out, []byte("\n")) {
    		// golang.org/issue/26073 - Apple Xcode bug
    		if bytes.Contains(line, []byte("ld: warning: text-based stub file")) {
    			continue
    		}
    
    		if skipLines > 0 {
    			skipLines--
    			continue
    		}
    
    		// Remove TOC overflow warning on AIX.
    		if bytes.Contains(line, []byte("ld: 0711-783")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    fttalpluhcs,?n&-i-g-o-l,aw-ym,e&lletsebgitsnüg,sgnutiel,?i&emtsi,lreb-n&i,yd,??norblieh-sh.ti.segap,oitatsksid-ygolonys,pv&-n&i,yd,?nyd,?refeilgitsnüg,?orp-ytinummoc,p&h21,iog:ol,,ohsdaerpsym,?r&e&ntrapdeeps.remotsuc,su&-lautriv,lautriv,?t&adpusnd,tub-ni,uor-ym,?vres&-e&bucl,mohym,?bew-emoh:.nyd,,luhcs,??ogiv-&niem,ym,??s&d-&onys,ygolonys,?nd&-&dd,nufiat,sehcsimanyd,tenretni,yard,?isoc.nyd,ps,yard,?oper-&nvs,tig,?sndd:.&nyd,sndnyd,?,?topsgolb,vresi-&niem,tset,?xi2,y&awetag-&llawerif,ym,?srab,tic...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top