Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 455 for too (0.02 sec)

  1. src/net/resolverdialfunc_test.go

    // That is, it can only be called at most once, before anything
    // else is written.
    func (w ResponseWriter) SetTTL(seconds uint32) {
    	// ... intention is last one wins and mutates all previously
    	// written records too, but that's a little annoying.
    	// But it's also annoying if the requirement is it needs to be set
    	// last.
    	// And it's also annoying if it's possible for users to set
    	// different TTLs per Answer.
    	if w.a.wrote {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/runtime/rand.go

    //go:linkname cheaprandn
    //go:nosplit
    func cheaprandn(n uint32) uint32 {
    	// See https://lemire.me/blog/2016/06/27/a-fast-alternative-to-the-modulo-reduction/
    	return uint32((uint64(cheaprand()) * uint64(n)) >> 32)
    }
    
    // Too much legacy code has go:linkname references
    // to runtime.fastrand and friends, so keep these around for now.
    // Code should migrate to math/rand/v2.Uint64,
    // which is just as fast, but that's only available in Go 1.22+.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

                    logger.lifecycle 'configureEach'
                }
                tasks.create('foo') {
                    logger.lifecycle 'create'
                }
                tasks.all {
                    logger.lifecycle 'too late'
                }
            """
    
            when:
            run('foo')
    
            then:
            verifyTaskIds()
            def realize = verifyTaskDetails(RealizeTaskBuildOperationType, withPath(':', ':foo'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. build/lib/release.sh

          "${release_stage}/node/bin/"
    
        # TODO: Docker images here
        # kube::release::create_docker_images_for_server "${release_stage}/server/bin" "${arch}"
    
        # Include the client binaries here too as they are useful debugging tools.
        local client_bins=("${KUBE_CLIENT_BINARIES[@]}")
        if [[ "${platform%/*}" = 'windows' ]]; then
          client_bins=("${KUBE_CLIENT_BINARIES_WIN[@]}")
        fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

            server.start()
    
            and: "a zip archive in the root with many files with the same content, so that the editing won't finish too quickly"
            createZip('test.zip') {
                for (int i = 0; i < 1000; i++) {
                    "subdir1$i" {
                        file('file1.txt').text = 'original'
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    	expected := int32(tr.MaxConnsPerHost)
    	if dialCnt != expected {
    		t.Errorf("round 1: too many dials: %d != %d", dialCnt, expected)
    	}
    	if gotConnCnt != expected {
    		t.Errorf("round 1: too many get connections: %d != %d", gotConnCnt, expected)
    	}
    	if ts.TLS != nil && tlsHandshakeCnt != expected {
    		t.Errorf("round 1: too many tls handshakes: %d != %d", tlsHandshakeCnt, expected)
    	}
    
    	if t.Failed() {
    		t.FailNow()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. src/crypto/x509/oid.go

    	offset = initOffset
    	var ret64 int64
    	for shifted := 0; offset < len(bytes); shifted++ {
    		// 5 * 7 bits per byte == 35 bits of data
    		// Thus the representation is either non-minimal or too large for an int32
    		if shifted == 5 {
    			failed = true
    			return
    		}
    		ret64 <<= 7
    		b := bytes[offset]
    		// integers should be minimally encoded, so the leading octet should
    		// never be 0x80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. src/html/template/doc.go

    will be removed when determining the context. For example
    
    	<a my:data-href="{{.}}"></a>
    
    This is handled as if "my:data-href" was just "data-href" and not "href" as
    it would be if the "data-" prefix were to be ignored too. Thus at parse
    time this becomes just
    
    	<a my:data-href="{{. | attrescaper}}"></a>
    
    As a special case, attributes with the namespace "xmlns" are always treated
    as containing URLs. Given the excerpts
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

                    spec.offsetInFileLocation(resourceName, position, end - position);
                }
            }
        }
    
        /**
         * Clamp the value to an int, or return {@link Diagnostic#NOPOS} if the value is too large.
         * <p>
         * This is used to ensure that we don't report invalid locations.
         *
         * @param value the value to clamp
         * @return either the clamped value, or {@link Diagnostic#NOPOS}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. docs/en/docs/python-types.md

    ```
    
    ### Generic types with type parameters
    
    There are some data structures that can contain other values, like `dict`, `list`, `set` and `tuple`. And the internal values can have their own type too.
    
    These types that have internal types are called "**generic**" types. And it's possible to declare them, even with their internal types.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top