Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 297 for chancap (0.36 sec)

  1. .github/DISCUSSION_TEMPLATE/questions.yml

            By asking questions in a structured way (following this) it will be much easier to help you.
    
            And there's a high chance that you will find the solution along the way and you won't even have to submit it and wait for an answer. 😎
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/cmd/link/main.go

    // configuration of the architecture-specific variables.
    //
    // Then control flow passes to ld.Main, which parses flags, makes
    // some configuration decisions, and then gives the architecture
    // packages a second chance to modify the linker's configuration
    // via the ld.Arch.Archinit function.
    
    func main() {
    	var arch *sys.Arch
    	var theArch ld.Arch
    
    	buildcfg.Check()
    	switch buildcfg.GOARCH {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 17:54:33 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/testprog/annotations-stress.go

    					trace.Logf(ctx, "log", "fanout region%d", i)
    					if i == 2 {
    						do(ctx, 0)
    						return
    					}
    				})
    			}(i)
    		}
    	})
    
    	// Sleep to let things happen, but also increase the chance that we
    	// advance a generation.
    	time.Sleep(10 * time.Millisecond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/watch_termination.go

    		}
    		if !watchVerbs.Has(requestInfo.Verb) {
    			handler.ServeHTTP(w, req)
    			return
    		}
    
    		if err := wg.Add(1); err != nil {
    			// When apiserver is shutting down, signal clients to retry
    			// There is a good chance the client hit a different server, so a tight retry is good for client responsiveness.
    			waitGroupWriteRetryAfterToResponse(w)
    			return
    		}
    
    		// attach ServerShutdownSignal to the watch request so that the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_activity_listener.h

      // Called after TensorFlow realizes possible lost performance.
      virtual Status Listen(const XlaOptimizationRemark& optimization_remark) = 0;
    
      // Called at program exit in best-effort manner to give listeners a chance to
      // flush their state.
      //
      // Default implementation is a no-op.
      virtual void Flush();
    
      virtual ~XlaActivityListener();
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 07 11:04:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  6. src/syscall/forkpipe2.go

    		// the standard library should never take a read
    		// lock on ForkLock.
    
    		forkingLock.Unlock()
    
    		ForkLock.RLock()
    		ForkLock.RUnlock()
    
    		forkingLock.Lock()
    
    		// Readers got a chance, so now take the write lock.
    
    		if forking == 0 {
    			ForkLock.Lock()
    		}
    	}
    
    	forking++
    }
    
    // releaseForkLock releases the conceptual write lock on ForkLock
    // acquired by acquireForkLock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 10 19:19:59 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/os/pipe_test.go

    		t.Fatal(err)
    	}
    	defer r.Close()
    	defer w.Close()
    
    	// Close the read end of the pipe in a goroutine while we are
    	// writing to the write end, or vice-versa.
    	go func() {
    		// Give the main goroutine a chance to enter the Read or
    		// Write call. This is sloppy but the test will pass even
    		// if we close before the read/write.
    		time.Sleep(20 * time.Millisecond)
    
    		var err error
    		if read {
    			err = r.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. src/os/exec_unix_test.go

    		t.Errorf("got %v want %v", got, ErrProcessDone)
    	}
    }
    
    // Lookup of a process that does not exist at time of lookup.
    func TestProcessAlreadyDone(t *testing.T) {
    	// Theoretically MaxInt32 is a valid PID, but the chance of it actually
    	// being used is extremely unlikely.
    	pid := math.MaxInt32
    	if runtime.GOOS == "solaris" || runtime.GOOS == "illumos" {
    		// Solaris/Illumos have a lower limit, above which wait returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/runtime/rand_test.go

    //go:linkname fastrand64 runtime.fastrand64
    func fastrand64() uint64
    
    func TestLegacyFastrand(t *testing.T) {
    	// Testing mainly that the calls work at all,
    	// but check that all three don't return the same number (1 in 2^64 chance)
    	{
    		x, y, z := fastrand(), fastrand(), fastrand()
    		if x == y && y == z {
    			t.Fatalf("fastrand three times = %#x, %#x, %#x, want different numbers", x, y, z)
    		}
    	}
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 23:44:31 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ioctl_zos.go

    // IoctlSetWinsize performs an ioctl on fd with a *Winsize argument.
    //
    // To change fd's window size, the req argument should be TIOCSWINSZ.
    func IoctlSetWinsize(fd int, req int, value *Winsize) error {
    	// TODO: if we get the chance, remove the req parameter and
    	// hardcode TIOCSWINSZ.
    	return ioctlPtr(fd, req, unsafe.Pointer(value))
    }
    
    // IoctlSetTermios performs an ioctl on fd with a *Termios.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top