Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for executors (0.17 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                problems,
                                Severity.ERROR,
                                Version.V20,
                                prefix + prefix2 + "[" + plugin.getKey() + "].executions.execution.id",
                                null,
                                "must be unique but found duplicate execution with id " + exec.getId(),
                                exec);
                    }
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. .bazelrc

    # Make Bazel not try to probe the host system for a C++ toolchain.
    build:rbe_base --config=resultstore
    build:rbe_base --repo_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1
    build:rbe_base --define=EXECUTOR=remote
    build:rbe_base --jobs=800
    build:rbe_base --remote_executor=grpcs://remotebuildexecution.googleapis.com
    build:rbe_base --remote_timeout=3600
    build:rbe_base --spawn_strategy=remote,worker,standalone,local
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.cc

      CHECK(use_optimistic_mode && success != nullptr ||
            !use_optimistic_mode && success == nullptr);
    
      // This an abstract interpretation over the deadness propagation semantics of
      // the graph executor.
      //
      // We iterate over the graph twice, each time in a topological order.  On the
      // first iteration merge nodes with backedges are mapped to symbolic
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

     * href="https://www.javadoc.io/doc/com.github.ben-manes.caffeine/caffeine/latest/com.github.benmanes.caffeine/com/github/benmanes/caffeine/cache/AsyncCacheLoader.html#asyncLoad(K,java.util.concurrent.Executor)">{@code
     * AsyncCacheLoader.asyncLoad}</a> must return a {@code CompletableFuture}. Users of Guava's {@link
     * com.google.common.util.concurrent.ListenableFuture} can adapt between the two {@code Future}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                problems,
                                Severity.ERROR,
                                Version.V20,
                                prefix + prefix2 + "[" + plugin.getKey() + "].executions.execution.id",
                                null,
                                "must be unique but found duplicate execution with id " + exec.getId(),
                                exec);
                    }
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    // RUN: tf-opt %s -pass-pipeline='builtin.module(tf-executor-convert-control-to-data-outputs{composite-tpuexecute-side-effects})' -split-input-file -verify-diagnostics | FileCheck %s
    
    !tf_res = tensor<!tf_type.resource<tensor<f32>>>
    
    // Tests independent chains of two resources.
    
    // CHECK-LABEL: func @simple_independent_chains_while_body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        if (op->hasAttr(kXlaOutsideCompilationAttr)) {
          op->removeAttr(
              StringAttr::get(op->getContext(), kXlaOutsideCompilationAttr));
        }
      });
    }
    
    // The results of parallel executes is the combination of return values from
    // both host and device.
    llvm::SmallVector<Type, 4> GetParallelExecuteResultsTypes(
        ArrayRef<Value> return_value_from_host,
        ArrayRef<Value> return_value_from_device) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            run "copy"
            then:
            // TODO Task should not be skipped
            !!!skipped(":copy")
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-3554")
        def "copy with dependent task executes dependencies"() {
            given:
            buildScript '''
                apply plugin: "war"
    
                task copy(type: Copy) {
                    from 'src'
                    into 'dest'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_3x.md

        implementation("org.bouncycastle:bcprov-jdk15on:1.60")
        implementation("org.conscrypt:conscrypt-openjdk-uber:1.4.0")
        implementation("com.squareup.okio:okio:1.15.0")
        ```
    
     *  Fix: Handle dispatcher executor shutdowns gracefully. When there aren't any threads to carry a
        call its callback now gets a `RejectedExecutionException`.
     *  Fix: Don't permanently cache responses with `Cache-Control: immutable`. We misunderstood the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		Tty:         tty,
    	}
    	resp, err := m.runtimeService.Attach(ctx, req)
    	if err != nil {
    		return nil, err
    	}
    	return url.Parse(resp.Url)
    }
    
    // RunInContainer synchronously executes the command in the container, and returns the output.
    func (m *kubeGenericRuntimeManager) RunInContainer(ctx context.Context, id kubecontainer.ContainerID, cmd []string, timeout time.Duration) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top