Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 140 for injecting (0.31 sec)

  1. 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)
  2. 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)
  3. maven-api-impl/src/main/java/org/apache/maven/api/services/model/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: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top