Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 944 for nothings (0.26 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. 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)
  3. 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)
  4. src/cmd/internal/obj/pcln.go

    		//   From.Offset is table ID
    		//   To.Offset is data
    		if p.As == APCDATA && p.From.Offset >= int64(npcdata) && p.To.Offset != -1 { // ignore -1 as we start at -1, if we only see -1, nothing changed
    			npcdata = int(p.From.Offset + 1)
    		}
    		// Find the highest ID of any FUNCDATA table.
    		//   From.Offset is table ID
    		if p.As == AFUNCDATA && p.From.Offset >= int64(nfuncdata) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/ipam/range_allocator_test.go

    			t.Fatalf("%v: timeout while waiting for Node update: %v", tc.description, err)
    		}
    
    		if len(tc.expectedAllocatedCIDR) == 0 {
    			// nothing further expected
    			return
    		}
    		for _, updatedNode := range tc.fakeNodeHandler.GetUpdatedNodesCopy() {
    			if len(updatedNode.Spec.PodCIDRs) == 0 {
    				continue // not assigned yet
    			}
    			//match
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

         * <p>Look in the methodMap for an entry. If found,
         * it'll either be a CACHE_MISS, in which case we
         * simply give up, or it'll be a Method, in which
         * case, we return it.</p>
         * <p>If nothing is found, then we must actually go
         * and introspect the method from the MethodMap.</p>
         * @param name Method name.
         * @param params Method parameters.
         * @return The found method.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top