Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 225 for goio (0.16 sec)

  1. src/runtime/asm_wasm.s

    	MOVD $0, gobuf_sp(R0)
    	MOVD $0, gobuf_ret(R0)
    	MOVD $0, gobuf_ctxt(R0)
    
    	I32Const $1
    	Return
    
    // func mcall(fn func(*g))
    // Switch to m->g0's stack, call fn(g).
    // Fn must never return. It should gogo(&g->sched)
    // to keep running g.
    TEXT runtime·mcall(SB), NOSPLIT, $0-8
    	// CTXT = fn
    	MOVD fn+0(FP), CTXT
    	// R1 = g.m
    	MOVD g_m(g), R1
    	// R2 = g0
    	MOVD m_g0(R1), R2
    
    	// save state in g->sched
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. src/runtime/netpoll_solaris.go

    			throw("runtime: netpoll failed")
    		}
    		// If a timed sleep was interrupted and there are no events,
    		// just return to recalculate how long we should sleep now.
    		if delay > 0 {
    			return gList{}, 0
    		}
    		goto retry
    	}
    
    	var toRun gList
    	delta := int32(0)
    	for i := 0; i < int(n); i++ {
    		ev := &events[i]
    
    		if ev.portev_source == _PORT_SOURCE_ALERT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admission/v1beta1/generated.pb.go

    limitations under the License.
    */
    
    // Code generated by protoc-gen-gogo. DO NOT EDIT.
    // source: k8s.io/api/admission/v1beta1/generated.proto
    
    package v1beta1
    
    import (
    	fmt "fmt"
    
    	io "io"
    
    	proto "github.com/gogo/protobuf/proto"
    	github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys"
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	math "math"
    	math_bits "math/bits"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  4. src/runtime/asm_arm64.s

    	BL	runtime·mstart0(SB)
    	RET // not reached
    
    /*
     *  go-routine
     */
    
    // void gogo(Gobuf*)
    // restore state from Gobuf; longjmp
    TEXT runtime·gogo(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD	buf+0(FP), R5
    	MOVD	gobuf_g(R5), R6
    	MOVD	0(R6), R4	// make sure g != nil
    	B	gogo<>(SB)
    
    TEXT gogo<>(SB), NOSPLIT|NOFRAME, $0
    	MOVD	R6, g
    	BL	runtime·save_g(SB)
    
    	MOVD	gobuf_sp(R5), R0
    	MOVD	R0, RSP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  5. src/runtime/asm_ppc64x.s

    	BL	runtime·mstart0(SB)
    	RET // not reached
    
    /*
     *  go-routine
     */
    
    // void gogo(Gobuf*)
    // restore state from Gobuf; longjmp
    TEXT runtime·gogo(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD	buf+0(FP), R5
    	MOVD	gobuf_g(R5), R6
    	MOVD	0(R6), R4	// make sure g != nil
    	BR	gogo<>(SB)
    
    TEXT gogo<>(SB), NOSPLIT|NOFRAME, $0
    	MOVD	R6, g
    	BL	runtime·save_g(SB)
    
    	MOVD	gobuf_sp(R5), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  6. src/internal/zstd/zstd.go

    			// This is a skippable frame.
    			r.blockOffset += int64(relativeOffset) + 4
    			if err := r.skipFrame(); err != nil {
    				return err
    			}
    			r.readOneFrame = true
    			goto retry
    		}
    
    		return r.makeError(relativeOffset, "invalid magic number")
    	}
    
    	relativeOffset += 4
    
    	// Read Frame_Header_Descriptor. RFC 3.1.1.1.1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. cmd/s3-zip-handlers.go

    					if len(listObjectsInfo.Prefixes) == 0 || commonPrefix != listObjectsInfo.Prefixes[len(listObjectsInfo.Prefixes)-1] {
    						listObjectsInfo.Prefixes = append(listObjectsInfo.Prefixes, commonPrefix)
    						count++
    					}
    					goto next
    				}
    			}
    			listObjectsInfo.Objects = append(listObjectsInfo.Objects, ObjectInfo{
    				Bucket:  bucket,
    				Name:    objName,
    				Size:    int64(file.UncompressedSize64),
    				ModTime: zipObjInfo.ModTime,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authentication/v1beta1/generated.pb.go

    limitations under the License.
    */
    
    // Code generated by protoc-gen-gogo. DO NOT EDIT.
    // source: k8s.io/api/authentication/v1beta1/generated.proto
    
    package v1beta1
    
    import (
    	fmt "fmt"
    
    	io "io"
    
    	proto "github.com/gogo/protobuf/proto"
    	github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys"
    
    	math "math"
    	math_bits "math/bits"
    	reflect "reflect"
    	strings "strings"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admission/v1/generated.pb.go

    limitations under the License.
    */
    
    // Code generated by protoc-gen-gogo. DO NOT EDIT.
    // source: k8s.io/api/admission/v1/generated.proto
    
    package v1
    
    import (
    	fmt "fmt"
    
    	io "io"
    
    	proto "github.com/gogo/protobuf/proto"
    	github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys"
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	math "math"
    	math_bits "math/bits"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 46K bytes
    - Viewed (0)
  10. go.mod

    	github.com/go-openapi/validate v0.24.0 // indirect
    	github.com/gobwas/httphead v0.1.0 // indirect
    	github.com/gobwas/pool v0.2.1 // indirect
    	github.com/goccy/go-json v0.10.3 // indirect
    	github.com/gogo/protobuf v1.3.2 // indirect
    	github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
    	github.com/golang/protobuf v1.5.4 // indirect
    	github.com/golang/snappy v0.0.4 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top