Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,210 for Fast (0.1 sec)

  1. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsClient.java

            String path;
            try {
                path = URLDecoder.decode(uri.getPath(), "UTF-8");
            } catch (UnsupportedEncodingException e) {
                throw UncheckedException.throwAsUncheckedException(e); // fail fast, this should not happen
            }
            while (path.startsWith("/")) {
                path = path.substring(1);
            }
            return path;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:20 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. pkg/kube/krt/internal.go

    			return proto.Equal(ap, any(b).(proto.Message))
    		}
    		// If not, this is an embedded proto most likely... Sneaky.
    		// DeepEqual on proto is broken, so fail fast to avoid subtle errors.
    		panic(fmt.Sprintf("unable to compare object %T; perhaps it is embedding a protobuf? Provide an Equaler implementation", a))
    	}
    	return reflect.DeepEqual(a, b)
    }
    
    type collectionUID uint64
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. src/net/dial.go

    	// If nil, a local address is automatically chosen.
    	LocalAddr Addr
    
    	// DualStack previously enabled RFC 6555 Fast Fallback
    	// support, also known as "Happy Eyeballs", in which IPv4 is
    	// tried soon if IPv6 appears to be misconfigured and
    	// hanging.
    	//
    	// Deprecated: Fast Fallback is enabled by default. To
    	// disable, set FallbackDelay to a negative value.
    	DualStack bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/assign.go

    	r.Index = walkExpr(r.Index, init)
    	t := r.X.Type()
    
    	fast := mapfast(t)
    	key := mapKeyArg(fast, r, r.Index, false)
    
    	// from:
    	//   a,b = m[i]
    	// to:
    	//   var,b = mapaccess2*(t, m, i)
    	//   a = *var
    	a := n.Lhs[0]
    
    	var call *ir.CallExpr
    	if w := t.Elem().Size(); w <= abi.ZeroValSize {
    		fn := mapfn(mapaccess2[fast], t, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	d.n++
    	for d.n < d.rate {
    		d.storage[d.n] = 0
    		d.n++
    	}
    	// This adds the final one bit for the padding. Because of the way that
    	// bits are numbered from the LSB upwards, the final bit is the MSB of
    	// the last byte.
    	d.storage[d.rate-1] ^= 0x80
    	// Apply the permutation
    	d.permute()
    	d.state = spongeSqueezing
    	d.n = d.rate
    	copyOut(d, d.storage[:d.rate])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/math/rand/v2/rand.go

    	// We know that thresh < n, and n is usually much less than 2⁶⁴, so we can
    	// avoid the last four lines unless lo < n.
    	//
    	// See also:
    	// https://lemire.me/blog/2016/06/27/a-fast-alternative-to-the-modulo-reduction
    	// https://lemire.me/blog/2016/06/30/fast-random-shuffling
    	hi, lo := bits.Mul64(r.Uint64(), n)
    	if lo < n {
    		thresh := -n % n
    		for lo < thresh {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/runtime/mpallocbits.go

    // set sets bit i of pageBits.
    func (b *pageBits) set(i uint) {
    	b[i/64] |= 1 << (i % 64)
    }
    
    // setRange sets bits in the range [i, i+n).
    func (b *pageBits) setRange(i, n uint) {
    	_ = b[i/64]
    	if n == 1 {
    		// Fast path for the n == 1 case.
    		b.set(i)
    		return
    	}
    	// Set bits [i, j].
    	j := i + n - 1
    	if i/64 == j/64 {
    		b[i/64] |= ((uint64(1) << n) - 1) << (i % 64)
    		return
    	}
    	_ = b[j/64]
    	// Set leading bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. .github/workflows/build.yml

        timeout-minutes: 30
        if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'android') || contains(github.event.pull_request.labels.*.name, 'renovate')
    
        strategy:
          fail-fast: false
          matrix:
            api-level:
              - 21
              - 29
              - 34
    
        steps:
          - name: Checkout
            uses: actions/checkout@v4
            with:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/time/sleep_test.go

    	// We try to run this test with increasingly larger multiples
    	// until one works so slow, loaded hardware isn't as flaky,
    	// but without slowing down fast machines unnecessarily.
    	//
    	// (maxDuration is several orders of magnitude longer than we
    	// expect this test to actually take on a fast, unloaded machine.)
    	d := 1 * Millisecond
    	const maxDuration = 10 * Second
    	for {
    		err := testReset(d)
    		if err == nil {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. docs/de/docs/async.md

    ### Parallele Hamburger
    
    Stellen wir uns jetzt vor, dass es sich hierbei nicht um „nebenläufige Hamburger“, sondern um „parallele Hamburger“ handelt.
    
    Sie gehen los mit Ihrem Schwarm, um paralleles Fast Food zu bekommen.
    
    Sie stehen in der Schlange, während mehrere (sagen wir acht) Kassierer, die gleichzeitig Köche sind, die Bestellungen der Leute vor Ihnen entgegennehmen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:16 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top