Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 417 for speaking (0.14 sec)

  1. src/runtime/time.go

    // in order to acquire a ts.lock, to avoid lock inversions.
    // (timers.adjust holds ts.lock while acquiring each t's lock,
    // so we cannot hold any t's lock while acquiring ts.lock).
    //
    // Strictly speaking it *might* be okay to hold t.lock and
    // acquire ts.lock at the same time, because we know that
    // t is not in any ts.heap, so nothing holding a ts.lock would
    // be acquiring the t.lock at the same time, meaning there
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. hack/verify-spelling.sh

    # limitations under the License.
    
    # This script checks commonly misspelled English words in all files in the
    # working directory by client9/misspell package.
    # Usage: `hack/verify-spelling.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    export KUBE_ROOT
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/net/http/server.go

    			c.rwc.SetReadDeadline(dl)
    			c.rwc.SetWriteDeadline(dl)
    		}
    		if err := tlsConn.HandshakeContext(ctx); err != nil {
    			// If the handshake failed due to the client not speaking
    			// TLS, assume they're speaking plaintext HTTP and write a
    			// 400 response on the TLS conn's underlying net.Conn.
    			var reason string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    		t.Errorf("TLS Cipher Suite = %d; want %d", got, want)
    	}
    }
    
    // Check that an HTTPS client can interpret a particular TLS error
    // to determine that the server is speaking HTTP.
    // See golang.org/issue/11111.
    func TestHTTPSClientDetectsHTTPServer(t *testing.T) {
    	run(t, testHTTPSClientDetectsHTTPServer, []testMode{http1Mode})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    	//    ^3
    	//
    	// Let's break this down.
    	//
    	// The first term (marker 1) is everything that contributes to the memory limit and isn't
    	// or couldn't become heap objects. It represents, broadly speaking, non-heap overheads.
    	// One oddity you may have noticed is that we also subtract out heapFree, i.e. unscavenged
    	// memory that may contain heap objects in the future.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    			total += s.Value[i]
    		}
    		// Want d to be at least N*D, but give some wiggle-room to avoid
    		// a test flaking. Set an upper-bound proportional to the total
    		// wall time spent in blockMutexN. Generally speaking, the total
    		// contention time could be arbitrarily high when considering
    		// OS scheduler delays, or any other delays from the environment:
    		// time keeps ticking during these delays. By making the upper
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Note that using a `@ServiceReference` or storing `BuildServiceProvider` in an `@Internal`-annotated property of a task is safe.
    Generally speaking, this limitation makes it impossible to use a `BuildService` to invalidate the configuration cache.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		}
    		state.informationsForClaim[index].allocation = allocation
    		state.informationsForClaim[index].allocationDriverName = driverName
    		// Strictly speaking, we don't need to store the full modified object.
    		// The allocation would be enough. The full object is useful for
    		// debugging and testing, so let's make it realistic.
    		claim = claim.DeepCopy()
    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/reflect/type.go

    		for i < len(tag) && tag[i] == ' ' {
    			i++
    		}
    		tag = tag[i:]
    		if tag == "" {
    			break
    		}
    
    		// Scan to colon. A space, a quote or a control character is a syntax error.
    		// Strictly speaking, control chars include the range [0x7f, 0x9f], not just
    		// [0x00, 0x1f], but in practice, we ignore the multi-byte control characters
    		// as it is simpler to inspect the tag's bytes than the tag's runes.
    		i = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    		i--
    		if i < 0 || i >= len(names) {
    			if isError {
    				sawUnmatchedErrors = true
    			}
    			continue
    		}
    
    		switch filename {
    		case "completed":
    			// Strictly speaking, there is no guarantee that seeing the error at completed:1
    			// (at the end of the file) means we've seen all the errors from earlier in the file,
    			// but usually it does. Certainly if we don't see the completed:1 error, we did
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top