Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for getThing (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cluster/gce/windows/k8s-node-setup.psm1

      # F1020 23:08:52.000083    9136 server.go:361] unable to load in-cluster
      # configuration, KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT must be
      # defined
      # TODO(pjh): still getting errors like these in kube-proxy log:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    		// There are two user-visible effects of this change.
    		// First, you can actually run 'go test' in directories that
    		// have names that Windows thinks are installer-like,
    		// without getting a dialog box asking for more permissions.
    		// Second, in the Windows process listing during go test,
    		// the test shows up as test.test.exe, not pkgname.test.exe.
    		// That second one is a drawback, but it seems a small
    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/net/http/transport.go

    				return
    			}
    		case <-pc.closech:
    			return
    		}
    	}
    }
    
    // maxWriteWaitBeforeConnReuse is how long the a Transport RoundTrip
    // will wait to see the Request's Body.Write result after getting a
    // response from the server. See comments in (*persistConn).wroteRequest.
    //
    // In tests, we set this to a large value to avoid flakiness from inconsistent
    // recycling of connections.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top