Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 88 of 88 for Boundary (0.12 sec)

  1. src/runtime/mem.go

    //
    // This file defines a cross-OS interface for a common set of helpers
    // that transition memory regions between these states. The helpers call into
    // OS-specific implementations that handle errors, while the interface boundary
    // implements cross-OS functionality, like updating runtime accounting.
    
    // sysAlloc transitions an OS-chosen region of memory from None to Ready.
    // More specifically, it obtains a large chunk of zeroed memory from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_s390x.s

    //
    // Parameters:
    //
    //      R2:    Initial CRC value, typically ~0; and final CRC (return) value.
    //      R3:    Input buffer pointer, performance might be improved if the
    //             buffer is on a doubleword boundary.
    //      R4:    Length of the buffer, must be 64 bytes or greater.
    //
    // Register usage:
    //
    //      R5:     CRC-32 constant pool base pointer.
    //      V0:     Initial CRC value and intermediate constants and results.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 20 00:49:17 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/handler.go

    				// TODO fix gorestful, remove TPRs, or stop using gorestful
    				d.goRestfulContainer.Dispatch(w, req)
    				return
    			}
    
    		case strings.HasPrefix(path, ws.RootPath()):
    			// ensure an exact match or a path boundary match
    			if len(path) == len(ws.RootPath()) || path[len(ws.RootPath())] == '/' {
    				klog.V(5).Infof("%v: %v %q satisfied by gorestful with webservice %v", d.name, req.Method, path, ws.RootPath())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 14 17:10:00 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/ingress.go

    	if err != nil {
    		return "", fmt.Errorf("unable to get ingressImpl gateway stats: %v", err)
    	}
    	if i < 0 || i >= len(pods.Items) {
    		return "", fmt.Errorf("pod index out of boundary (%d): %d", len(pods.Items), i)
    	}
    	return pods.Items[i].Name, nil
    }
    
    func (c *ingressImpl) Namespace() string {
    	return c.service.Namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/log/log_test.go

    		now.Year(), now.Month(), now.Day(), now.Hour(), now.Minute(), now.Second())
    	got := b.String()
    	if got == want {
    		return
    	}
    	// It's possible we crossed a second boundary between getting now and logging,
    	// so add a second and try again. This should very nearly always work.
    	now = now.Add(time.Second)
    	want = fmt.Sprintf("Test:%d/%.2d/%.2d %.2d:%.2d:%.2d hello\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 20:04:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. src/strconv/testdata/testfp.txt

    # binary scientific notation: NpE = N x 2^E.
    
    # TODO:
    #	Powers of 10.
    #	Powers of 2.
    #	%.20g versions.
    #	random sources
    #	random targets
    #	random targets ± half a ULP
    
    # Difficult boundary cases, derived from tables given in
    #	Vern Paxson, A Program for Testing IEEE Decimal-Binary Conversion
    #	ftp://ftp.ee.lbl.gov/testbase-report.ps.Z
    
    # Table 1: Stress Inputs for Conversion to 53-bit Binary, < 1/2 ULP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 7.9K bytes
    - Viewed (0)
  7. src/syscall/route_bsd.go

    	//   doesn't mean 0.0.0.0/0 or ::/0
    	//
    	// - The kernel form appends leading bytes to the prefix field
    	//   to make the <length, prefix> tuple to be conformed with
    	//   the routing message boundary
    	l := int(rsaAlignOf(int(b[0])))
    	if len(b) < l {
    		return nil, EINVAL
    	}
    	// Don't reorder case expressions.
    	// The case expressions for IPv6 must come first.
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/cse.go

    					if w.Pos.IsStmt() == src.PosIsStmt {
    						// about to lose a statement marker, w
    						// w is an input to v; if they're in the same block
    						// and the same line, v is a good-enough new statement boundary.
    						if w.Block == v.Block && w.Pos.Line() == v.Pos.Line() {
    							v.Pos = v.Pos.WithIsStmt()
    							w.Pos = w.Pos.WithNotStmt()
    						} // TODO and if this fails?
    					}
    					v.SetArg(i, x)
    					rewrites++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top