Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,014 for windowed (2.56 sec)

  1. src/internal/trace/gc.go

    		endTime = utilEnd
    	}
    	acc.resetTime()
    	for {
    		// Advance edges to time and time+window.
    		mu := (right.advance(time+int64(window)) - left.advance(time)).mean(window)
    		if acc.addMU(time, mu, window) {
    			break
    		}
    		if time == endTime {
    			break
    		}
    
    		// The maximum slope of the windowed mutator
    		// utilization function is 1/window, so we can always
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. src/runtime/hash_test.go

    	if race.Enabled {
    		t.Skip("Too long for race mode")
    	}
    	t.Parallel()
    	h := newHashSet()
    	t.Logf("32 bit keys")
    	windowed(t, h, &Int32Key{})
    	t.Logf("64 bit keys")
    	windowed(t, h, &Int64Key{})
    	t.Logf("string keys")
    	windowed(t, h, &BytesKey{make([]byte, 128)})
    }
    func windowed(t *testing.T, h *HashSet, k Key) {
    	if GOARCH == "wasm" {
    		t.Skip("Too slow on wasm")
    	}
    	if PtrSize == 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. src/hash/maphash/smhasher_test.go

    			}
    		}
    	}
    }
    
    // All bit rotations of a set of distinct keys
    func TestSmhasherWindowed(t *testing.T) {
    	t.Parallel()
    	windowed(t, &bytesKey{make([]byte, 128)})
    }
    func windowed(t *testing.T, k key) {
    	if runtime.GOARCH == "wasm" {
    		t.Skip("Too slow on wasm")
    	}
    	if testing.Short() {
    		t.Skip("Skipping in short mode")
    	}
    	const BITS = 16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/math/big/nat.go

    	}
    	// y > 1
    
    	if len(m) != 0 {
    		// We likely end up being as long as the modulus.
    		z = z.make(len(m))
    
    		// If the exponent is large, we use the Montgomery method for odd values,
    		// and a 4-bit, windowed exponentiation for powers of two,
    		// and a CRT-decomposed Montgomery method for the remaining values
    		// (even values times non-trivial odd values, which decompose into one
    		// instance of each of the first two cases).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. src/internal/zstd/window.go

    // reset clears stored data and configures window size.
    func (w *window) reset(size int) {
    	b := w.data[:0]
    	if cap(b) < size {
    		b = make([]byte, 0, size)
    	}
    	w.data = b
    	w.off = 0
    	w.size = size
    }
    
    // len returns the number of stored bytes.
    func (w *window) len() uint32 {
    	return uint32(len(w.data))
    }
    
    // save stores up to size last bytes from the buf.
    func (w *window) save(buf []byte) {
    	if w.size == 0 {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:49:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. cluster/images/etcd/Dockerfile.windows

    # # which is not desirable. See: https://github.com/moby/buildkit/issues/1560
    # # TODO(claudiub): remove this once the issue has been resolved.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 13 17:06:59 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultTargetMachineFactoryTest.groovy

        def "can use created target machines in Set"() {
            def windows1 = factory.windows
            def windows2 = factory.windows
            def linux1 = factory.linux.x86_64
            def linux2 = factory.linux.x86_64
    
            expect:
            def targetMachines = [windows1, windows2, linux1, linux2] as Set
            targetMachines.size() == 2
            targetMachines == [windows1, linux1] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/sourceset-variant/groovy/src/main/windows/platform-windows.c

    #include "platform.h"
    
    const char* platform_name = "Windows";
    
    int max_path_length() { return 260; }
    
    // 640K ought to be enough for anybody.
    unsigned long long max_memory() { return KB(640); }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 229 bytes
    - Viewed (0)
  9. cluster/gce/windows/README-GCE-Windows-kube-up.md

    command to bring up a cluster for running the K8s e2e tests. See the
    [windows-gce](https://github.com/kubernetes/test-infra/blob/master/config/jobs/kubernetes/sig-windows/windows-gce.yaml)
    e2e test configuration for the latest environment variables.
    
    ```bash
    KUBE_GCE_ENABLE_IP_ALIASES=true KUBERNETES_NODE_PLATFORM=windows \
      LOGGING_STACKDRIVER_RESOURCE_TYPES=new NUM_NODES=2 \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 21:39:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. src/compress/flate/deflate.go

    	// Encode the block.
    	d.tokens = d.bestSpeed.encode(d.tokens[:0], d.window[:d.windowEnd])
    
    	// If we removed less than 1/16th, Huffman compress the block.
    	if len(d.tokens) > d.windowEnd-(d.windowEnd>>4) {
    		d.w.writeBlockHuff(false, d.window[:d.windowEnd])
    	} else {
    		d.w.writeBlockDynamic(d.tokens, false, d.window[:d.windowEnd])
    	}
    	d.err = d.w.err
    	d.windowEnd = 0
    }
    
    func (d *compressor) initDeflate() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top