Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 127 of 127 for throws (0.12 sec)

  1. istioctl/pkg/describe/describe.go

    	return "", nil
    }
    
    // TODO simplify this by showing for each matching Destination the negation of the previous HttpMatchRequest
    // and showing the non-matching Destinations.  (The current code is ad-hoc, and usually shows most of that information.)
    func printVirtualService(writer io.Writer, initPrintNum int,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    var __cgofn__cgoPREFIX_Cfunc__Cmalloc byte
    var _cgoPREFIX_Cfunc__Cmalloc = unsafe.Pointer(&__cgofn__cgoPREFIX_Cfunc__Cmalloc)
    
    //go:linkname runtime_throw runtime.throw
    func runtime_throw(string)
    
    //go:cgo_unsafe_args
    func _cgo_cmalloc(p0 uint64) (r1 unsafe.Pointer) {
    	_cgo_runtime_cgocall(_cgoPREFIX_Cfunc__Cmalloc, uintptr(unsafe.Pointer(&p0)))
    	if r1 == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    		// of an object to check for object existence. For versioned buckets, MinIO's non-recursive
    		// call will report top level prefixes in deleted state, whereas spark/hadoop interpret this as non-empty
    		// and throw a 404 exception. This is especially a problem for spark jobs overwriting the same partition
    		// repeatedly. This workaround recursively lists the top 3 entries including delete markers to reflect the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

    #ifdef GOOS_windows
    	// Make sure we have enough room for 4 stack-backed fast-call
    	// registers as per Windows amd64 calling convention.
    	ADJSP	$32
    	// On Windows, asmcgocall_landingpad acts as landing pad for exceptions
    	// thrown in the cgo call. Exceptions that reach this function will be
    	// handled by runtime.sehtramp thanks to the SEH metadata added
    	// by the compiler.
    	// Note that runtime.sehtramp can't be attached directly to asmcgocall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers.go

    				//  API server (thus losing the exit code).
    				status, err = p.podCache.GetNewerThan(update.Options.Pod.UID, lastSyncTime)
    
    				if err != nil {
    					// This is the legacy event thrown by manage pod loop all other events are now dispatched
    					// from syncPodFn
    					p.recorder.Eventf(update.Options.Pod, v1.EventTypeWarning, events.FailedSync, "error determining status: %v", err)
    					return err
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc.go

    // the source of a merge edge has only one successor, so we can add
    // fixup code to the end of that block.
    
    // Spilling
    //
    // During the normal course of the allocator, we might throw a still-live
    // value out of all registers. When that value is subsequently used, we must
    // load it from a slot on the stack. We must also issue an instruction to
    // initialize that stack location with a copy of v.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  7. src/testing/testing.go

    		// Neither humans nor cmd/test2json can parse those easily.
    		// (See https://go.dev/issue/40771.)
    		//
    		// If test2json is used, we never flush to parent tests,
    		// so that the json stream shows subtests as they finish.
    		// (See https://go.dev/issue/29811.)
    		c.chatty.Updatef(testName, format, args...)
    	} else {
    		// We're flushing to the output buffer of the parent test, which will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top