Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 183 for Succeeded (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildtree/DefaultBuildTreeLifecycleController.java

                return ExecutionResult.succeeded(model);
            });
        }
    
        @Override
        public <T> T withEmptyBuild(Function<? super SettingsInternal, T> action) {
            return runBuild(() -> {
                T result = buildLifecycleController.withSettings(action);
                return ExecutionResult.succeeded(result);
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 07:46:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report_test.cc

      pm.addInstrumentation(std::make_unique<SaveQuantizationReportInstrumentation>(
          report_file_path));
    
      const LogicalResult run_result = pm.run(*module_op);
      ASSERT_TRUE(succeeded(run_result));
    
      // Check that the report file contains `QuantizationResults` textproto,
      // reflecting the quantization results, in this case the
      // `composite_dot_general_fn` with quantized with `static_range_ptq` method.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testerrors/errors_test.go

    	cmd := exec.Command("go", "build", "-gcflags=-L -e", "-o="+dst, path(file)) // TODO(gri) no need for -gcflags=-L if go tool is adjusted
    	out, err := cmd.CombinedOutput()
    	if err == nil {
    		t.Errorf("expected cgo to fail but it succeeded")
    	}
    
    	lines := bytes.Split(out, []byte("\n"))
    	for _, re := range errors {
    		found := false
    		for _, line := range lines {
    			if re.Match(line) {
    				t.Logf("found match for %#q: %q", re, line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. pkg/apis/scheduling/validation/validation_test.go

    			Value:         spcs[0].Value,
    			GlobalDefault: spcs[0].GlobalDefault,
    		},
    	}
    
    	for k, v := range errorCases {
    		if errs := ValidatePriorityClass(&v); len(errs) == 0 {
    			t.Errorf("Expected error for %s, but it succeeded", k)
    		}
    	}
    }
    
    func TestValidatePriorityClassUpdate(t *testing.T) {
    	preemptLowerPriority := core.PreemptLowerPriority
    	preemptNever := core.PreemptNever
    
    	old := scheduling.PriorityClass{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:30:47 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. pkg/volume/util/recyclerclient/recycler_client_test.go

    		{
    			// Test recycler success with some events
    			name:      "RecyclerSuccess",
    			createPod: newPod("podRecyclerSuccess", v1.PodPending, ""),
    			eventSequence: []watch.Event{
    				// Pod gets Running and Succeeded
    				newPodEvent(watch.Added, "podRecyclerSuccess", v1.PodPending, ""),
    				newEvent(v1.EventTypeNormal, "Successfully assigned recycler-for-podRecyclerSuccess to 127.0.0.1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/UnexpectedBuildSuccess.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testkit.runner;
    
    /**
     * Thrown when executing a build that was expected to fail, but succeeded.
     *
     * @since 2.6
     * @see GradleRunner#buildAndFail()
     */
    public class UnexpectedBuildSuccess extends UnexpectedBuildResultException {
        public UnexpectedBuildSuccess(String message, BuildResult buildResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 988 bytes
    - Viewed (0)
  7. src/testing/iotest/logger_test.go

    	log.SetOutput(lOut)
    	log.SetFlags(0)
    
    	lw := errWriter{err: errors.New("Write Error!")}
    	wl := NewWriteLogger("write:", lw)
    	if _, err := wl.Write([]byte("Hello, World!")); err == nil {
    		t.Fatalf("Unexpectedly succeeded to write: %v", err)
    	}
    
    	wantLogWithHex := fmt.Sprintf("lw: write: %x: %v\n", "", "Write Error!")
    	if g, w := lOut.String(), wantLogWithHex; g != w {
    		t.Errorf("WriteLogger mismatch\n\tgot:  %q\n\twant: %q", g, w)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 07:03:10 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleState.java

     */
    
    package org.gradle.process.internal;
    
    public enum ExecHandleState {
        INIT(false),
        STARTING(false),
        STARTED(false),
        ABORTED(true),
        FAILED(true),
        DETACHED(true),
        SUCCEEDED(true);
    
        private final boolean terminal;
    
        ExecHandleState(boolean terminal) {
            this.terminal = terminal;
        }
    
        public boolean isTerminal() {
            return terminal;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1007 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_metadata_utils_test.cc

      mlir::tf_device::ClusterFuncOp cluster_func_op = cluster_func_ops.front();
    
      tensorflow::tpu::TPUCompileMetadataProto compile_metadata;
    
      ASSERT_TRUE(mlir::succeeded(SetMetadataProtoFromClusterFuncOp(
          cluster_func_op,
          /*num_replicas=*/1, /*num_cores_per_replica=*/1, {}, &compile_metadata)));
    
      tensorflow::tpu::TPUCompileMetadataProto expected_compile_metadata;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 12 04:22:33 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/bootstrap/ExecutionListener.java

    /**
     * Allows an execution action to provide status information to the execution context.
     *
     * <p>Note: if the action does not call {@link #onFailure(Throwable)}, then the execution is assumed to have
     * succeeded.</p>
     */
    public interface ExecutionListener {
        /**
         * Reports a failure of the execution. Note that it is the caller's responsibility to perform any logging of the
         * failure.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top