Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 631 for Succeeded (0.12 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. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    				// stack
    				prog.Stacks[k] += int64(v)
    			} else {
    				// counter
    				prog.Counters[k] += int64(v)
    			}
    			succeeded = true
    			fok = true
    		}
    		if !fok {
    			u.logger.Printf("no counters found in %s", f)
    		}
    	}
    	if !succeeded {
    		return "", fmt.Errorf("none of the %d count files for %s contained counters", len(countFiles), expiryDate)
    	}
    	// 1. generate the local report
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultTestSuccessResult.java

    public class DefaultTestSuccessResult extends AbstractTestResult implements InternalTestSuccessResult {
        public DefaultTestSuccessResult(long startTime, long endTime) {
            super(startTime, endTime, "succeeded");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 972 bytes
    - Viewed (0)
  7. 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)
  8. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultSuccessResult.java

    public class DefaultSuccessResult extends AbstractOperationResult implements InternalSuccessResult {
        public DefaultSuccessResult(long startTime, long endTime) {
            super(startTime, endTime, "succeeded");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 960 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top