Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,119 for nothings (0.28 sec)

  1. pkg/util/taints/taints_test.go

    	testcases := []struct {
    		name           string
    		fn             func(t *v1.Taint) bool
    		expectedTaints []v1.Taint
    	}{
    		{
    			name: "Filter out nothing",
    			fn: func(t *v1.Taint) bool {
    				if t.Key == v1.TaintNodeUnschedulable {
    					return true
    				}
    				return false
    			},
    			expectedTaints: []v1.Taint{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  2. src/runtime/trace.go

    	// Prevent sysmon from running any code that could generate events.
    	lock(&sched.sysmonlock)
    
    	// Grab the minimum page heap address. All Ps are stopped, so it's safe to read this since
    	// nothing can allocate heap memory.
    	trace.minPageHeapAddr = uint64(mheap_.pages.inUse.ranges[0].base.addr())
    
    	// Reset mSyscallID on all Ps while we have them stationary and the trace is disabled.
    	for _, pp := range allp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            "no conventions, top-level property is set"        | ""                                 | setId("test")         | """id = test\nbar = bar"""
            "everything has convention and nothing set"        | setAll("convention", "convention") | ""                    | """id = convention\nbar = convention"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. pkg/kube/krt/README.md

    * `FilterSelects(labels)`: filters to only objects that **select** these labels. An empty selector matches everything.
    * `FilterSelectsNonEmpty(labels)`: filters to only objects that **select** these labels. An empty selector matches nothing.
    * `FilterGeneric(func(any) bool)`: filters by an arbitrary function.
    
    Note that most filters may only be used if the objects being `Fetch`ed implement appropriate functions to extract the fields filtered against.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/QueuesTest.java

        assertNull(q.peek());
        assertInterruptibleDrained(q);
        assertUninterruptibleDrained(q);
      }
    
      private void assertInterruptibleDrained(BlockingQueue<Object> q) {
        // nothing to drain, thus this should wait doing nothing
        try {
          assertEquals(0, Queues.drain(q, ImmutableList.of(), 0, 10, MILLISECONDS));
        } catch (InterruptedException e) {
          throw new AssertionError();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/QueuesTest.java

        assertNull(q.peek());
        assertInterruptibleDrained(q);
        assertUninterruptibleDrained(q);
      }
    
      private void assertInterruptibleDrained(BlockingQueue<Object> q) {
        // nothing to drain, thus this should wait doing nothing
        try {
          assertEquals(0, Queues.drain(q, ImmutableList.of(), 0, 10, MILLISECONDS));
        } catch (InterruptedException e) {
          throw new AssertionError();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/ObjectExtensionInstantiationIntegrationTest.groovy

            buildFile """
                class Things {
                    class Thing { }
                }
    
                extensions.create("thing", Things.Thing, "a")
            """
    
            expect:
            fails()
            failure.assertHasCause("Could not create an instance of type Things\$Thing.")
            failure.assertHasCause("Class Things.Thing is a non-static inner class.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 16.9K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            source("class A { }")
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("A")
            outputs.hasFiles(file("A.class"), file("B.class"))
        }
    
        def "nothing is recompiled after a compile failure when file is reverted"() {
            source("class A {}", "class B {}")
            outputs.snapshot { run language.compileTaskName }
            source("class A { garbage }")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/hash/MacHashFunctionTest.java

        checkSha1("b617318655057264e28bc0b6fb378c8ef146be00", key, data);
      }
    
      public void testRfc2202_hmacSha1_case2() {
        byte[] key = "Jefe".getBytes(UTF_8);
        String data = "what do ya want for nothing?";
    
        checkSha1("effcdf6ae5eb2fa2d27416d5f184df9c259a7c79", key, data);
      }
    
      public void testRfc2202_hmacSha1_case3() {
        byte[] key = fillByteArray(20, 0xaa);
        byte[] data = fillByteArray(50, 0xdd);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. pkg/controller/job/success_policy_test.go

    		},
    		"successPolicy is null": {
    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{{0, 0}},
    		},
    		"any rules are nothing": {
    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{{0, 0}},
    			successPolicy:          &batch.SuccessPolicy{Rules: []batch.SuccessPolicyRule{}},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top