Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for ErrRange (0.12 sec)

  1. pkg/kubelet/server/server.go

    	return func(c *cadvisorapi.ContainerInfo) map[string]string {
    		// Prometheus requires that all metrics in the same family have the same labels,
    		// so we arrange to supply blank strings for missing labels
    		var name, image, podName, namespace, containerName string
    		if len(c.Aliases) > 0 {
    			name = c.Aliases[0]
    		}
    		image = c.Spec.Image
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/action.go

    			// On OS X, the linker output name gets recorded in the
    			// shared library's LC_ID_DYLIB load command.
    			// The code invoking the linker knows to pass only the final
    			// path element. Arrange that the path element matches what
    			// we'll install it as; otherwise the library is only loadable as "a.out".
    			// On Windows, DLL file name is recorded in PE file
    			// export section, so do like on OS X.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. src/net/http/client.go

    	// but depending on the implementation may do so in a separate
    	// goroutine even after RoundTrip returns. This means that
    	// callers wanting to reuse the body for subsequent requests
    	// must arrange to wait for the Close call before doing so.
    	//
    	// The Request's URL and Header fields must be initialized.
    	RoundTrip(*Request) (*Response, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  4. src/index/suffixarray/sais.go

    	}
    	if len(tmp) < numLMS {
    		// TestSAIS/forcealloc reaches this code.
    		n := maxID
    		if n < numLMS/2 {
    			n = numLMS / 2
    		}
    		tmp = make([]int32, n)
    	}
    
    	// sais_32 requires that the caller arrange to clear dst,
    	// because in general the caller may know dst is
    	// freshly-allocated and already cleared. But this one is not.
    	clear(dst)
    	sais_32(text, maxID, dst, tmp)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. src/runtime/asm_arm.s

    TEXT main(SB),NOSPLIT|NOFRAME,$0
    	B	runtime·rt0_go(SB)
    
    // _rt0_arm_lib is common startup code for most ARM systems when
    // using -buildmode=c-archive or -buildmode=c-shared. The linker will
    // arrange to invoke this function as a global constructor (for
    // c-archive) or when the shared library is loaded (for c-shared).
    // We expect argc and argv to be passed in the usual C ABI registers
    // R0 and R1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  6. src/runtime/signal_unix.go

    		// causes a memory fault. Don't turn that into a panic.
    		flags = _SigThrow
    	}
    	if !c.sigFromUser() && flags&_SigPanic != 0 {
    		// The signal is going to cause a panic.
    		// Arrange the stack so that it looks like the point
    		// where the signal occurred made a call to the
    		// function sigpanic. Then set the PC to sigpanic.
    
    		// Have to pass arguments out of band since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  7. src/runtime/time.go

    		// unlock above, and then a t.stop or t.modify changes the timer
    		// and returns. At that point, the send needs not to happen after all.
    		// The way we arrange for it not to happen is that t.stop and t.modify
    		// both increment t.seq while holding both t.mu and t.sendLock.
    		// We copied the seq value above while holding t.mu.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. doc/asm.html

    executing the pseudo-instruction <code>GO_RESULTS_INITIALIZED</code>.
    This instruction records that the results are now initialized
    and should be scanned during stack movement and garbage collection.
    It is typically easier to arrange that assembly functions do not
    return pointers or do not contain call instructions;
    no assembly functions in the standard library use
    <code>GO_RESULTS_INITIALIZED</code>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  9. src/runtime/asm_386.s

    	MOVL	AX, 0(SP)
    	MOVL	BX, 4(SP)
    	JMP	runtime·rt0_go(SB)
    
    // _rt0_386_lib is common startup code for most 386 systems when
    // using -buildmode=c-archive or -buildmode=c-shared. The linker will
    // arrange to invoke this function as a global constructor (for
    // c-archive) or when the shared library is loaded (for c-shared).
    // We expect argc and argv to be passed on the stack following the
    // usual C ABI.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top