Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for expectActions (0.43 sec)

  1. src/runtime/os_linux.go

    	// progress and e.g., see state old -> new -> old -> new.
    	//
    	// N.B. Internally, this function does not depend on STW to
    	// successfully change every thread. It is only needed for user
    	// expectations, per above.
    	stw := stopTheWorld(stwAllThreadsSyscall)
    
    	// This function depends on several properties:
    	//
    	// 1. All OS threads that already exist are associated with an M in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2.go

    			jobsToBeReconciled = append(jobsToBeReconciled, job)
    		}
    	}
    	return jobsToBeReconciled, nil
    }
    
    // When a job is created, enqueue the controller that manages it and update it's expectations.
    func (jm *ControllerV2) addJob(obj interface{}) {
    	job := obj.(*batchv1.Job)
    	if job.DeletionTimestamp != nil {
    		// on a restart of the controller, it's possible a new job shows up in a state that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. pkg/scheduler/scheduler_test.go

    				fwk.IterateOverWaitingPods(func(pod framework.WaitingPod) {
    					actualPodNamesInWaitingPods.Insert(pod.GetPod().Name)
    				})
    				// Validate the name of pods in waitingPods matches expectations.
    				if actualPodNamesInWaitingPods.Len() != len(tc.expectPodNamesInWaitingPods) ||
    					!actualPodNamesInWaitingPods.HasAll(tc.expectPodNamesInWaitingPods...) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  4. src/net/http/cookiejar/jar_test.go

    				v = `"` + v + `"`
    			}
    			cs = append(cs, cookie.Name+"="+v)
    		}
    	}
    	slices.Sort(cs)
    	got := strings.Join(cs, " ")
    
    	// Make sure jar content matches our expectations.
    	if got != test.content {
    		t.Errorf("Test %q Content\ngot  %q\nwant %q",
    			test.description, got, test.content)
    	}
    
    	// Test different calls to Cookies.
    	for i, query := range test.queries {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. src/runtime/signal_unix.go

    		// the rest of a normal C runtime. When the go runtime
    		// blocks...unblocks signals, temporarily, the blocked
    		// interval of time is generally very short. As such,
    		// these expectations of *libc code are mostly met by
    		// the combined go+cgo system of threads. However,
    		// when go causes a thread to exit, via a return from
    		// mstart(), the combined runtime can deadlock if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top