Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 631 for Succeeded (0.27 sec)

  1. pkg/controller/podgc/doc.go

    */
    
    // Package podgc contains a very simple pod "garbage collector" implementation,
    // PodGCController, that runs in the controller manager. If the number of pods
    // in terminated phases (right now either Failed or Succeeded) surpasses a
    // configurable threshold, the controller will delete pods in terminated state
    // until the system reaches the allowed threshold again. The PodGCController
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/gofmt/gofmt_unix_test.go

    	s := newSequencer(maxWeight, &buf, &errBuf)
    	s.Add(fileWeight(fn, info), func(r *reporter) error {
    		return processFile(fn, info, nil, r)
    	})
    	if s.GetExitCode() == 0 {
    		t.Fatal("rewrite of read-only file succeeded unexpectedly")
    	}
    	if errBuf.Len() > 0 {
    		t.Log(errBuf)
    	}
    
    	info, err = os.Stat(fn)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !info.ModTime().Equal(past) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 12:52:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/os/tempfile_test.go

    			tmpfile, err := CreateTemp(tmpDir, tt.pattern)
    			if tmpfile != nil {
    				defer tmpfile.Close()
    			}
    			if tt.wantErr {
    				if err == nil {
    					t.Errorf("CreateTemp(..., %#q) succeeded, expected error", tt.pattern)
    				}
    				if !errors.Is(err, ErrPatternHasSeparator) {
    					t.Errorf("CreateTemp(..., %#q): %v, expected ErrPatternHasSeparator", tt.pattern, err)
    				}
    			} else if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:37 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/lite/experimental/tac/tac.py

      Args:
        model_path: Path to the tflite model file.
        targets: A list of string of the desired targets. E.g., ['GPU', 'CPU'].
        output_path: The output path.
    
      Returns:
        Whether the optimization succeeded.
    
      Raises:
        ValueError:
          Invalid model_path.
          Targets are not specified.
          Invalid output_path.
      """
      if not model_path:
        raise ValueError("Invalid model_path.")
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 21 01:22:53 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcarchive/testdata/libgo2/libgo2.go

    		exit(EXIT_FAILURE);
    	}
    	// Close the reader end
    	close(fds[0]);
    	// Write to the writer end to provoke a SIGPIPE
    	if (write(fds[1], "some data", 9) != -1) {
    		fprintf(stderr, "write to a closed pipe succeeded\n");
    		exit(EXIT_FAILURE);
    	}
    	close(fds[1]);
    }
    */
    import "C"
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    )
    
    // RunGoroutines starts some goroutines that don't do anything.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/debug/plan9obj/file_test.go

    		}
    	}
    }
    
    func TestOpenFailure(t *testing.T) {
    	filename := "file.go"    // not a Plan 9 a.out file
    	_, err := Open(filename) // don't crash
    	if err == nil {
    		t.Errorf("open %s: succeeded unexpectedly", filename)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  9. 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)
  10. pkg/ctrlz/topics/assets/templates/proc.html

            ajax.onload = onload;
            ajax.onerror = onerror;
            ajax.open("GET", url, true);
            ajax.send();
    
            function onload() {
                if (this.status === 200) { // request succeeded
                    let pi = JSON.parse(this.responseText);
                    document.getElementById("Threads").innerText = pi.threads;
                    document.getElementById("Goroutines").innerText = pi.goroutines;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top