Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for execution (0.39 sec)

  1. .teamcity/test-buckets.json

    					"core",
    					"core-api",
    					"declarative-dsl-core",
    					"declarative-dsl-provider",
    					"dependency-management",
    					"diagnostics",
    					"ear",
    					"enterprise",
    					"execution",
    					"execution-e2e-tests",
    					"file-collections",
    					"file-watching",
    					"ide",
    					"ide-plugins",
    					"integ-test",
    					"internal-integ-testing",
    					"internal-performance-testing",
    Json
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed May 01 00:36:47 GMT 2024
    - 50.1K bytes
    - Viewed (0)
  2. .bazelrc

    # END TF TEST SUITE OPTIONS
    
    # START CROSS-COMPILE CONFIGS
    # Set execution platform to Linux x86
    # Note: Lot of the "host_" flags such as "host_cpu" and "host_crosstool_top"
    # flags seem to be actually used to specify the execution platform details. It
    # seems it is this way because these flags are old and predate the distinction
    # between host and execution platform.
    build:cross_compile_base --host_cpu=k8
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 52.6K bytes
    - Viewed (2)
  3. android/guava/src/com/google/common/util/concurrent/Futures.java

        executor.execute(task);
        return task;
      }
    
      /**
       * Executes {@code runnable} on the specified {@code executor}, returning a {@code Future} that
       * will complete after execution.
       *
       * @throws RejectedExecutionException if the task cannot be scheduled for execution
       * @since 28.2
       */
      public static ListenableFuture<@Nullable Void> submit(Runnable runnable, Executor executor) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("b", pom.getValue("build/plugins[1]/executions[1]/goals[1]"));
            assertEquals("a", pom.getValue("build/plugins[1]/executions[1]/goals[2]"));
            assertEquals("d", pom.getValue("build/plugins[1]/executions[1]/goals[3]"));
            assertEquals("c", pom.getValue("build/plugins[1]/executions[1]/goals[4]"));
            assertEquals("e", pom.getValue("build/plugins[1]/executions[1]/goals[5]"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                        if (executionId != null) {
                            for (PluginExecution execution : plugin.getExecutions()) {
                                if (executionId.equals(execution.getId())) {
                                    // NOTE: The PluginConfigurationExpander already merged the plugin-level config in
                                    dom = (Xpp3Dom) execution.getConfiguration();
                                    break;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Preconditions.java

     * correctly (that is, whether its <i>preconditions</i> were met).
     *
     * <p>If the precondition is not met, the {@code Preconditions} method throws an unchecked exception
     * of a specified type, which helps the method in which the exception was thrown communicate that
     * its caller has made a mistake. This allows constructs such as
     *
     * <pre>{@code
     * public static double sqrt(double value) {
     *   if (value < 0) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Apr 11 11:52:14 GMT 2024
    - 52.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Preconditions.java

     * correctly (that is, whether its <i>preconditions</i> were met).
     *
     * <p>If the precondition is not met, the {@code Preconditions} method throws an unchecked exception
     * of a specified type, which helps the method in which the exception was thrown communicate that
     * its caller has made a mistake. This allows constructs such as
     *
     * <pre>{@code
     * public static double sqrt(double value) {
     *   if (value < 0) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Feb 14 15:46:55 GMT 2024
    - 52.9K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                Severity.ERROR,
                                Version.V20,
                                prefix + prefix2 + "[" + plugin.getKey() + "].executions.execution.id",
                                null,
                                "must be unique but found duplicate execution with id " + exec.getId(),
                                exec);
                    }
                }
            }
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.h

    // to this graph.
    
    // --------------------------------------------------------------------------
    // API for driving Graph execution.
    
    typedef struct TF_Session TF_Session;
    
    // Return a new execution session with the associated graph, or NULL on
    // error. Does not take ownership of any input parameters.
    //
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  10. src/bufio/bufio_test.go

    	}
    }
    
    func TestUnreadRune(t *testing.T) {
    	segments := []string{"Hello, world:", "日本語"}
    	r := NewReader(&StringReader{data: segments})
    	got := ""
    	want := strings.Join(segments, "")
    	// Normal execution.
    	for {
    		r1, _, err := r.ReadRune()
    		if err != nil {
    			if err != io.EOF {
    				t.Error("unexpected error on ReadRune:", err)
    			}
    			break
    		}
    		got += string(r1)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
Back to top