Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 122 for Terminate (0.16 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    enum GTestLogSeverity {
      GTEST_INFO,
      GTEST_WARNING,
      GTEST_ERROR,
      GTEST_FATAL
    };
    
    // Formats log entry severity, provides a stream object for streaming the
    // log message, and terminates the message with a newline when going out of
    // scope.
    class GTEST_API_ GTestLog {
     public:
      GTestLog(GTestLogSeverity severity, const char* file, int line);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    	}
    
    	s := new(LabeledStmt)
    	s.pos = p.pos()
    	s.Label = label
    
    	p.want(_Colon)
    
    	if p.tok == _Rbrace {
    		// We expect a statement (incl. an empty statement), which must be
    		// terminated by a semicolon. Because semicolons may be omitted before
    		// an _Rbrace, seeing an _Rbrace implies an empty statement.
    		e := new(EmptyStmt)
    		e.pos = p.pos()
    		s.Stmt = e
    		return s
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    enum GTestLogSeverity {
      GTEST_INFO,
      GTEST_WARNING,
      GTEST_ERROR,
      GTEST_FATAL
    };
    
    // Formats log entry severity, provides a stream object for streaming the
    // log message, and terminates the message with a newline when going out of
    // scope.
    class GTEST_API_ GTestLog {
     public:
      GTestLog(GTestLogSeverity severity, const char* file, int line);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. src/runtime/map.go

    		return
    	}
    
    	if h.flags&hashWriting != 0 {
    		fatal("concurrent map writes")
    	}
    
    	h.flags ^= hashWriting
    
    	// Mark buckets empty, so existing iterators can be terminated, see issue #59411.
    	markBucketsEmpty := func(bucket unsafe.Pointer, mask uintptr) {
    		for i := uintptr(0); i <= mask; i++ {
    			b := (*bmap)(add(bucket, i*uintptr(t.BucketSize)))
    			for ; b != nil; b = b.overflow(t) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    				k := strings.Index(name, "runtime/proc.go")
    				gdbscript = name[:k] + "runtime/runtime-gdb.py"
    			}
    			d.dwmu.Unlock()
    		}
    	}
    
    	// Emit directory section. This is a series of nul terminated
    	// strings, followed by a single zero byte.
    	lsDwsym := dwSym(lsu.Sym())
    	for k := 1; k < len(dirs); k++ {
    		d.AddString(lsDwsym, dirs[k])
    	}
    	lsu.AddUint8(0) // terminator
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // walked if 'predecessors' is true and output dependencies are walked if
      // 'successors' is true. In either case, if a discoverd Op is in the
      // 'ops_to_avoid' set, then the dependency walking is terminated.
      llvm::SetVector<Operation*> ops_to_process(*operations);
      llvm::SetVector<Operation*> new_ops;
    
      while (!ops_to_process.empty()) {
        for (Operation* op : ops_to_process) {
          if (predecessors) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	return &a[0], nil
    }
    
    // UTF16PtrToString takes a pointer to a UTF-16 sequence and returns the corresponding UTF-8 encoded string.
    // If the pointer is nil, it returns the empty string. It assumes that the UTF-16 sequence is terminated
    // at a zero word; if the zero word is not present, the program may crash.
    func UTF16PtrToString(p *uint16) string {
    	if p == nil {
    		return ""
    	}
    	if *p == 0 {
    		return ""
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		// - The dynamicresources plugin allocates claim A and updates the assume cache.
    		// - A second pod gets marked as unschedulable based on that assume cache.
    		// - Before the informer cache here catches up, the pod runs, terminates and
    		//   the claim gets deallocated without ever sending the claim status with
    		//   allocation to the scheduler.
    		// - The comparison below is for a *very* old claim with no allocation and the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. src/runtime/asm_amd64.s

    // of the G stack. We need to distinguish the routine that
    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    // the system stack terminates the stack walk (see topofstack()).
    // The frame layout needs to match systemstack
    // so that it can pretend to be systemstack_switch.
    TEXT runtime·systemstack_switch(SB), NOSPLIT, $0-0
    	UNDEF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.3.md

    * Fix so setup-files don't recreate/invalidate certificates that already exist ([#23550](https://github.com/kubernetes/kubernetes/pull/23550), [@luxas](https://github.com/luxas))
    * A pod never terminated if a container image registry was unavailable ([#23746](https://github.com/kubernetes/kubernetes/pull/23746), [@derekwaynecarr](https://github.com/derekwaynecarr))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top