Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 351 for injecting (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_configuration_and_execution.adoc

    Coupling during configuration can result in flawed build outcomes when using 'configuration on demand', while coupling during execution can affect parallel execution.
    
    One common source of coupling is configuration injection, such as using `allprojects{}` or `subprojects{}` in build scripts.
    
    To avoid coupling issues, it's recommended to:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 21:08:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. istioctl/pkg/authz/authz.go

    		Short: "Check AuthorizationPolicy applied in the pod.",
    		Long: `Check prints the AuthorizationPolicy applied to a pod by directly checking
    the Envoy configuration of the pod. The command is especially useful for inspecting
    the policy propagation from Istiod to Envoy and the final AuthorizationPolicy list merged
    from multiple sources (mesh-level, namespace-level and workload-level).
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemUtils.java

     * assist those clients that employ the repository system outside of an IoC container, Maven plugins should instead
     * always use regular dependency injection to acquire the repository system.
     *
     * @deprecated See {@link MavenSessionBuilderSupplier}
     */
    @Deprecated
    public final class MavenRepositorySystemUtils {
    
        private MavenRepositorySystemUtils() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 09:51:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. tests/integration/pilot/revisioned_upgrade_test.go

    				Name: "http",
    			},
    		},
    		Interval: callInterval,
    	}).Start()
    
    	if err := enableDefaultInjection(revisionedNamespace); err != nil {
    		t.Fatalf("could not relabel namespace to enable default injection: %v", err)
    	}
    
    	log.Infof("rolling out echo workloads for service %q", revisionedInstance.Config().Service)
    	if err := revisionedInstance.Restart(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemDiagnosticsFactory.java

         */
        ProblemStream newUnlimitedStream();
    
        /**
         * Returns diagnostics based on given exception. Does not use any state from the calling thread.
         *
         * <p>This method is intended to be used for inspecting exceptions that may have been thrown in some other context, such as in a different thread or process.</p>
         */
        ProblemDiagnostics forException(Throwable exception);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/ImplicitImports.kt

            listOf(
                "org.gradle.kotlin.dsl.*",
                // TODO: let this be contributed by :plugins
                "org.gradle.kotlin.dsl.plugins.dsl.*",
                // TODO: infer list of types below at build time by inspecting the Gradle API
                "java.util.concurrent.Callable",
                "java.util.concurrent.TimeUnit",
                "java.math.BigDecimal",
                "java.math.BigInteger",
                "java.io.File",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/main.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/security/pkg/nodeagent/sds"
    )
    
    // TODO: get the config and bootstrap from istiod, by passing the env
    
    // Use env variables - from injection, k8s and local namespace config map.
    // No CLI parameters.
    func main() {
    	log.EnableKlogWithCobra()
    	rootCmd := app.NewRootCommand(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        }
    
        def "inserting into an undefined property is undefined-safe"() {
            given:
            property.set((Map) null)
            property.insert('k4', '4')
    
            expect:
            assertValueIs(['k4': '4'])
        }
    
        def "inserting after putting an undefined element provider is undefined-safe"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/api/services/model/DependencyManagementInjector.java

    package org.apache.maven.api.services.model;
    
    import org.apache.maven.api.model.Model;
    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.ModelProblemCollector;
    
    /**
     * Handles injection of dependency management into the model.
     *
     */
    public interface DependencyManagementInjector {
    
        /**
         * Merges default values from the dependency management section of the given model into itself.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. tests/integration/pilot/proxyconfig/proxyconfig_test.go

    				pcAnnotation string
    				// service, echo service to use for this subtest
    				service string
    				// proxyconfig resources to apply
    				configs []proxyConfigInstance
    				// expected environment variables post-injection
    				expected map[string]string
    			}{
    				{
    					"default config maintained",
    					"",
    					"",
    					[]proxyConfigInstance{},
    					map[string]string{
    						"A": "1",
    						"B": "2",
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top