Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 77 of 77 for STARTED (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	//   If `resourceVersion` is unset, this is interpreted as "consistent read" and the
    	//   bookmark event is send when the state is synced at least to the moment
    	//   when request started being processed.
    	// - `resourceVersionMatch` set to any other value or unset
    	//   Invalid error is returned.
    	//
    	// Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  2. src/cmd/go/internal/test/test.go

    	defer stdoutMu.Unlock()
    	return os.Stdout.Write(b)
    }
    
    func (r *runTestActor) Act(b *work.Builder, ctx context.Context, a *work.Action) error {
    	sh := b.Shell(a)
    
    	// Wait for previous test to get started and print its first json line.
    	select {
    	case <-r.prev:
    		// If should fail fast then release next test and exit.
    		if testShouldFailFast.Load() {
    			close(r.next)
    			return nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    	// Push stores the push context to use for the update. This may initially be nil, as we will
    	// debounce changes before a PushContext is eventually created.
    	Push *PushContext
    
    	// Start represents the time a push was started. This represents the time of adding to the PushQueue.
    	// Note that this does not include time spent debouncing.
    	Start time.Time
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // AFTER the INSTANTIATE_TEST_CASE_P statement.
    //
    // Please also note that generator expressions (including parameters to the
    // generators) are evaluated in InitGoogleTest(), after main() has started.
    // This allows the user on one hand, to adjust generator parameters in order
    // to dynamically determine a set of tests to run and on the other hand,
    // give the user a chance to inspect the generated tests with Google Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // AFTER the INSTANTIATE_TEST_CASE_P statement.
    //
    // Please also note that generator expressions (including parameters to the
    // generators) are evaluated in InitGoogleTest(), after main() has started.
    // This allows the user on one hand, to adjust generator parameters in order
    // to dynamically determine a set of tests to run and on the other hand,
    // give the user a chance to inspect the generated tests with Google Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    		toc := ctxt.loader.LookupOrCreateSym(".TOC.", 0)
    		sb := ctxt.loader.MakeSymbolUpdater(toc)
    		sb.SetType(sym.SDYNIMPORT)
    	}
    
    	// The Android Q linker started to complain about underalignment of the our TLS
    	// section. We don't actually use the section on android, so don't
    	// generate it.
    	if buildcfg.GOOS != "android" {
    		tlsg := ctxt.loader.LookupOrCreateSym("runtime.tlsg", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. src/os/os_test.go

    			t.Errorf("Test process succeeded, but expected to fail")
    		}
    		stdin.Close() // Keep stdin alive until the process has finished dying.
    	}()
    
    	// Wait for the process to be started.
    	// (It will close its stdout when it reaches TestMain.)
    	io.Copy(io.Discard, stdout)
    
    	processKiller(cmd.Process)
    }
    
    func TestKillStartProcess(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top