Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 403 for Discover (0.39 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/testdata/script/vet_flags.txt

    # enabled via GOFLAGS.
    env GOFLAGS='-tags=buggy -printf'
    ! go vet -unsafeptr
    stderr 'possible Printf formatting directive'
    
    # Analyzer flags don't exist unless we're running 'go vet',
    # and we shouldn't run the vet tool to discover them otherwise.
    # (Maybe someday we'll hard-code the analyzer flags for the default vet
    # tool to make this work, but not right now.)
    env GOFLAGS='-unsafeptr'
    ! go list .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelMapNodeInitializerExtractionStrategy.java

                return ImmutableSetMultimap.<ModelActionRole, ModelAction>builder()
                    .put(ModelActionRole.Discover, AddProjectionsAction.of(subject, descriptor,
                        ModelMapModelProjection.managed(schema.getType(), schema.getElementType(), ChildNodeInitializerStrategyAccessors.fromPrivateData())
                    ))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelActionRole.java

    /**
     * A hard-coded sequence of model actions that can be applied to a model element.
     *
     * <p>This is pretty much a placeholder for something more descriptive.
     */
    public enum ModelActionRole {
        Discover(ModelNode.State.Discovered, false), // Defines all projections for the node
        Create(ModelNode.State.Created, false), // Initializes the node
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/pluginwatcher/README.md

    It discovers plugins by monitoring inotify events under the directory returned by
    kubelet.getPluginsDir(). We will refer to this directory as PluginsDir.
    
    Plugins are expected to implement the gRPC registration service specified in
    pkg/kubelet/apis/pluginregistration/v*/api.proto.
    
    ## Plugin Discovery
    
    The pluginwatcher service will discover plugins in the PluginDir when they
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:00:59 UTC 2019
    - 3.6K bytes
    - Viewed (0)
Back to top