Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 117 for small7 (0.15 sec)

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

    		state.currentState.registers = make([][]SlotID, len(state.registers))
    	} else {
    		state.currentState.registers = state.currentState.registers[:len(state.registers)]
    	}
    
    	// A relatively small slice, but used many times as the return from processValue.
    	state.changedVars = newSparseSet(numVars)
    	state.changedSlots = newSparseSet(numSlots)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	// the saTmp from the top-most recursion, it is typically larger than
    	// the current saTmp (because the current sa gets smaller and smaller
    	// as the recursion gets deeper), and we keep reusing that top-most
    	// large saTmp instead of the offered smaller ones.
    	//
    	// Why is the subproblem length so often just under len(sa)/3?
    	// See Nong, Zhang, and Chen, section 3.6 for a plausible explanation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf.go

    	}
    
    	if a > elfreserve {
    		Errorf(nil, "ELFRESERVE too small: %d > %d with %d text sections", a, elfreserve, numtext)
    	}
    
    	// Verify the amount of space allocated for the elf header is sufficient.  The file offsets are
    	// already computed in layout, so we could spill into another section.
    	if a > int64(HEADR) {
    		Errorf(nil, "HEADR too small: %d > %d with %d text sections", a, HEADR, numtext)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    //
    // To avoid requesting more OS memory while there are unswept spans, when a
    // goroutine needs another span, it first attempts to reclaim that much memory
    // by sweeping. When a goroutine needs to allocate a new small-object span, it
    // sweeps small-object spans for the same object size until it frees at least
    // one object. When a goroutine needs to allocate large-object span from heap,
    // it sweeps spans until it frees at least that many pages into heap. There is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		r.delegate.ServeHTTP(w, req)
    		return
    	}
    
    	// There is a small chance that a CRD is being served because NamesAccepted condition is true,
    	// but it becomes "unserved" because another names update leads to a conflict
    	// and EstablishingController wasn't fast enough to put the CRD into the Established condition.
    	// We accept this as the problem is small and self-healing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/mips/asm0.go

    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    					// correctness of the program.
    					// According to the layout algorithm, the predecessor with the
    					// smaller blockOrder is the true branch, and the test results show
    					// that it is better to choose the predecessor with a smaller
    					// blockOrder than no choice.
    					if pb.likelyBranch() && !pSel.likelyBranch() || s.blockOrder[pb.ID] < s.blockOrder[pSel.ID] {
    						idx = i
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. src/time/time.go

    	// Largest time is 2540400h10m10.000000000s
    	w := len(buf)
    
    	u := uint64(d)
    	neg := d < 0
    	if neg {
    		u = -u
    	}
    
    	if u < uint64(Second) {
    		// Special case: if duration is smaller than a second,
    		// use smaller units, like 1.2ms
    		var prec int
    		w--
    		buf[w] = 's'
    		w--
    		switch {
    		case u == 0:
    			buf[w] = '0'
    			return w
    		case u < uint64(Microsecond):
    			// print nanoseconds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. src/net/netip/netip_test.go

    		"0xc0.0xa8.0x8c.0xff",
    		// IPv4 in class B form
    		"192.168.12345",
    		// IPv4 in class B form, with a small enough number to be
    		// parseable as a regular dotted decimal field.
    		"127.0.1",
    		// IPv4 in class A form
    		"192.1234567",
    		// IPv4 in class A form, with a small enough number to be
    		// parseable as a regular dotted decimal field.
    		"127.1",
    		// IPv4 field has value >255
    		"192.168.300.1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  10. src/net/http/fs_test.go

    	cst := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		w.Header().Set("Content-Encoding", "foo")
    		ServeFile(w, r, "testdata/file")
    
    		// Because the testdata is so small, it would fit in
    		// both the h1 and h2 Server's write buffers. For h1,
    		// sendfile is used, though, forcing a header flush at
    		// the io.Copy. http2 doesn't do a header flush so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
Back to top