Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,523 for late (0.18 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaPluginTest.groovy

                    TEST: [plus: [project.configurations.testCompileClasspath, project.configurations.testRuntimeClasspath], minus: []],
            ]
        }
    
        def "picks up late changes to build dir"() {
            when:
            applyPluginToProjects()
            project.apply(plugin: 'java')
            project.buildDir = project.file('target')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/toolchain.go

    // the regular repo code with "golang.org/toolchain".
    // The naming conflict is unfortunate: "golang.org/toolchain"
    // should perhaps have been "go.dev/dl", but it's too late.
    //
    // For clarity, this file refers to golang.org/toolchain as the "DL" repo,
    // the one you can actually download.
    type toolchainRepo struct {
    	path string // either "go" or "toolchain"
    	repo Repo   // underlying DL repo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. src/runtime/race/testdata/waitgroup_test.go

    		wg.Add(-1)
    		c <- true
    	}()
    	go func() {
    		wg.Wait()
    		time.Sleep(100 * time.Millisecond)
    		wg.Add(+1)
    		x = 2
    		wg.Add(-1)
    		c <- true
    	}()
    	<-c
    	<-c
    }
    
    // Incorrect usage: Add is too late.
    func TestRaceWaitGroupWrongWait(t *testing.T) {
    	c := make(chan bool, 2)
    	var x int
    	_ = x
    	var wg sync.WaitGroup
    	go func() {
    		wg.Add(1)
    		runtime.Gosched()
    		x = 1
    		wg.Done()
    		c <- true
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 22:09:38 UTC 2017
    - 5.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBomResolveIntegrationTest.groovy

            then:
            resolve.expectGraph {
                root(':', ':testproject:') {
                    module("group:bom:1.0").noArtifacts()
                }
            }
        }
    
        def "fails late for dependency entries that fail to provide a missing version"() {
            given:
            bomDependency('moduleA')
            bomDependency('moduleB')
            bom.publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. pkg/proxy/healthcheck/proxier_health.go

    			// or the proxier is fully synced.
    			continue
    		}
    
    		if currentTime.Sub(hs.oldestPendingQueuedMap[ipFamily]) < hs.healthTimeout {
    			// there's an unprocessed update queued for this proxier, but it's not late yet.
    			continue
    		}
    		return false, proxierLastUpdated
    	}
    	return true, lastUpdated
    }
    
    // SyncNode syncs the node and determines if it is eligible or not. Eligible is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesRulesIntegrationTest.groovy

       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib-nodep:3.2.5($variant)]""")
        }
    
        def "implicit capability conflict is detected if implicit capability is discovered late"() {
            given:
            repository {
                'cglib:cglib:3.2.5'()
                'cglib:cglib-nodep:3.2.5'()
                'org:lib:1.0' {
                    dependsOn 'cglib:cglib:3.2.5'
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

                    logger.lifecycle 'configureEach'
                }
                tasks.create('foo') {
                    logger.lifecycle 'create'
                }
                tasks.all {
                    logger.lifecycle 'too late'
                }
            """
    
            when:
            run('foo')
    
            then:
            verifyTaskIds()
            def realize = verifyTaskDetails(RealizeTaskBuildOperationType, withPath(':', ':foo'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "ClosureLECall", argLength: -1, aux: "CallOff", call: true}, // late-expanded closure call. arg0=code pointer, arg1=context ptr,  arg2..argN-1 are inputs, argN is mem. auxint = arg size. Result is tuple of result(s), plus mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/base/base.go

    					}
    				}
    				return true
    			}
    		}
    
    		// In this case we're done boosting GOGC, set it to 100 and don't set a new finalizer.
    		oldGogc := debug.SetGCPercent(100)
    		// inUse helps estimate how late the finalizer ran; at the instant the previous GC ended,
    		// it was (in theory) equal to the previous GC's heap goal.  In a growing heap it is
    		// expected to grow to the new heap goal.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. pkg/proxy/healthcheck/healthcheck_test.go

    	hs.Updated(v1.IPv4Protocol)
    	hs.Updated(v1.IPv6Protocol)
    	fakeClock.Step(5 * time.Second)
    	testHTTPHandler(hsTest, http.StatusOK, t)
    
    	// If IPv6 proxier is late for an update but IPv4 proxier is not then updating IPv4 proxier should have no effect.
    	hs.QueuedUpdate(v1.IPv6Protocol)
    	fakeClock.Step(25 * time.Second)
    	testHTTPHandler(hsTest, http.StatusServiceUnavailable, t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top