Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for getThing (0.29 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    === [4.5] `HttpBuildCache` no longer follows redirects
    
    When connecting to an HTTP build cache backend via `HttpBuildCache`, Gradle does not follow redirects any more, treating them as errors instead.
    Getting a redirect from the build cache backend is mostly a configuration error — using an "http" URL instead of "https" for example — and has negative effects on performance.
    
    [[rel4.4:security_library_upgrades]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    		s.searchAddrBg.StoreMarked(s.freeHWM.addr())
    	}
    	s.freeHWM = minOffAddr
    }
    
    // setEmpty marks that the scavenger has finished looking at ci
    // for now to prevent the scavenger from getting stuck looking
    // at the same chunk.
    //
    // setEmpty may only run concurrently with find.
    func (s *scavengeIndex) setEmpty(ci chunkIdx) {
    	val := s.chunks[ci].load()
    	val.setEmpty()
    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. src/net/http/client_test.go

    				testenv.SkipFlaky(t, 43120)
    			}
    			t.Errorf("error string = %q; missing timeout substring", got)
    		}
    
    		break
    	}
    }
    
    // Client.Timeout firing before getting to the body
    func TestClientTimeout_Headers(t *testing.T) { run(t, testClientTimeout_Headers) }
    func testClientTimeout_Headers(t *testing.T, mode testMode) {
    	donec := make(chan bool, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    	}
    
    	// Ok, we're doing it! Stop everybody else
    	semacquire(&gcsema)
    	semacquire(&worldsema)
    
    	// For stats, check if this GC was forced by the user.
    	// Update it under gcsema to avoid gctrace getting wrong values.
    	work.userForced = trigger.kind == gcTriggerCycle
    
    	trace := traceAcquire()
    	if trace.ok() {
    		trace.GCStart()
    		traceRelease(trace)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers_test.go

    	if !pod5.IsTerminated() {
    		t.Fatalf("unexpected status for pod 5: %#v", pod5)
    	}
    
    	// start three more static pods, kill the previous static pod blocking start,
    	// and simulate the second pod of three (8) getting to run first
    	podWorkers.UpdatePod(UpdatePodOptions{
    		Pod:        newNamedPod("7-static", "test1", "pod1", true),
    		UpdateType: kubetypes.SyncPodUpdate,
    	})
    	podWorkers.UpdatePod(UpdatePodOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    		// Place the hint for user arenas just after the large reservation.
    		//
    		// While this potentially competes with the hint above, in practice we probably
    		// aren't going to be getting this far anyway on 32-bit platforms.
    		userArenaHint := (*arenaHint)(mheap_.arenaHintAlloc.alloc())
    		userArenaHint.addr = p
    		userArenaHint.next, mheap_.userArena.arenaHints = mheap_.userArena.arenaHints, userArenaHint
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    	if ipvs == nil {
    		return fmt.Errorf("Ipvs not supported by the kernel")
    	}
    
    	// Check ipset version
    	versionString, err := ipsetver.GetVersion()
    	if err != nil {
    		return fmt.Errorf("error getting ipset version, error: %v", err)
    	}
    	if !checkMinVersion(versionString) {
    		return fmt.Errorf("ipset version: %s is less than min required version: %s", versionString, MinIPSetCheckVersion)
    	}
    
    	if scheduler == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. pkg/controller/endpoint/endpoints_controller_test.go

    			}
    
    			actualEndpoints, err := client.CoreV1().Endpoints(ns).Get(tCtx, endpoints.Name, metav1.GetOptions{})
    			if err != nil {
    				t.Fatalf("unexpected error getting endpoints: %v", err)
    			}
    
    			actualAnnotation, ok := actualEndpoints.Annotations[v1.EndpointsOverCapacity]
    			if tc.expectedAnnotation {
    				if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    		input: []uint64{
    			3, 0, 500, // hz = 500. Must match the period.
    			4, 0, 70, inlinedCallerStack[0],
    			// Fake frame: add a fake call to
    			// inlinedCallerDump to prevent this sample
    			// from getting merged into above.
    			5, 0, 80, inlinedCallerStack[1], inlinedCallerStack[0],
    		},
    		count: 3,
    		wantLocs: [][]string{
    			{"runtime/pprof.inlinedCalleeDump", "runtime/pprof.inlinedCallerDump"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    	}
    	recordJobPodFailurePolicyActions(jobCtx.job, podFailureCountByPolicyAction)
    
    	jobKey, err := controller.KeyFunc(jobCtx.job)
    	if err != nil {
    		return jobCtx.job, needsFlush, fmt.Errorf("getting job key: %w", err)
    	}
    	var rmErr error
    	if len(podsToRemoveFinalizer) > 0 {
    		var rmSucceded []bool
    		rmSucceded, rmErr = jm.removeTrackingFinalizerFromPods(ctx, jobKey, podsToRemoveFinalizer)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top