Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 124 for Succeeded (0.12 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForWorkItemOperationsTest.groovy

            def succeededEvent = Mock(InternalOperationFinishedProgressEvent)
            _ * succeededEvent.getEventTime() >> 999
            _ * succeededEvent.getDisplayName() >> 'Test Work succeeded'
            _ * succeededEvent.getDescriptor() >> workItemDescriptor
            _ * succeededEvent.getResult() >> workItemResult
    
            adapter.onEvent(startEvent) // succeededEvent always assumes a previous startEvent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. test/fixedbugs/issue11771.go

    		log.Fatal(err)
    	}
    
    	cmd := exec.Command("go", "tool", "compile", "-p=p", "x.go")
    	cmd.Dir = dir
    	output, err := cmd.CombinedOutput()
    	if err == nil {
    		log.Fatal("compile succeeded unexpectedly")
    	}
    	if !bytes.Contains(output, []byte("only allowed in runtime")) {
    		log.Fatalf("wrong error message from compiler; got:\n%s\n", output)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGConfigurationListener.java

     * interface from org.testng.internal to org.testng.
     *
     * @see TestNGListenerAdapterFactory
     */
    public interface TestNGConfigurationListener {
        /**
         * Invoked whenever a configuration method succeeded.
         */
        void onConfigurationSuccess(ITestResult itr);
    
        /**
         * Invoked whenever a configuration method failed.
         */
        void onConfigurationFailure(ITestResult itr);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. docs/bucket/replication/test_del_marker_proxying.sh

    	./mc rm sitea/bucket/obj$loop_count
    	RESULT=$({ ./mc stat sitea/bucket/obj$loop_count; } 2>&1)
    	if [[ ${RESULT} != *"Object does not exist"* ]]; then
    		echo "BUG: stat should fail. succeeded."
    		exit_1
    	fi
    	loop_count=$((loop_count + 1))
    done
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 11:38:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/metrics/metrics.go

    	ScrapeTypeAgent = "agent"
    )
    
    var processStartTime = time.Now()
    
    func RecordStartupTime() {
    	delta := time.Since(processStartTime)
    	startupTime.Record(delta.Seconds())
    	log.Infof("Readiness succeeded in %v", delta)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/SwiftPmRunner.groovy

            }
            return result
        }
    
        ExecOutput buildAndFails() {
            def result = run()
            if (result.exitCode == 0) {
                throw new AssertionError("Swift PM unexpectedly succeeded. Output:\n${result.out}")
            }
            return result
        }
    
        private ExecOutput run() {
            assert projectDir != null
            def builder = new ProcessBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLock.java

    import java.io.File;
    
    public interface FileLock extends Closeable, FileAccess {
        /**
         * Returns true if the most recent mutation method ({@link #updateFile(Runnable)} or {@link #writeFile(Runnable)} attempted by any process succeeded
         * (ie a process did not crash while updating the target file).
         *
         * Returns false if no mutation method has ever been called for the target file.
         */
        boolean getUnlockedCleanly();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/io/fs/sub_test.go

    	// Test that Sub uses Open when the method is not present.
    	sub, err = Sub(openOnly{testFsys}, "sub")
    	check("openOnly", sub, err)
    
    	_, err = sub.Open("nonexist")
    	if err == nil {
    		t.Fatal("Open(nonexist): succeeded")
    	}
    	pe, ok := err.(*PathError)
    	if !ok {
    		t.Fatalf("Open(nonexist): error is %T, want *PathError", err)
    	}
    	if pe.Path != "nonexist" {
    		t.Fatalf("Open(nonexist): err.Path = %q, want %q", pe.Path, "nonexist")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization_test.cc

      })";
      CellReader<int64_t> static_error(kNonStaticOpStreamz);
      CellReader<int64_t> skipped(kNonStaticOpSkipStreamz);
      CreateModule(kNonStaticFailure);
    
      auto result = Run();
    
      EXPECT_TRUE(result.succeeded());
      EXPECT_EQ(static_error.Delta("mhlo.einsum"), 0);
      EXPECT_EQ(skipped.Delta("mhlo.einsum"), 1);
    }
    
    TEST_F(VerifyTfxlaLegalizationTest, SkipsNonStaticInputsWithBounds) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableModuleVersionListingResolveResult.java

     */
    public interface BuildableModuleVersionListingResolveResult extends ResourceAwareResolveResult, ErroringResolveResult<ModuleVersionResolveException> {
    
        enum State {
            /**
             * Listing has succeeded.
             */
            Listed,
            /**
             * Listing has failed.
             */
            Failed,
            /**
             * Listing hasn't been performed yet, or another attempt can be made.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top