Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for stopping (1.43 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                it.assertHasCause("Failed to transform a.jar (project :a) to match attributes {artifactType=jar, color=green}.")
                // TODO - should collect all failures rather than stopping on first failure
            }
    
            when:
            configurationCacheFails(":resolve")
    
            then:
            configurationCache.assertStateLoaded()
            output.count("processing") == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    	}
    	return env
    }
    
    var toolchain = []string{"cmd/asm", "cmd/cgo", "cmd/compile", "cmd/link", "cmd/preprofile"}
    
    // The bootstrap command runs a build from scratch,
    // stopping at having installed the go_bootstrap command.
    //
    // WARNING: This command runs after cmd/dist is built with the Go bootstrap toolchain.
    // It rebuilds and installs cmd/dist with the new toolchain, so other
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    	if !platform.BuildModeSupported(runtime.Compiler, "pie", runtime.GOOS, runtime.GOARCH) {
    		t.Skipf("skipping test because buildmode=pie is not supported on %s/%s", runtime.GOOS, runtime.GOARCH)
    	}
    	// Skip on alpine until https://go.dev/issues/54354 resolved.
    	if strings.HasSuffix(testenv.Builder(), "-alpine") {
    		t.Skip("skipping PIE tests on alpine; see https://go.dev/issues/54354")
    	}
    	t.Run("non-cgo", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            if (availableClassifiers.map { it.scope }.hasScopeCloserThan(scopeForClass, element)) return false
    
            /**
             * If we have a property with the same name, avoid dropping qualifiers makes it reference a property with the same name e.g.,
             *    package my.component
             *    class foo { .. }  // A
             *    ..
             *    fun test() {
             *      val foo = ..    // B
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    		return
    	}
    	if start == end {
    		if state.loggingLevel > 1 {
    			// Printf not logf so not gated by GOSSAFUNC; this should fire very rarely.
    			// TODO this fires a lot, need to figure out why.
    			state.logf("Skipping empty location list for %v in %s\n", state.vars[varID], state.f.Name)
    		}
    		return
    	}
    
    	list := state.lists[varID]
    	list = appendPtr(state.ctxt, list, start)
    	list = appendPtr(state.ctxt, list, end)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    			if staticCheck.skip == nil && goos == "linux" && strings.Contains(goexperiment, "boringcrypto") {
    				staticCheck.skip = func(*distTest) (string, bool) {
    					return "skipping static linking check on Linux when using boringcrypto to avoid C linker warning about getaddrinfo", true
    				}
    			}
    
    			// Static linking tests
    			if goos != "android" && p != "netbsd/arm" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    	startRegs [][]startReg
    
    	// startRegsMask is a mask of the registers in startRegs[curBlock.ID].
    	// Registers dropped from startRegsMask are later synchronoized back to
    	// startRegs by dropping from there as well.
    	startRegsMask regMask
    
    	// spillLive[blockid] is the set of live spills at the end of each block
    	spillLive [][]ID
    
    	// a set of copies we generated to move things around, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    	for _, r := range modFile.Require {
    		if index := MainModules.Index(m); index != nil && index.exclude[r.Mod] {
    			if cfg.BuildMod == "mod" {
    				fmt.Fprintf(os.Stderr, "go: dropping requirement on excluded version %s %s\n", r.Mod.Path, r.Mod.Version)
    			} else {
    				fmt.Fprintf(os.Stderr, "go: ignoring requirement on excluded version %s %s\n", r.Mod.Path, r.Mod.Version)
    			}
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    			return nil, nil, nil, err
    		}
    	}
    
    	// Set compile objdir to testDir we've already created,
    	// so that the default file path stripping applies to _testmain.go.
    	b.CompileAction(work.ModeBuild, work.ModeBuild, pmain).Objdir = testDir
    
    	a := b.LinkAction(work.ModeBuild, work.ModeBuild, pmain)
    	a.Target = testDir + testBinary + cfg.ExeSuffix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    			if err != nil {
    				base.Fatal(err)
    			}
    			goModDiff := diff.Diff("current/go.mod", currentGoMod, "tidy/go.mod", updatedGoMod)
    
    			modfetch.TrimGoSum(keep)
    			// Dropping compatibility for 1.16 may result in a strictly smaller go.sum.
    			// Update the keep map with only the loaded.requirements.
    			if gover.Compare(compatVersion, "1.16") > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top