Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,172 for scase (0.47 sec)

  1. src/runtime/select.go

    )
    
    func selectsetpc(pc *uintptr) {
    	*pc = getcallerpc()
    }
    
    func sellock(scases []scase, lockorder []uint16) {
    	var c *hchan
    	for _, o := range lockorder {
    		c0 := scases[o].c
    		if c0 != c {
    			c = c0
    			lock(&c.lock)
    		}
    	}
    }
    
    func selunlock(scases []scase, lockorder []uint16) {
    	// We must be very careful here to not touch sel after we have unlocked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/select.go

    	return typecheck.ConvNop(s, t)
    }
    
    var scase *types.Type
    
    // Keep in sync with src/runtime/select.go.
    func scasetype() *types.Type {
    	if scase == nil {
    		n := ir.NewDeclNameAt(src.NoXPos, ir.OTYPE, ir.Pkgs.Runtime.Lookup("scase"))
    		scase = types.NewNamed(n)
    		n.SetType(scase)
    		n.SetTypecheck(1)
    
    		scase.SetUnderlying(types.NewStruct([]*types.Field{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. test/live.go

    	if b {
    		select { // ERROR "live at call to selectgo:( .autotmp_[0-9]+)+$" "stack object .autotmp_[0-9]+ \[4\]runtime.scase$"
    		case <-fc38():
    			printnl()
    		case fc38() <- *fi38(1): // ERROR "live at call to fc38:( .autotmp_[0-9]+)+$" "live at call to fi38:( .autotmp_[0-9]+)+$" "stack object .autotmp_[0-9]+ string$"
    			printnl()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. test/live_regabi.go

    	if b {
    		select { // ERROR "live at call to selectgo:( .autotmp_[0-9]+)+$" "stack object .autotmp_[0-9]+ \[4\]runtime.scase$"
    		case <-fc38():
    			printnl()
    		case fc38() <- *fi38(1): // ERROR "live at call to fc38:( .autotmp_[0-9]+)+$" "live at call to fi38:( .autotmp_[0-9]+)+$" "stack object .autotmp_[0-9]+ string$"
    			printnl()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    		case STOSB, MOVSB, CMPSB, LODSB, SCASB:
    			prefix = "byte "
    		case STOSW, MOVSW, CMPSW, LODSW, SCASW:
    			prefix = "word "
    		case STOSD, MOVSD, CMPSD, LODSD, SCASD:
    			prefix = "dword "
    		case STOSQ, MOVSQ, CMPSQ, LODSQ, SCASQ:
    			prefix = "qword "
    		case LAR:
    			prefix = "word "
    		case BOUND:
    			if inst.Mode == 32 {
    				prefix = "qword "
    			} else {
    				prefix = "dword "
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/scale.go

    	Status                           *v1beta2.ScaleStatus `json:"status,omitempty"`
    }
    
    // ScaleApplyConfiguration constructs an declarative configuration of the Scale type for use with
    // apply.
    func Scale() *ScaleApplyConfiguration {
    	b := &ScaleApplyConfiguration{}
    	b.WithKind("Scale")
    	b.WithAPIVersion("apps/v1beta2")
    	return b
    }
    
    // WithKind sets the Kind field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v1/scale.go

    }
    
    // ScaleApplyConfiguration constructs an declarative configuration of the Scale type for use with
    // apply.
    func Scale() *ScaleApplyConfiguration {
    	b := &ScaleApplyConfiguration{}
    	b.WithKind("Scale")
    	b.WithAPIVersion("autoscaling/v1")
    	return b
    }
    
    // WithKind sets the Kind field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  8. hack/testdata/scale-deploy-2.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      labels:
        run: hello
      name: scale-2
    spec:
      replicas: 1
      selector:
        matchLabels:
          run: hello
      strategy:
        rollingUpdate:
          maxSurge: 1
          maxUnavailable: 1
        type: RollingUpdate
      template:
        metadata:
          labels:
            run: hello
        spec:
          containers:
          - image: aronchick/hello-node:2.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 19 16:19:12 UTC 2018
    - 436 bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/autoscaling.v1.Scale.json

    {
      "kind": "Scale",
      "apiVersion": "autoscaling/v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
        "labels": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v1.Scale.json

    {
      "kind": "Scale",
      "apiVersion": "autoscaling/v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
        "labels": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top