Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 117 for ErrRange (0.19 sec)

  1. src/runtime/asm_s390x.s

    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    // _rt0_s390x_lib is common startup code for s390x 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
    // R2 and R3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/runtime/chan.go

    // violating that assumption, but the write barrier has to work.
    // typedmemmove will call bulkBarrierPreWrite, but the target bytes
    // are not in the heap, so that will not help. We arrange to call
    // memmove and typeBitsBulkBarrier instead.
    
    func sendDirect(t *_type, sg *sudog, src unsafe.Pointer) {
    	// src is on our stack, dst is a slot on another stack.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    }
    `
    
    const cStringDef = `
    // CString converts the Go string s to a C string.
    //
    // The C string is allocated in the C heap using malloc.
    // It is the caller's responsibility to arrange for it to be
    // freed, such as by calling C.free (be sure to include stdlib.h
    // if C.free is needed).
    func _Cfunc_CString(s string) *_Ctype_char {
    	if len(s)+1 <= 0 {
    		panic("string too large")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/fetch.go

    // mod.Version may have the additional suffix "/go.mod" to request the checksum
    // for the module's go.mod file only.
    func checkModSum(mod module.Version, h string) error {
    	// We lock goSum when manipulating it,
    	// but we arrange to release the lock when calling checkSumDB,
    	// so that parallel calls to checkModHash can execute parallel calls
    	// to checkSumDB.
    
    	// Check whether mod+h is listed in go.sum already. If so, we're done.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pilot/pkg/networking/core/route/route.go

    // Note: Currently we are not fully utilizing this structure. We could invoke this logic
    // once for all sidecars in the cluster to compute all RDS for inside the mesh and arrange
    // it by listener port. However to properly use such an optimization, we need to have an
    // eventing subsystem to invalidate the computed routes if any service changes/virtual Services change.
    type VirtualHostWrapper struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
Back to top