Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,260 for chunck (0.18 sec)

  1. src/cmd/compile/internal/ssa/check.go

    }
    
    // isExactFloat32 reports whether x can be exactly represented as a float32.
    func isExactFloat32(x float64) bool {
    	// Check the mantissa is in range.
    	if bits.TrailingZeros64(math.Float64bits(x)) < 52-23 {
    		return false
    	}
    	// Check the exponent is in range. The mantissa check above is sufficient for NaN values.
    	return math.IsNaN(x) || x == float64(float32(x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc_32bit.go

    		mappedReady = scavIndexSize
    	} else {
    		// Set up the scavenge index.
    		s.chunks = scavengeIndexArray[:]
    	}
    	s.min.Store(1) // The 0th chunk is never going to be mapped for the heap.
    	s.max.Store(uintptr(len(s.chunks)))
    	return
    }
    
    // sysGrow is a no-op on 32-bit platforms.
    func (s *scavengeIndex) sysGrow(base, limit uintptr, sysStat *sysMemStat) uintptr {
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 20:08:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/gradle-plugin/tests/check.sample.conf

    commands: [{
        executable: gradle
        args: check
        expected-output-file: check.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 159 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/tests/check.sample.conf

    commands: [{
        executable: gradle
        args: showFile
        expected-output-file: check.out
        allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 128 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    	a.hi = a.hi >> 2
    	return a
    }
    
    // updateGeneric absorbs msg into the state.h accumulator. For each chunk m of
    // 128 bits of message, it computes
    //
    //	h₊ = (h + m) * r  mod  2¹³⁰ - 5
    //
    // If the msg length is not a multiple of TagSize, it assumes the last
    // incomplete chunk is the final one.
    func updateGeneric(state *macState, msg []byte) {
    	h0, h1, h2 := state.h[0], state.h[1], state.h[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/tests/check.sample.conf

    commands: [{
        executable: gradle
        args: check
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 55 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/tests/check.sample.conf

    commands: [{
        executable: gradle
        args: check
    }, {
        executable: gradle
        args: greet -q
        expected-output-file: greet.out
    }, {
        executable: gradle
        args: run -q
        expected-output-file: run.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 217 bytes
    - Viewed (0)
  8. src/net/http/internal/chunked_test.go

    	chunk := []byte("1;")
    	for i := 0; i < 100; i++ {
    		chunk = append(chunk, 'a') // chunk extension
    	}
    	chunk = append(chunk, "\r\nX\r\n"...)
    	const bodylen = 1 << 20
    	r := NewChunkedReader(&funcReader{f: func(i int) ([]byte, error) {
    		if i < bodylen {
    			return chunk, nil
    		}
    		return []byte("0\r\n"), nil
    	}})
    	_, err := io.ReadAll(r)
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 20:45:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/tests/check.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 133 bytes
    - Viewed (0)
  10. releasenotes/notes/x-check-inject.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - https://github.com/istio/istio/issues/38299
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 08 04:41:42 UTC 2022
    - 295 bytes
    - Viewed (0)
Back to top