Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 161 for injecting (0.12 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/DefaultTestExecutionResult.groovy

            return firstResult
        }
    
        // In JUnit 3/4 test case name is exactly the method name
        // In JUnit 5 test method injection is allowed: http://junit.org/junit5/docs/current/user-guide/#writing-tests-dependency-injection
        // So test case name is [method name + parameters]
        static String removeParentheses(String testName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. docs/de/docs/alternatives.md

    Es erreicht etwas Ähnliches wie Flask-apispec.
    
    Es verfügt über ein integriertes Dependency Injection System, welches von Angular 2 inspiriert ist. Erfordert ein Vorab-Registrieren der „Injectables“ (wie alle anderen Dependency Injection Systeme, welche ich kenne), sodass der Code ausschweifender wird und es mehr Codeverdoppelung gibt.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:28 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-ingress/values.yaml

          podAntiAffinityLabelSelector: []
          podAntiAffinityTermLabelSelector: []
    
          # whether to run the gateway in a privileged container
          runAsRoot: false
    
          # The injection template to use for the gateway. If not set, no injection will be performed.
          injectionTemplate: ""
    
      # Revision is set as 'version' label and part of the resource names when installing multiple control planes.
      revision: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

         *
         * <p>An @Inject annotation is required on any constructor that accepts parameters because JSR-330 semantics for dependency injection are used. In addition to those parameters provided as an argument to this method, the following services are also available for injection:</p>
         *
         * <ul>
         *     <li>{@link ObjectFactory}.</li>
         *     <li>{@link org.gradle.api.file.ProjectLayout}.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/values.yaml

          podAntiAffinityLabelSelector: []
          podAntiAffinityTermLabelSelector: []
    
          # whether to run the gateway in a privileged container
          runAsRoot: false
    
          # The injection template to use for the gateway. If not set, no injection will be performed.
          injectionTemplate: ""
    
      # Revision is set as 'version' label and part of the resource names when installing multiple control planes.
      revision: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let summary = "Converts stablehlo.convolution op of NCHW format to -> NHWC.";
      let description = [{
        Matches `ConvolutionOp`s with NCHW format and converts it to NHWC
        format by inserting `TransposeOp`s to input, filter, and output tensors.
        In terms of dimension numbers, this matches
        `[b, f, 0, 1]x[o, i, 0, 1]->[b, f, 0, 1]` format and converts it to
        `[b, 0, 1, f]x[0, 1, i, o]->[b, 0, 1, f]` format.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/config.go

    	for _, s := range c.Subsets {
    		if s.Annotations == nil || s.Annotations[annotation.SidecarInject.Name] != "false" {
    			// Sidecar injection is enabled - it's not naked.
    			return false
    		}
    	}
    	// All subsets were annotated indicating no sidecar injection.
    	return true
    }
    
    func (c Config) IsProxylessGRPC() bool {
    	// TODO make these check if any subset has a matching annotation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. pkg/controller/endpointslice/endpointslice_controller.go

    	// Added as a member to the struct to allow injection for testing.
    	servicesSynced cache.InformerSynced
    
    	// podLister is able to list/get pods and is populated by the
    	// shared informer passed to NewController
    	podLister corelisters.PodLister
    	// podsSynced returns true if the pod shared informer has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	podsSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java

    /**
     * A factory to create model builder instances when no dependency injection is available. Note: This class is
     * only meant as a utility for developers that want to employ the model builder outside the Maven build system, Maven
     * plugins should always acquire model builder instances via dependency injection. Developers might want to subclass
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. docs/tr/docs/features.md

    ### Dependency injection
    
    FastAPI'ın inanılmaz derecede kullanımı kolay, fakat inanılmaz derecede güçlü <abbr title='"components", "resources", "services", "providers" olarak da bilinen'><strong>Dependency Injection </strong></abbr> sistemi var.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top