Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for abend (0.05 sec)

  1. src/cmd/compile/internal/wasm/ssa.go

    			s.Prog(wasm.AI32Eqz)
    			s.Prog(wasm.AIf)
    			s.Br(obj.AJMP, b.Succs[1].Block())
    			s.Prog(wasm.AEnd)
    		case b.Succs[1].Block():
    			// if true, jump to b.Succs[0]
    			getValue32(s, b.Controls[0])
    			s.Prog(wasm.AIf)
    			s.Br(obj.AJMP, b.Succs[0].Block())
    			s.Prog(wasm.AEnd)
    		default:
    			// if true, jump to b.Succs[0], else jump to b.Succs[1]
    			getValue32(s, b.Controls[0])
    			s.Prog(wasm.AIf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  2. tests/integration/security/external_ca/main_test.go

        k8s:
          env:
          - name: CERT_SIGNER_DOMAIN
            value: clusterissuers.istio.io
          - name: PILOT_CERT_PROVIDER
            value: k8s.io/clusterissuers.istio.io/signer2
          overlays:
            # Amend ClusterRole to add permission for istiod to approve certificate signing by custom signer
            - kind: ClusterRole
              name: istiod-clusterrole-istio-system
              patches:
                - path: rules[-1]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    			bElse = bEnd
    		}
    		s.condBranch(n.Cond, bThen, bElse, likely)
    
    		if len(n.Body) != 0 {
    			s.startBlock(bThen)
    			s.stmtList(n.Body)
    			if b := s.endBlock(); b != nil {
    				b.AddEdgeTo(bEnd)
    			}
    		}
    		if len(n.Else) != 0 {
    			s.startBlock(bElse)
    			s.stmtList(n.Else)
    			if b := s.endBlock(); b != nil {
    				b.AddEdgeTo(bEnd)
    			}
    		}
    		s.startBlock(bEnd)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/wasm/a.out.go

    	// Their order matters, since it matches the opcode encoding.
    	// Gaps in the encoding are indicated by comments.
    
    	AUnreachable // opcode 0x00
    	ANop
    	ABlock
    	ALoop
    	AIf
    	AElse
    
    	AEnd // opcode 0x0B
    	ABr
    	ABrIf
    	ABrTable
    	// ACall and AReturn are WebAssembly instructions. obj.ACALL and obj.ARET are higher level instructions
    	// with Go semantics, e.g. they manipulate the Go stack on the linear memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. build/pause/Makefile

    # NOTE(claudiub): A non-default builder instance is needed in order to build Windows images.
    all-push: all-container-registry push-manifest
    
    push-manifest: SHELL:=/bin/bash
    push-manifest:
    	docker manifest create --amend $(IMAGE):$(TAG) $(shell echo $(ALL_OS_ARCH) | sed -e "s~[^ ]*~$(IMAGE):$(TAG)\-&~g")
    	set -x; for arch in $(ALL_ARCH.linux); do docker manifest annotate --os linux --arch $${arch} ${IMAGE}:${TAG} ${IMAGE}:${TAG}-linux-$${arch}; done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. cluster/images/etcd/Makefile

    # NOTE(claudiub): A non-default builder instance is needed in order to build Windows images.
    all-push: all-push-images push-manifest
    
    push-manifest:
    	docker manifest create --amend $(MANIFEST_IMAGE):$(IMAGE_TAG) $(shell echo $(ALL_OS_ARCH) | sed -e "s~[^ ]*~$(MANIFEST_IMAGE):$(IMAGE_TAG)\-&~g")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/aenum.go

    	AWRFSBASEQ
    	AWRGSBASEL
    	AWRGSBASEQ
    	AWRMSR
    	AWRPKRU
    	AXABORT
    	AXACQUIRE
    	AXADDB
    	AXADDL
    	AXADDQ
    	AXADDW
    	AXBEGIN
    	AXCHGB
    	AXCHGL
    	AXCHGQ
    	AXCHGW
    	AXEND
    	AXGETBV
    	AXLAT
    	AXORB
    	AXORL
    	AXORPD
    	AXORPS
    	AXORQ
    	AXORW
    	AXRELEASE
    	AXRSTOR
    	AXRSTOR64
    	AXRSTORS
    	AXRSTORS64
    	AXSAVE
    	AXSAVE64
    	AXSAVEC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/plist.go

    	var plink *Prog
    	for p := plist.Firstpc; p != nil; p = plink {
    		if ctxt.Debugasm > 0 && ctxt.Debugvlog {
    			fmt.Printf("obj: %v\n", p)
    		}
    		plink = p.Link
    		p.Link = nil
    
    		switch p.As {
    		case AEND:
    			continue
    
    		case ATEXT:
    			s := p.From.Sym
    			if s == nil {
    				// func _() { }
    				curtext = nil
    				continue
    			}
    			text = append(text, s)
    			etext = p
    			curtext = s
    			continue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/plive.go

    				lv.unsafePoints.Set(int32(v.ID))
    			}
    		}
    	}
    
    	for _, b := range lv.f.Blocks {
    		for _, v := range b.Values {
    			if v.Op != ssa.OpWBend {
    				continue
    			}
    			// WBend appears at the start of a block, like this:
    			//    ...
    			//    if wbEnabled: goto C else D
    			// C:
    			//    ... some write barrier enabled code ...
    			//    goto B
    			// D:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    If you didn't sign off your commits before creating the pull request, you can fix that after the fact.
    
    To sign off a single commit:
    
    `git commit --amend --signoff`
    
    To sign off one or multiple commits:
    
    `git rebase --signoff origin/master`
    
    Then force push your branch:
    
    `git push --force origin test-branch`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top