Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 486 for injecting (0.14 sec)

  1. src/cmd/go/testdata/script/build_cc_cache_issue64423.txt

    # an arbitrary vendor prefix, which (as of 2023) may be injected
    # by defining CLANG_VENDOR when building clang itself.
    #
    # Since we don't want to actually rebuild the Clang toolchain in
    # this test, we instead simulate it by injecting a fake "clang"
    # binary that runs the real one as a subprocess.
    
    [!cgo] skip
    [short] skip 'builds and links a fake clang binary'
    [!cc:clang] skip 'test is specific to clang version parsing'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:13:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_passes.h

        const mlir::TFL::PassConfig& pass_config,
        mlir::OpPassManager* pass_manager);
    
    // This is the later part of the conversion in isolation. This enables a caller
    // to resume the conversion after injecting more information in the middle of
    // it.
    void AddPostVariableFreezingTFToTFLConversionPasses(
        llvm::StringRef saved_model_dir, const toco::TocoFlags& toco_flags,
        const mlir::TFL::PassConfig& pass_config,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 06:14:07 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/dependencies/index.md

    With the Dependency Injection system, you can also tell **FastAPI** that your *path operation function* also "depends" on something else that should be executed before your *path operation function*, and **FastAPI** will take care of executing it and "injecting" the results.
    
    Other common terms for this same idea of "dependency injection" are:
    
    * resources
    * providers
    * services
    * injectables
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java

        // fully populated Plugin objects, including executions with goals and default configuration taken
        // from the plugin.xml inside a plugin.
        //
        // TODO This whole method could probably removed by injecting lifeCyclePluginAnalyzer straight into client site.
        // TODO But for some reason the whole plexus appcontext refuses to start when I try this.
    
        public Set<Plugin> getPluginsBoundByDefaultToAllLifecycles(String packaging) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/AbstractArtifactRepository.java

         *
         * @param transport the transport used to create the repository accessor
         * @return a dependency injecting instantiator, aware of services we want to expose
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/html/template/doc.go

    such as attribute boundaries and JS and CSS string boundaries."
    
    Code Effect Property:
    "... only code specified by the template author should run as a result of
    injecting the template output into a page and all code specified by the
    template author should run as a result of the same."
    
    Least Surprise Property:
    "A developer (or code reviewer) familiar with HTML, CSS, and JavaScript, who
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    // ratchetingValueValidator represents an invocation of SchemaValidator.ValidateUpdate
    // for specific arguments for `old` and `new`
    //
    // It follows the openapi SchemaValidator down its traversal of the new value
    // by injecting validate.Option into each recursive invocation.
    //
    // A ratchetingValueValidator will be constructed and added to the tree for
    // each explored sub-index and sub-property during validation.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

        llvm::cl::desc("Allow automatic pass through of TF ops (outside the flex "
                       "allowlist) as select Tensorflow ops"),
        llvm::cl::init(false));
    
    // The following approach allows injecting opdefs in addition
    // to those that are already part of the global TF registry  to be linked in
    // prior to importing the graph. The primary goal is for support of custom ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. pkg/scheduler/testing/framework/fake_plugins.go

    	atomic.AddInt32(&pl.NumFilterCalled, 1)
    
    	if returnCode, ok := pl.FailedNodeReturnCodeMap[nodeInfo.Node().Name]; ok {
    		return framework.NewStatus(returnCode, fmt.Sprintf("injecting failure for pod %v", pod.Name))
    	}
    
    	return nil
    }
    
    // NewFakeFilterPlugin initializes a fakeFilterPlugin and returns it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

            plugin.build()
            def buildSrcSrcDir = file("buildSrc/src/main/groovy/org/gradle/test")
    
            // these class names intentionally clash with what we are injecting
    
            buildSrcSrcDir.file("HelloWorldPlugin1.groovy") << """
                package org.gradle.test
    
                import org.gradle.api.Plugin
                import org.gradle.api.Project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top