Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for seg3 (0.06 sec)

  1. src/crypto/internal/boring/build-goboring.sh

    # against a different compiler version, link our own __umodti3 into the syso.
    # This one is specialized so it only expects divisors below 2^64,
    # which is all BoringCrypto uses. (Otherwise it will seg fault.)
    cat >umod-amd64.s <<'EOF'
    # tu_int __umodti3(tu_int x, tu_int y)
    # x is rsi:rdi, y is rcx:rdx, return result is rdx:rax.
    .globl __umodti3
    __umodti3:
    	# specialized to u128 % u64, so verify that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/cds_test.go

    spec:
      hosts:
      - example.com
      ports:
      - name: port1
        number: 8080
        protocol: HTTP
      resolution: DNS
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: se3
    spec:
      hosts:
      - example.com
      ports:
      - name: port1
        number: 80
        protocol: HTTP
      resolution: DNS
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    	if !strings.Contains(s, "/") {
    		return resourceTuple{}, false, nil
    	}
    	seg := strings.Split(s, "/")
    	if len(seg) != 2 {
    		return resourceTuple{}, false, fmt.Errorf("arguments in resource/name form may not have more than one slash")
    	}
    	resource, name := seg[0], seg[1]
    	if len(resource) == 0 || len(name) == 0 || len(SplitResourceArgument(resource)) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  4. configure.py

      version_segments = version.split('.')
      # Treat "0.24" as "0.24.0"
      if len(version_segments) == 2:
        version_segments.append('0')
      for seg in version_segments:
        if not seg.isdigit():
          return None
    
      version_str = ''.join(['%03d' % int(seg) for seg in version_segments])
      return int(version_str)
    
    
    def retrieve_bazel_version():
      """Retrieve installed bazel version (or bazelisk).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/runtime/race_s390x.s

    TEXT	racecallatomic<>(SB), NOSPLIT, $0
    	MOVD	24(R15), R5			// Address (arg1, after 2xBL).
    	// If we pass an invalid pointer to the TSan runtime, it will cause a
    	// "fatal error: unknown caller pc". So trigger a SEGV here instead.
    	MOVB	(R5), R0
    	MOVD	runtime·racearenastart(SB), R0
    	CMPUBLT	R5, R0, racecallatomic_data	// Before racearena start?
    	MOVD	runtime·racearenaend(SB), R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. src/runtime/race_arm64.s

    	// R0 = *ThreadState
    	// R1 = caller pc
    	// R2 = pc
    	// R3 = addr of incoming arg list
    
    	// Trigger SIGSEGV early.
    	MOVD	40(RSP), R3	// 1st arg is addr. after two times BL, get it at 40(RSP)
    	MOVB	(R3), R13	// segv here if addr is bad
    	// Check that addr is within [arenastart, arenaend) or within [racedatastart, racedataend).
    	MOVD	runtime·racearenastart(SB), R10
    	CMP	R10, R3
    	BLT	racecallatomic_data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. src/net/http/request.go

    	// takes a lot of time, and most patterns will just have a couple of wildcards.
    	if r.pat == nil {
    		return -1
    	}
    	i := 0
    	for _, seg := range r.pat.segments {
    		if seg.wild && seg.s != "" {
    			if name == seg.s {
    				return i
    			}
    			i++
    		}
    	}
    	return -1
    }
    
    func (r *Request) expectsContinue() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. test/escape_reflect.go

    func set2(x int) int64 {
    	var a int // ERROR "moved to heap: a"
    	v := reflect.ValueOf(&a).Elem()
    	vx := reflect.ValueOf(x) // ERROR "x escapes to heap"
    	v.Set(vx)
    	return v.Int()
    }
    
    func set3(v reflect.Value, x int) { // ERROR "v does not escape"
    	v.SetInt(int64(x))
    }
    
    func set4(x int) int {
    	var a int
    	v := reflect.ValueOf(&a).Elem() // a should not escape, no error printed
    	v.SetInt(int64(x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. src/runtime/race_ppc64le.s

    // R8 contains addr of target function.
    TEXT	racecallatomic<>(SB), NOSPLIT, $0-0
    	// Trigger SIGSEGV early if address passed to atomic function is bad.
    	MOVD	(R6), R7	// 1st arg is addr
    	MOVB	(R7), R9	// segv here if addr is bad
    	// Check that addr is within [arenastart, arenaend) or within [racedatastart, racedataend).
    	MOVD	runtime·racearenastart(SB), R9
    	CMP	R7, R9
    	BLT	racecallatomic_data
    	MOVD	runtime·racearenaend(SB), R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    }
    
    func addsection(ldr *loader.Loader, arch *sys.Arch, seg *sym.Segment, name string, rwx int) *sym.Section {
    	sect := ldr.NewSection()
    	sect.Rwx = uint8(rwx)
    	sect.Name = name
    	sect.Seg = seg
    	sect.Align = int32(arch.PtrSize) // everything is at least pointer-aligned
    	seg.Sections = append(seg.Sections, sect)
    	return sect
    }
    
    func usage() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top