Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for executors (0.37 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

              <type>int</type>
              <description>
                The priority of this execution compared to other executions which are bound to the same phase.
                Executions derived from the default lifecycle have a negative priority by default so that they are executed
                before any custom plugin executions.
                @since Maven 4.0.0
              </description>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    		t.Fatalf("Failed to create HTTP request for NewMultipart Request: <ERROR> %v", err)
    	}
    	// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    	// Call the ServeHTTP to executes the registered handler.
    	apiRouter.ServeHTTP(rec, req)
    	// Assert the response code with the expected status.
    	if rec.Code != http.StatusOK {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Result */
        public static final String LABELS_SCRIPT_RESULT = "{labels.scriptResult}";
    
        /** The key of the message: Executor */
        public static final String LABELS_SCRIPT_TYPE = "{labels.scriptType}";
    
        /** The key of the message: Segmentation */
        public static final String LABELS_SEGMENTATION = "{labels.segmentation}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // but not run them.
    //
    // The -r flag causes clean to be applied recursively to all the
    // dependencies of the packages named by the import paths.
    //
    // The -x flag causes clean to print remove commands as it executes them.
    //
    // The -cache flag causes clean to remove the entire go build cache.
    //
    // The -testcache flag causes clean to expire all test results in the
    // go build cache.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    </pre>
    
    <pre>
    if x &gt; max {
    	x = max
    }
    </pre>
    
    <p>
    The expression may be preceded by a simple statement, which
    executes before the expression is evaluated.
    </p>
    
    <pre>
    if x := f(); x &lt; y {
    	return x
    } else if x &gt; z {
    	return z
    } else {
    	return y
    }
    </pre>
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    unhappy at the number of executions the Queen had ordered.
    
      They very soon came upon a Gryphon, lying fast asleep in the
    sun.  (IF you don't know what a Gryphon is, look at the picture.)
    `Up, lazy thing!' said the Queen, `and take this young lady to
    see the Mock Turtle, and to hear his history.  I must go back and
    see after some executions I have ordered'; and she walked off,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  7. src/reflect/value.go

    	Send Value     // value to send (for send)
    }
    
    // Select executes a select operation described by the list of cases.
    // Like the Go select statement, it blocks until at least one of the cases
    // can proceed, makes a uniform pseudo-random choice,
    // and then executes that case. It returns the index of the chosen case
    // and, if that case was a receive operation, the value received and a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    class DependencyInsightReportTaskIntegrationTest extends AbstractIntegrationSpec {
        def jvmVersion = JavaVersion.current().majorVersion
    
        def setup() {
            executer.requireOwnGradleUserHomeDir()
            settingsFile << """
                rootProject.name = 'insight-test'
            """
            new ResolveTestFixture(buildFile).addDefaultVariantDerivationStrategy()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    unhappy at the number of executions the Queen had ordered.
    
      They very soon came upon a Gryphon, lying fast asleep in the
    sun.  (IF you don't know what a Gryphon is, look at the picture.)
    `Up, lazy thing!' said the Queen, `and take this young lady to
    see the Mock Turtle, and to hear his history.  I must go back and
    see after some executions I have ordered'; and she walked off,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.util.internal.VersionNumber
    
    import static org.gradle.testkit.runner.TaskOutcome.FROM_CACHE
    import static org.gradle.testkit.runner.TaskOutcome.NO_SOURCE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
Back to top