Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for workerCh (0.26 sec)

  1. pkg/controller/endpoint/endpoints_controller_test.go

    			go endpoints.Run(tCtx, 1)
    
    			// cache.WaitForNamedCacheSync has a 100ms poll period, and the endpoints worker has a 10ms period.
    			// To ensure we get all updates, including unexpected ones, we need to wait at least as long as
    			// a single cache sync period and worker period, with some fudge room.
    			time.Sleep(150 * time.Millisecond)
    			if test.shouldUpdateEndpoints {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. pkg/controller/disruption/disruption_test.go

    				}
    				diff = cmp.Diff(tc.wantConditions, pod.Status.Conditions, cmpopts.IgnoreFields(v1.PodCondition{}, "LastTransitionTime"))
    				return diff == "", nil
    			}); err != nil {
    				t.Fatalf("Failed waiting for worker to sync: %v, (-want,+got):\n%s", err, diff)
    			}
    		})
    	}
    }
    
    func TestKeepExistingPDBConditionDuringSync(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

        # for the bug where the logging agent cannot start up if the file is
        # corrupted.
        Remove-Item `
          -Force `
          -ErrorAction Ignore `
          ("$STACKDRIVER_ROOT\LoggingAgent\Main\pos\winevtlog.pos\worker0\" +
           "storage.json")
        Log-Output ("Skip: Stackdriver logging agent is already installed")
        return
      }
    
      if (IsLoggingAgentInstalled) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. src/os/os_test.go

    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			<-hold
    			err := RemoveAll(root)
    			if err != nil {
    				t.Errorf("unexpected error: %T, %q", err, err)
    			}
    		}()
    	}
    	close(hold) // let workers race to remove root
    	wg.Wait()
    }
    
    // Test that reading from a pipe doesn't use up a thread.
    func TestPipeThreads(t *testing.T) {
    	switch runtime.GOOS {
    	case "illumos", "solaris":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    		// time so we can track it for the GC CPU limiter.
    		//
    		// Limiter event tracking might be disabled if we end up here
    		// while on a mark worker.
    		start := nanotime()
    		track := pp.limiterEvent.start(limiterEventScavengeAssist, start)
    
    		// Scavenge, but back out if the limiter turns on.
    		released := h.pages.scavenge(bytesToScavenge, func() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top