Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 281 for injecting (0.25 sec)

  1. pkg/test/framework/components/echo/config/param/wellknown.go

    const (
    	// From is the template parameter used for injecting the source of a call. It will be of type echo.Caller,
    	// which is generally either of type echo.Instance or istio.Ingress (for ingress-based tests).
    	From WellKnown = "From"
    
    	// To is the template parameter used for injecting the echo.Target of a call.
    	To WellKnown = "To"
    
    	// Namespace is the template parameter used for injecting the target namespace.Instance of the applied config.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 20 21:58:21 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/MetadataResolutionContext.java

         * The cache policy of a repository
         *
         * @return the cache policy
         */
        CachePolicy getCachePolicy();
    
        /**
         * Provides an injecting instantiator, giving access to services potentially contextual to a repository.
         *
         * @return a injecting instantiator
         */
        Instantiator getInjectingInstantiator();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileInjector.java

    import org.apache.maven.model.building.ModelProblemCollector;
    
    /**
     * Handles profile injection into the model.
     *
     */
    public interface ProfileInjector {
    
        /**
         * Merges values from the specified profile into the given model. Implementations are expected to keep the profile
         * and model completely decoupled by injecting deep copies rather than the original objects from the profile.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileInjector.java

    import org.apache.maven.api.services.ModelProblemCollector;
    
    /**
     * Handles profile injection into the model.
     *
     */
    public interface ProfileInjector {
    
        /**
         * Merges values from the specified profile into the given model. Implementations are expected to keep the profile
         * and model completely decoupled by injecting deep copies rather than the original objects from the profile.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. releasenotes/notes/43433.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 33237
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 26 23:12:13 UTC 2023
    - 221 bytes
    - Viewed (0)
  6. pilot/test/xdstest/grpc.go

    	if w.send > 0 {
    		sleep.UntilContext(w.Context(), w.send)
    		log.Infof("delayed send for %v", w.send)
    	}
    	return w.ClientStream.SendMsg(m)
    }
    
    // SlowClientInterceptor is an interceptor that allows injecting delays on Send and Recv
    func SlowClientInterceptor(recv, send time.Duration) grpc.StreamClientInterceptor {
    	return func(ctx context.Context, desc *grpc.StreamDesc, cc *grpc.ClientConn,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrSourceDirectorySet.java

     */
    
    package org.gradle.api.plugins.antlr;
    
    import org.gradle.api.file.SourceDirectorySet;
    
    /**
     * Contract for a Gradle extension that acts as a handler for what I call a virtual directory mapping,
     * injecting a virtual directory named 'antlr' into the project's various {@link org.gradle.api.tasks.SourceSet source
     * sets}.
     *
     * @since 7.1
     */
    public interface AntlrSourceDirectorySet extends SourceDirectorySet {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. test/maymorestack.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test the maymorestack testing hook by injecting a hook that counts
    // how many times it is called and checking that count.
    
    package main
    
    import "runtime"
    
    var count uint32
    
    //go:nosplit
    func mayMoreStack() {
    	count++
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 05 00:52:06 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/InheritanceAssembler.java

     */
    public interface InheritanceAssembler {
    
        /**
         * Merges values from the specified parent model into the given child model. Implementations are expected to keep
         * parent and child completely decoupled by injecting deep copies of objects into the child rather than the original
         * objects from the parent.
         *
         * @param child The child model into which to merge the values inherited from the parent, must not be
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/injection/injection.go

    )
    
    // Analyzer checks conditions related to Istio sidecar injection.
    type Analyzer struct{}
    
    var _ analysis.Analyzer = &Analyzer{}
    
    // We assume that enablement is via an istio-injection=enabled or istio.io/rev namespace label
    // In theory, there can be alternatives using Mutatingwebhookconfiguration, but they're very uncommon
    // See https://istio.io/docs/ops/troubleshooting/injection/ for more info.
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top