Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 833 for Discover (0.26 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            }
    
            @Override
            void attachToCycle(List<String> displayValue) {
                displayValue.add(getPath().toString());
            }
        }
    
        private class Discover extends ModelNodeGoal {
            public Discover(ModelPath path) {
                super(path);
            }
    
            @Override
            public boolean doIsAchieved() {
                return node.isAtLeast(Discovered);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/NativeToolChainDiscoveryIntegrationTest.groovy

        def setup() {
            // Discard init script content generated by superclass
            initScript.text = ""
        }
    
        @ToBeFixedForConfigurationCache
        def "can discover tool chain in environment"() {
            given:
            toolChain.initialiseEnvironment()
    
            and:
            buildFile << """
    apply plugin: 'cpp'
    model {
        toolChains {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/VisitForInstrumentation.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * A method that can be used to visit classes for an instrumentation from other projects.
     * TODO: We should discover classes to visit automatically.
     */
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.TYPE})
    public @interface VisitForInstrumentation {
        Class<?>[] value();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/MethodMixIn.java

     *
     * Note that when a type implements this interface, dynamic Groovy dispatch will not be used to discover opaque methods. That is, methods such as methodMissing() will be ignored.
     */
    public interface MethodMixIn {
        MethodAccess getAdditionalMethods();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/Injector.java

    import org.apache.maven.di.impl.InjectorImpl;
    
    public interface Injector {
    
        //
        // Builder API
        //
    
        static Injector create() {
            return new InjectorImpl();
        }
    
        Injector discover(ClassLoader classLoader);
    
        Injector bindScope(Class<? extends Annotation> scopeAnnotation, Scope scope);
    
        Injector bindScope(Class<? extends Annotation> scopeAnnotation, Supplier<Scope> scope);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/options/agent.go

    		EnvoyPrometheusPort:         envoyPrometheusPortEnv,
    		MinimumDrainDuration:        minimumDrainDurationEnv,
    		ExitOnZeroActiveConnections: exitOnZeroActiveConnectionsEnv,
    		Platform:                    platform.Discover(proxy.SupportsIPv6()),
    		GRPCBootstrapPath:           grpcBootstrapEnv,
    		DisableEnvoy:                disableEnvoyEnv,
    		ProxyXDSDebugViaAgent:       proxyXDSDebugViaAgent,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/Dockerfile

    COPY static /opt/microservices/static
    COPY requirements.txt /opt/microservices/
    
    ARG flood_factor
    ENV FLOOD_FACTOR ${flood_factor:-0}
    
    EXPOSE 9080
    WORKDIR /opt/microservices
    RUN python -m unittest discover
    
    CMD ["gunicorn", "-b", "[::]:9080", "productpage:app", "-w", "8", "--keep-alive", "2", "-k", "gevent"]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher.go

    func (w *Watcher) Start(stopCh <-chan struct{}) error {
    	klog.V(2).InfoS("Plugin Watcher Start", "path", w.path)
    
    	// Creating the directory to be watched if it doesn't exist yet,
    	// and walks through the directory to discover the existing plugins.
    	if err := w.init(); err != nil {
    		return err
    	}
    
    	fsWatcher, err := fsnotify.NewWatcher()
    	if err != nil {
    		return fmt.Errorf("failed to start plugin fsWatcher, err: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:26:37 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. pkg/controller/resourcequota/resource_quota_controller.go

    		)
    
    		rq.quotaMonitor = qm
    
    		// do initial quota monitor setup.  If we have a discovery failure here, it's ok. We'll discover more resources when a later sync happens.
    		resources, err := GetQuotableResources(options.DiscoveryFunc)
    		if discovery.IsGroupDiscoveryFailedError(err) {
    			utilruntime.HandleError(fmt.Errorf("initial discovery check failure, continuing and counting on future sync update: %v", err))
    		} else if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/lex/slice.go

    	s.base = base
    }
    
    func (s *Slice) Line() int {
    	return s.line
    }
    
    func (s *Slice) Col() int {
    	// TODO: Col is only called when defining a macro and all it cares about is increasing
    	// position to discover whether there is a blank before the parenthesis.
    	// We only get here if defining a macro inside a macro.
    	// This imperfect implementation means we cannot tell the difference between
    	//	#define A #define B(x) x
    	// and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 29 22:49:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top