Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for executors (0.14 sec)

  1. src/cmd/dist/build.go

    		compile = append(compile, "-shared")
    	}
    
    	compile = append(compile, gofiles...)
    	var wg sync.WaitGroup
    	// We use bgrun and immediately wait for it instead of calling run() synchronously.
    	// This executes all jobs through the bgwork channel and allows the process
    	// to exit cleanly in case an error occurs.
    	bgrun(&wg, dir, compile...)
    	bgwait(&wg)
    
    	// Compile the files.
    	for _, p := range sfiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	flag.BoolVar(&t.json, "json", false, "report test results in JSON")
    
    	xflagparse(-1) // any number of args
    	if noRebuild {
    		t.rebuild = false
    	}
    
    	t.run()
    }
    
    // tester executes cmdtest.
    type tester struct {
    	race        bool
    	msan        bool
    	asan        bool
    	listMode    bool
    	rebuild     bool
    	failed      bool
    	keepGoing   bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    }
    
    // An onlyWriter only implements io.Writer, no matter what other methods the underlying implementation may have.
    type onlyWriter struct {
    	io.Writer
    }
    
    // A scriptedReader is an io.Reader that executes its steps sequentially.
    type scriptedReader []func(p []byte) (n int, err error)
    
    func (sr *scriptedReader) Read(p []byte) (n int, err error) {
    	if len(*sr) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  4. src/testing/testing.go

    //	    })
    //	    // <tear-down code>
    //	}
    //
    // # Main
    //
    // It is sometimes necessary for a test or benchmark program to do extra setup or teardown
    // before or after it executes. It is also sometimes necessary to control
    // which code runs on the main thread. To support these and other cases,
    // if a test file contains a function:
    //
    //	func TestMain(m *testing.M)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      //
      // DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM.
      // Instead, use the TEST or TEST_F macro.
      virtual void TestBody() = 0;
    
      // Sets up, executes, and tears down the test.
      void Run();
    
      // Deletes self.  We deliberately pick an unusual name for this
      // internal method to avoid clashing with names used in user TESTs.
      void DeleteSelf_() { delete this; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      //
      // DO NOT OVERRIDE THIS FUNCTION DIRECTLY IN A USER PROGRAM.
      // Instead, use the TEST or TEST_F macro.
      virtual void TestBody() = 0;
    
      // Sets up, executes, and tears down the test.
      void Run();
    
      // Deletes self.  We deliberately pick an unusual name for this
      // internal method to avoid clashing with names used in user TESTs.
      void DeleteSelf_() { delete this; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    	if p.startedStaticPodsByFullname[status.fullname] == podUID {
    		delete(p.startedStaticPodsByFullname, status.fullname)
    	}
    }
    
    // completeWork requeues on error or the next sync interval and then immediately executes any pending
    // work.
    func (p *podWorkers) completeWork(podUID types.UID, phaseTransition bool, syncErr error) {
    	// Requeue the last update if the last sync returned error.
    	switch {
    	case phaseTransition:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top