Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,070 for late (0.36 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/istio-agent/xds_proxy_delta.go

    		Canary:       false,
    		TypeUrl:      resp.TypeUrl,
    		Nonce:        resp.Nonce,
    		ControlPlane: resp.ControlPlane,
    	}:
    	default:
    		log.Infof("tap response %q arrived too late; discarding", resp.TypeUrl)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/factory_test.go

    	}
    	c := atomic.LoadUint64(&counter)
    	if c != 2 {
    		t.Errorf("healthcheck() called etcd %d times, expected only two calls", c)
    	}
    
    	// cached request should be success and not be overridden by the late error
    	<-signal
    	err = healthcheck()
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	c = atomic.LoadUint64(&counter)
    	if c != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 29 15:58:10 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service_unix_test.go

    				socketName      = newEndpoint()
    			)
    
    			testCompletedWG.Add(1)
    			defer testCompletedWG.Done()
    
    			ctx := testContext(t)
    
    			kubeAPIServerWG.Add(1)
    			go func() {
    				// Simulating late start of kube-apiserver - plugin is up before kube-apiserver, if requested by the testcase.
    				time.Sleep(tt.kubeAPIServerDelay)
    
    				service, err = NewGRPCService(ctx, socketName.endpoint, tt.callTimeout)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 05:36:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

                }
                targetNodes.clear();
            }
            targetNodeSelectionFailure = null;
        }
    
        /**
         * Call this method to attach a failure late in the process. This is typically
         * done when a failure is caused by graph validation. In that case we want to
         * perform as much resolution as possible, still have a valid graph, but in the
         * end fail resolution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/UnsupportedConfigurationMutationTest.groovy

                        doLast {
                            def files = configurations.compile.files
                            assert files*.name.sort() == ["api.jar"] // Late dependency is not honoured
                            assert files*.exists() == [ true ]
                        }
                    }
                }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 17.6K bytes
    - Viewed (2)
Back to top