Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 208 for haninge (0.28 sec)

  1. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         * <p>
         * Generally, one regular Gradle invocation is conceptually a session.
         * However, the GradleBuild task is currently implemented in such a way that it uses a discrete session.
         * Having the GradleBuild task reuse the outer session is complicated because it <a href="https://github.com/gradle/gradle/issues/4559">may use a different Gradle user home</a>.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    		// o was reliant on the namespace waypoint and then get's a use-waypoint label added before that gateway is ready.
    		// goes from having a waypoint to having no waypoint and then eventually gets a waypoint back
    		return krt.FetchOne[Waypoint](ctx, Waypoints, krt.FilterKey(wp.ResourceName()))
    	}
    
    	// try fetching the namespace-defined waypoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/net/http/transport_internal_test.go

    		t.Fatal(err)
    	}
    	defer pc.close(errors.New("test over"))
    
    	conn := <-connc
    	if conn == nil {
    		// Already called t.Error in the accept goroutine.
    		return
    	}
    	conn.Close() // simulate the server hanging up on the client
    
    	_, err = pc.roundTrip(treq)
    	if !isNothingWrittenError(err) && !isTransportReadFromServerError(err) && err != errServerClosedIdle {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:57:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. cni/pkg/util/podutil.go

    // otherwise fallback to 'PodIP'.
    //
    // Note that very early in the pod's lifecycle (before all the node CNI plugin invocations finish)
    // K8S may not have received the pod IPs yet, and may not report the pod as having any.
    func GetPodIPsIfPresent(pod *corev1.Pod) []netip.Addr {
    	var podIPs []netip.Addr
    	if len(pod.Status.PodIPs) != 0 {
    		for _, pip := range pod.Status.PodIPs {
    			ip := netip.MustParseAddr(pip.IP)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 17:18:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSoakTest.groovy

            executer
                    .expectDocumentedDeprecationWarning("Using a toolchain installed via auto-provisioning, but having no toolchain repositories configured. " +
                            "This behavior is deprecated. Consider defining toolchain download repositories, otherwise the build might fail in clean environments; " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 16:13:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. tests/binary/binaries_test.go

    func TestBinarySizes(t *testing.T) {
    	cases := map[string]struct {
    		minMb int64
    		maxMb int64
    	}{
    		// TODO: shrink the ranges here once the active work to reduce binary size is complete
    		// For now, having two small a range will result in lots of "merge conflicts"
    		"istioctl":    {60, 85},
    		"pilot-agent": {20, 24},
    		// TODO(https://github.com/kubernetes/kubernetes/issues/101384) bump this down a bit?
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

         */
        boolean wrapperCanExecute(GradleVersion version);
    
        /**
         * Early versions had bugs that prevented any values having spaces in them in GRADLE_OPTS or JAVA_OPTS.
         *
         * See https://issues.gradle.org/browse/GRADLE-1730
         */
        boolean isSupportsSpacesInGradleAndJavaOpts();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

            tasks.withType(ClimbTask).all { it.steps = 14 }
            tasks.matching { it.name.contains('jump') }.all { it.height = 7 }
    
    
            //It should be possible to reference the tasks without having to do tasks.realize()
            assert overruleTask.text == "actionWoman I'm the real commander"
            assert jumpTask.height == 7
            assert climbTask.steps == 14
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker_test.go

    func (m MockEtcdClient) getVersion(endpoint string) (string, error) {
    	for _, ev := range m.EndpointVersion {
    		if ev.Endpoint == endpoint {
    			return ev.Version, ev.Error
    		}
    	}
    	// Never should happen, unless tests having a problem.
    	return "", fmt.Errorf("No version found")
    }
    
    func (m *MockEtcdClient) Endpoints() []string {
    	return m.getEndpoints()
    }
    
    // Status returns a mock status response.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

            connector.disconnect()
            resultHandler.finished()
    
            then:
            assertNoRunningDaemons()
        }
    
        @Timeout(30)
        @TargetGradleVersion(">=6.8")
        def "disconnect during hanging build does not block the client"() {
            setup:
            file("gradle.properties") << "systemProp.org.gradle.internal.testing.daemon.hang=60000"
            buildFile.text = """
                task hang {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top