Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 211 for Qword6 (0.19 sec)

  1. src/net/http/pprof/pprof.go

    	if r.Method == "POST" {
    		b = bufio.NewReader(r.Body)
    	} else {
    		b = bufio.NewReader(strings.NewReader(r.URL.RawQuery))
    	}
    
    	for {
    		word, err := b.ReadSlice('+')
    		if err == nil {
    			word = word[0 : len(word)-1] // trim +
    		}
    		pc, _ := strconv.ParseUint(string(word), 0, 64)
    		if pc != 0 {
    			f := runtime.FuncForPC(uintptr(pc))
    			if f != nil {
    				fmt.Fprintf(&buf, "%#x %s\n", pc, f.Name())
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/runtime/sys_freebsd_arm.s

    	CMP	$1, R0
    	B.NE	3(PC)
    
    	// get CNTPCT (Physical Count Register) into R0(low) R1(high)
    	// mrrc    15, 0, r0, r1, cr14
    	WORD	$0xec510f0e
    	B	2(PC)
    
    	// get CNTVCT (Virtual Count Register) into R0(low) R1(high)
    	// mrrc    15, 1, r0, r1, cr14
    	WORD	$0xec510f1e
    
    	MOVW	R0, ret+4(FP)
    	RET
    
    // func issetugid() int32
    TEXT runtime·issetugid(SB),NOSPLIT,$0
    	MOVW $SYS_issetugid, R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. src/go/build/constraint/expr.go

    		x = tag("ignore")
    	}
    	return x
    }
    
    // isValidTag reports whether the word is a valid build tag.
    // Tags must be letters, digits, underscores or dots.
    // Unlike in Go identifiers, all digits are fine (e.g., "386").
    func isValidTag(word string) bool {
    	if word == "" {
    		return false
    	}
    	for _, c := range word {
    		if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

         * from levels lower than the specified granularity will be ignored.
         * <p>The default granularity is -1, which specifies that test events from only the most granular level should be logged.  In other words, if a test method is not parameterized, only events
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_riscv64.s

    TEXT runtime·rtsigprocmask(SB),NOSPLIT|NOFRAME,$0-28
    	MOVW	how+0(FP), A0
    	MOV	new+8(FP), A1
    	MOV	old+16(FP), A2
    	MOVW	size+24(FP), A3
    	MOV	$SYS_rt_sigprocmask, A7
    	ECALL
    	MOV	$-4096, T0
    	BLTU	A0, T0, 2(PC)
    	WORD	$0	// crash
    	RET
    
    // func rt_sigaction(sig uintptr, new, old *sigactiont, size uintptr) int32
    TEXT runtime·rt_sigaction(SB),NOSPLIT|NOFRAME,$0-36
    	MOV	sig+0(FP), A0
    	MOV	new+8(FP), A1
    	MOV	old+16(FP), A2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/arm/asm.go

    //
    //         .align 2
    // local.dso_init:
    //         ldr r0, .Lmoduledata
    // .Lloadfrom:
    //         ldr r0, [r0]
    //         b runtime.addmoduledata@plt
    // .align 2
    // .Lmoduledata:
    //         .word local.moduledata(GOT_PREL) + (. - (.Lloadfrom + 4))
    // assembles to:
    //
    // 00000000 <local.dso_init>:
    //    0:        e59f0004        ldr     r0, [pc, #4]    ; c <local.dso_init+0xc>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  7. src/internal/abi/type.go

    // which can express repetition compactly. In either form, the
    // information is used by the runtime to initialize the heap bitmap,
    // and for large types (like 128 or more words), they are roughly the
    // same speed. GC programs are never much larger and often more
    // compact. (If large arrays are involved, they can be arbitrarily
    // more compact.)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/types.go

    	//
    	// LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
    	//
    	// +optional
    	LendablePercent *int32
    	// The `BorrowingCL` of an Exempt priority level is implicitly `ServerCL`.
    	// In other words, an exempt priority level
    	// has no meaningful limit on how much it borrows.
    	// There is no explicit representation of that here.
    }
    
    // LimitResponse defines how to handle requests that can not be executed right now.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  9. src/go/internal/gccgoimporter/testdata/v1reflect.gox

     func (f <type 42>) .reflect.mustBe (expected <type 28>);
     func (f <type 42>) .reflect.mustBeExported ();
     func (f <type 42>) .reflect.mustBeAssignable ();
    >; }>
     func (v <type 1>) .reflect.iword () <type 43 ".reflect.iword" <type 7>>;
     func (v <type 1>) Addr () <type 1>;
     func (v <type 1>) Bool () <type -15>;
     func (v <type 1>) Bytes () <type 44 [] <type -20>>;
     func (v <type 1>) CanAddr () <type -15>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  10. src/slices/slices_test.go

    	if want := []int{2, 9, 5, 1, 4, 1, 3}; !Equal(odd, want) {
    		t.Errorf("Reverse(odd) = %v, want %v", odd, want)
    	}
    
    	words := strings.Fields("one two three")
    	Reverse(words)
    	if want := strings.Fields("three two one"); !Equal(words, want) {
    		t.Errorf("Reverse(words) = %v, want %v", words, want)
    	}
    
    	singleton := []string{"one"}
    	Reverse(singleton)
    	if want := []string{"one"}; !Equal(singleton, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top