Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for abend (0.07 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGUSR1", "user defined signal 1"},
    	{17, "SIGUSR2", "user defined signal 2"},
    	{18, "SIGABND", "abend"},
    	{19, "SIGCONT", "continued"},
    	{20, "SIGCHLD", "child exited"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    	{22, "SIGTTOU", "stopped (tty output)"},
    	{23, "SIGIO", "I/O possible"},
    	{24, "SIGQUIT", "quit"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. src/cmd/trace/jsontrace.go

    		}
    		if a.Start != b.Start {
    			return cmp.Compare(aStart, bStart)
    		}
    		// Break ties with the end time.
    		aEnd, bEnd := parsed.endTime(), parsed.endTime()
    		if a.End != nil {
    			aEnd = a.End.Time()
    		}
    		if b.End != nil {
    			bEnd = b.End.Time()
    		}
    		return cmp.Compare(aEnd, bEnd)
    	})
    }
    
    func defaultGenOpts() *genOpts {
    	return &genOpts{
    		startTime: time.Duration(0),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.5K 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/internal/obj/link.go

    // and are declared in their respective architecture's subpackage.
    type As int16
    
    // These are the portable opcodes.
    const (
    	AXXX As = iota
    	ACALL
    	ADUFFCOPY
    	ADUFFZERO
    	AEND
    	AFUNCDATA
    	AJMP
    	ANOP
    	APCALIGN
    	APCALIGNMAX // currently x86, amd64 and arm64
    	APCDATA
    	ARET
    	AGETCALLERPC
    	ATEXT
    	AUNDEF
    	A_ARCHSPECIFIC
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "ZeroWB", argLength: 2, typ: "Mem", aux: "TypSize"}, // arg0=destptr, arg1=mem, auxint=size, aux=type. Returns memory.
    	{name: "WBend", argLength: 1, typ: "Mem"},                  // Write barrier code is done, interrupting is now allowed.
    
    	// WB invokes runtime.gcWriteBarrier.  This is not a normal
    	// call: it takes arguments in registers, doesn't clobber
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    	{AXABORT, yxabort, Px, opBytes{0xc6, 0xf8}},
    	{AXEND, ynone, Px, opBytes{0x0f, 01, 0xd5}},
    	{AXTEST, ynone, Px, opBytes{0x0f, 01, 0xd6}},
    	{AXGETBV, ynone, Pm, opBytes{01, 0xd0}},
    	{obj.AFUNCDATA, yfuncdata, Px, opBytes{0, 0}},
    	{obj.APCDATA, ypcdata, Px, opBytes{0, 0}},
    	{obj.ADUFFCOPY, yduff, Px, opBytes{0xe8}},
    	{obj.ADUFFZERO, yduff, Px, opBytes{0xe8}},
    
    	{obj.AEND, nil, 0, opBytes{}},
    	{0, nil, 0, opBytes{}},
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top