Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 73 for pollable (0.26 sec)

  1. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    					RequiredDuringSchedulingIgnoredDuringExecution: antiAffinity,
    				},
    			},
    		},
    	}
    }
    
    func TestRequiredAffinitySingleNode(t *testing.T) {
    	podLabel := map[string]string{"service": "securityscan"}
    	pod := st.MakePod().Labels(podLabel).Node("node1").Obj()
    
    	labels1 := map[string]string{
    		"region": "r1",
    		"zone":   "z11",
    	}
    	podLabel2 := map[string]string{"security": "S1"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  2. fastapi/param_functions.py

                The parameter is available only for compatibility.
                """
            ),
        ] = ...,
        *,
        default_factory: Annotated[
            Union[Callable[[], Any], None],
            Doc(
                """
                A callable to generate the default value.
    
                This doesn't affect `Path` parameters as the value is always required.
                The parameter is available only for compatibility.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            0 * _
    
            and:
            result == someValue()
            present
        }
    
        def "replaces provider with fixed value on next query of nullable value when value implicitly finalized"() {
            def property = propertyWithNoValue()
            def function = Mock(Callable)
            def provider = new DefaultProvider<T>(function)
    
            given:
            property.set(provider)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

                @Provides
                Integer createInteger(Callable<Integer> factory) {
                    return factory.call()
                }
    
                @Provides
                String createString(Callable<String> factory) {
                    return factory.call()
                }
    
                @Provides
                Callable<Integer> createIntFactory() {
                    return { 123 }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            Supplier<T> s = asSupplier(supplier);
            if (cache == null) {
                return s.get();
            } else {
                return cache.computeIfAbsent(groupId, artifactId, version, tag, s);
            }
        }
    
        private static <T> T cache(ModelCache cache, Source source, String tag, Callable<T> supplier) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                Callable<T> supplier) {
            Supplier<T> s = asSupplier(supplier);
            if (cache == null) {
                return s.get();
            } else {
                return cache.computeIfAbsent(groupId, artifactId, version, tag.getName(), s);
            }
        }
    
        private static <T> T cache(ModelCache cache, Source source, ModelCacheTag<T> tag, Callable<T> supplier) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

     title: hello
     description: world
     nullable: true
    allOf:
    - properties:
       foo:
         type: string
         additionalProperties: true
         title: hello
         description: world
         nullable: true
    anyOf:
    - items:
       type: string
       additionalProperties: true
       title: hello
       description: world
       nullable: true
    oneOf:
    - properties:
       foo:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

    import org.gradle.internal.Cast;
    import org.gradle.internal.Factory;
    import org.gradle.internal.concurrent.CompositeStoppable;
    import org.gradle.internal.concurrent.Stoppable;
    
    import javax.annotation.Nullable;
    import java.io.Closeable;
    import java.lang.annotation.Annotation;
    import java.lang.reflect.Constructor;
    import java.lang.reflect.InvocationTargetException;
    import java.lang.reflect.Member;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

    import org.gradle.internal.reflect.PropertyDetails;
    import org.gradle.internal.service.ServiceLookup;
    import org.gradle.internal.service.ServiceRegistry;
    
    import javax.annotation.Nullable;
    import javax.inject.Inject;
    import java.lang.annotation.Annotation;
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Field;
    import java.lang.reflect.InvocationTargetException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        private final CountDownLatch returned = new CountDownLatch(1);
        private Object proxy;
    
        @SuppressWarnings("unchecked") // proxy for a generic class
        <V> Callable<V> waitFor(Callable<V> callable) {
          return waitFor(callable, Callable.class);
        }
    
        @SuppressWarnings("unchecked") // proxy for a generic class
        <V> ClosingCallable<V> waitFor(ClosingCallable<V> closingCallable) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top