Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,197 for injects (0.18 sec)

  1. pkg/scheduler/testing/wrappers.go

    	return s
    }
    
    // Exists injects a matchExpression (with an operator Exists) to the inner labelSelector.
    func (s *LabelSelectorWrapper) Exists(k string) *LabelSelectorWrapper {
    	expression := metav1.LabelSelectorRequirement{
    		Key:      k,
    		Operator: metav1.LabelSelectorOpExists,
    	}
    	s.MatchExpressions = append(s.MatchExpressions, expression)
    	return s
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DependencyInjectionUsingClassGeneratorBackedInstantiatorTest.groovy

        }
    
        def "injects service using getter injection"() {
            given:
            services.add(String, "string")
    
            when:
            def result = instantiator.newInstance(HasGetterInjection)
    
            then:
            result.someService == 'string'
        }
    
        def "injects service using abstract getter injection"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedGroovyMetaClassHelper.java

    import static org.gradle.internal.instrumentation.api.types.BytecodeInterceptorFilter.ALL;
    
    /**
     * Injects the logic for Groovy calls instrumentation into the Groovy metaclasses.
     */
    @NonNullApi
    public class InstrumentedGroovyMetaClassHelper {
        /**
         * Should be invoked on an object that a Groovy Closure can dispatch the calls to. Injects the call interception logic into the metaclass of that object.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. pilot/pkg/features/xds.go

    import (
    	"istio.io/istio/pkg/env"
    )
    
    // Define flags that affect XDS config generation here.
    var (
    	// EnableMysqlFilter enables injection of `envoy.filters.network.mysql_proxy` in the filter chain.
    	// Pilot injects this outbound filter if the service port name is `mysql`.
    	EnableMysqlFilter = env.Register(
    		"PILOT_ENABLE_MYSQL_FILTER",
    		false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. samples/grpc-echo/README.md

    # grpc-echo
    
    This sample demonstrates Istio's Proxyless gRPC support with a special injection template `grpc-agent`.
    The template injects the `istio-proxy` sidecar, but the sidecar will only run `pilot-agent` and not envoy.
    
    See the [gRPC xDS feature status](https://github.com/grpc/grpc/blob/master/doc/grpc_xds_features.md) for more
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 20:15:35 UTC 2021
    - 348 bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

         *
         * @param repositories The repositories into which to inject the mirror information, may be {@code null}.
         * @param mirrors The available mirrors, may be {@code null}.
         */
        void injectMirror(List<ArtifactRepository> repositories, List<Mirror> mirrors);
    
        /**
         * Injects the proxy information into the specified repositories. For each repository that is matched by a proxy,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/plugin/LifecycleBindingsInjector.java

        /**
         * Injects plugin executions induced by lifecycle bindings into the specified model. The model has already undergone
         * injection of plugin management so any plugins that are injected by lifecycle bindings and are not already present
         * in the model's plugin section need to be subjected to the model's plugin management.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. pkg/filewatcher/fakefilewatcher.go

    	errors      map[string]chan error
    	changedFunc func(path string, added bool)
    }
    
    // InjectEvent injects an event into the fake file watcher.
    func (w *FakeWatcher) InjectEvent(path string, event fsnotify.Event) {
    	w.Lock()
    	ch, ok := w.events[path]
    	w.Unlock()
    
    	if ok {
    		ch <- event
    	}
    }
    
    // InjectError injects an error into the fake file watcher.
    func (w *FakeWatcher) InjectError(path string, err error) {
    	w.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ParameterKind.java

        }
    
        @Retention(RetentionPolicy.CLASS)
        @Target(ElementType.PARAMETER)
        public @interface VarargParameter {
        }
    
        /**
         * Injects some context from visitor. Not supported for Groovy at the moment.
         *
         * Currently, it's only supported to inject {@link BytecodeInterceptorFilter}.
         */
        @Retention(RetentionPolicy.CLASS)
        @Target(ElementType.PARAMETER)
        public @interface InjectVisitorContext {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/HeaderInjectingPostprocessor.java

    import java.util.Map;
    
    /**
     * Injects static assets for docs
     */
    public class HeaderInjectingPostprocessor extends Postprocessor {
        private final String headerHtml;
    
        HeaderInjectingPostprocessor(Map<String, Object> config, String headerHtml) {
            super(config);
            this.headerHtml = headerHtml;
        }
    
        /**
         * Inject common header before page title.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top