Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 77 for expectActions (0.74 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. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                }
            """
    
            expect:
            fails("broken")
    
            // The failure is currently very specific to the annotation type
            // TODO  - fail earlier and add some expectations here
    
            fails("broken")
    
            where:
            annotationType << [
                Input,
                InputFile,
                InputDirectory,
                InputFiles,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  6. guava/src/com/google/common/reflect/TypeToken.java

              canonicalizeWildcardsInType(((GenericArrayType) type).getGenericComponentType()));
        }
        return type;
      }
    
      // WARNING: the returned type may have empty upper bounds, which may violate common expectations
      // by user code or even some of our own code. It's fine for the purpose of checking subtypes.
      // Just don't ever let the user access it.
      private static WildcardType canonicalizeWildcardType(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/trace_viewer_full.html

    collectUnassociatedEvents_(expectations){const vacuumUEs=[];for(const expectation of expectations){if(expectation instanceof tr.model.um.IdleExpectation||expectation instanceof tr.model.um.LoadExpectation||expectation instanceof tr.model...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  8. 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)
  9. android/guava/src/com/google/common/reflect/TypeToken.java

              canonicalizeWildcardsInType(((GenericArrayType) type).getGenericComponentType()));
        }
        return type;
      }
    
      // WARNING: the returned type may have empty upper bounds, which may violate common expectations
      // by user code or even some of our own code. It's fine for the purpose of checking subtypes.
      // Just don't ever let the user access it.
      private static WildcardType canonicalizeWildcardType(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

      out of the compiler and hopefully mention "name".
    */
    #define __cgo_compile_assert_eq(x, y, name) typedef char name[(x-y)*(x-y)*-2UL+1UL];
    
    /* Check at compile time that the sizes we use match our expectations. */
    #define __cgo_size_assert(t, n) __cgo_compile_assert_eq(sizeof(t), (size_t)n, _cgo_sizeof_##t##_is_not_##n)
    
    __cgo_size_assert(char, 1)
    __cgo_size_assert(short, 2)
    __cgo_size_assert(int, 4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top