Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 616 for injecting (0.17 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

            StartScriptTemplateBindingFactory.windows(),
            FileCollectionBackedTextResource(temporaryFileProvider, windowsScriptTemplate, StandardCharsets.UTF_8)
        )
    
        /**
         * Modifies the start script injecting -javaagent flags. The start script file is updated in-place by appending Java agent switches to 'DEFAULT_JVM_OPTS' variable declaration.
         */
        private
        fun File.injectAgentOptions(separator: String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:25:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java

     *  </tr>
     *  <tr>
     *      <td>configurator</td>
     *      <td>configurator = "&lt;role-hint&gt;"</td>
     *      <td>No</td>
     *      <td>The configurator type to use when injecting parameter values into this Mojo. The value is normally
     *          deduced from the Mojo's implementation language, but can be specified to allow a custom
     *          ComponentConfigurator implementation to be used.
     *          <br>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

         * create an {@link Action} from the given CLI args, and handles the logic for deciding whether or not to continue processing
         * based on whether the result is a {@link ContinuingAction} or not.  It allows for injecting alternate Creators which
         * won't actually attempt to run a build via the containing class' {@link #createBuildActionFactoryActionCreator(ServiceRegistry, List)}
         * method - this is why this class is not {@code static}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top