Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,441 for told (0.04 sec)

  1. test/fixedbugs/issue7944.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 7944:
    // Liveness bitmaps said b was live at call to g,
    // but no one told the register optimizer.
    
    package main
    
    import "runtime"
    
    func f(b []byte) {
    	for len(b) > 0 {
    		n := len(b)
    		n = f1(n)
    		f2(b[n:])
    		b = b[n:]
    	}
    	g()
    }
    
    func f1(n int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 558 bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/ForegroundDaemonConfiguration.java

            // Foreground daemon cannot be 'told' what's his startup options as the client sits in the same process so we will infer the jvm opts from the inputArguments()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/os/proc.go

    // The program terminates immediately; deferred functions are not run.
    //
    // For portability, the status code should be in the range [0, 125].
    func Exit(code int) {
    	if code == 0 && testlog.PanicOnExit0() {
    		// We were told to panic on calls to os.Exit(0).
    		// This is used to fail tests that make an early
    		// unexpected call to os.Exit(0).
    		panic("unexpected call to os.Exit(0) during test")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/net/sendfile_unix_alt.go

    	// Darwin, FreeBSD, DragonFly and Solaris use 0 as the "until EOF" value.
    	// If you pass in more bytes than the file contains, it will
    	// loop back to the beginning ad nauseam until it's sent
    	// exactly the number of bytes told to. As such, we need to
    	// know exactly how many bytes to send.
    	var remain int64 = 0
    
    	lr, ok := r.(*io.LimitedReader)
    	if ok {
    		remain, r = lr.N, lr.R
    		if remain <= 0 {
    			return 0, nil, true
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    	}
    
    	// wait until we're told to stop
    	<-stopCh
    }
    
    // WaitForInitialSync blocks until the initial set of CRD resources has been processed
    func (c *crdRegistrationController) WaitForInitialSync() {
    	<-c.syncedInitialSet
    }
    
    func (c *crdRegistrationController) runWorker() {
    	// hot loop until we're told to stop.  processNextWorkItem will automatically wait until there's work
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. misc/ios/README

    ideviceinstaller tools from https://www.libimobiledevice.org/. Use the HEAD versions from
    source; the stable versions have bugs that prevents the Go exec wrapper to install and run
    apps.
    
    Second, the Go exec wrapper must be told the developer account signing identity, the team
    id and a provisioned bundle id to use. They're specified with the environment variables
    GOIOS_DEV_ID, GOIOS_TEAM_ID and GOIOS_APP_ID. The detect.go program in this directory will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 21:49:26 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  7. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	_ = wait.PollImmediateUntil(1*time.Minute, func() (bool, error) {
    		c.queue.Add(keyFn())
    		return false, nil
    	}, ctx.Done())
    
    	// wait until we're told to stop
    	<-ctx.Done()
    }
    
    func (c *Controller) runWorker() {
    	// hot loop until we're told to stop.  processNextWorkItem will automatically wait until there's work
    	// available, so we don't worry about secondary waits
    	for c.processNextWorkItem() {
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

                  fieldRef:
                    apiVersion: v1
                    fieldPath: spec.serviceAccountName
              - name: KUBECONFIG
                value: /var/run/secrets/remote/config
              # If you explicitly told us where ztunnel lives, use that.
              # Otherwise, assume it lives in our namespace
              # Also, check for an explicit ENV override (legacy approach) and prefer that
              # if present
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. docs/contribute/concurrency.md

    until we've pushed its bytes onto the socket. Otherwise, if the write fails we are unable to deliver its IOException to the application. We would have told the application layer that the write succeeded, but it didn't!
    
    The application-layer can also do blocking reads. If the application asks to read and there's nothing available, we need to hold that thread until either the bytes arrive, the stream is closed, or a timeout elapses. If we get bytes but there's nobody asking for them, we buffer...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  10. src/crypto/internal/hpke/hpke.go

    	nonce := s.seqNum.bytes()[16-s.aead.NonceSize():]
    	for i := range s.baseNonce {
    		nonce[i] ^= s.baseNonce[i]
    	}
    	// Message limit is, according to the RFC, 2^95+1, which
    	// is somewhat confusing, but we do as we're told.
    	if s.seqNum.bitLen() >= (s.aead.NonceSize()*8)-1 {
    		panic("message limit reached")
    	}
    	s.seqNum = s.seqNum.addOne()
    	return nonce
    }
    
    func (s *Sender) Seal(aad, plaintext []byte) ([]byte, error) {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top