Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,083 for endOff (0.21 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    func unpackText(msg []byte, off int) (string, int, error) {
    	if off >= len(msg) {
    		return "", off, errBaseLen
    	}
    	beginOff := off + 1
    	endOff := beginOff + int(msg[off])
    	if endOff > len(msg) {
    		return "", off, errCalcLen
    	}
    	return string(msg[beginOff:endOff]), endOff, nil
    }
    
    // packBytes appends the wire format of field to msg.
    func packBytes(msg []byte, field []byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pe.go

    	isect := pefile.addSection(".idata", int(n), int(n))
    	isect.characteristics = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_READ | IMAGE_SCN_MEM_WRITE
    	isect.checkOffset(startoff)
    	isect.pad(ctxt.Out, uint32(n))
    	endoff := ctxt.Out.Offset()
    
    	// write FirstThunks (allocated in .data section)
    	ftbase := uint64(ldr.SymValue(dynamic)) - uint64(datsect.virtualAddress) - uint64(PEBASE)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  3. build/root/Makefile

    #     to "-s -w" which strips debug information.
    endef
    .PHONY: all
    ifeq ($(PRINT_HELP),y)
    all:
    	echo "$$ALL_HELP_INFO"
    else
    all:
    	hack/make-rules/build.sh $(WHAT)
    endif
    
    define GINKGO_HELP_INFO
    # Build ginkgo
    #
    # Example:
    # make ginkgo
    endef
    .PHONY: ginkgo
    ifeq ($(PRINT_HELP),y)
    ginkgo:
    	echo "$$GINKGO_HELP_INFO"
    else
    ginkgo:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. tests/integration/tests.mk

    	_INTEGRATION_TEST_FLAGS += --istio.test.pullpolicy=IfNotPresent
    endif
    
    ifeq ($(TEST_ENV),kind)
        _INTEGRATION_TEST_FLAGS += --istio.test.kube.loadbalancer=false
    endif
    
    ifeq ($(shell uname -m),aarch64)
        _INTEGRATION_TEST_FLAGS += --istio.test.kube.architecture=arm64
    endif
    
    ifneq ($(ARTIFACTS),)
        _INTEGRATION_TEST_FLAGS += --istio.test.work_dir=$(ARTIFACTS)
    endif
    
    ifneq ($(HUB),)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. Makefile.core.mk

    # These old versions are surprisingly common, so build in a check here
    define warning
    Docker version is too old, please upgrade to a newer version.
    endef
    ifneq ($(findstring google,$(HOSTNAME)),)
    warning+=Googlers: go/installdocker\#the-version-of-docker-thats-installed-is-old-eg-1126
    endif
    # The old docker issue manifests as not being able to run *any* binary. So we can test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. src/runtime/tls_arm64.h

    #define TLS_linux
    #define TLSG_IS_VARIABLE
    #endif
    #ifdef GOOS_linux
    #define TLS_linux
    #endif
    #ifdef TLS_linux
    #define MRS_TPIDR_R0 WORD $0xd53bd040 // MRS TPIDR_EL0, R0
    #endif
    
    #ifdef GOOS_darwin
    #define TLS_darwin
    #endif
    #ifdef GOOS_ios
    #define TLS_darwin
    #endif
    #ifdef TLS_darwin
    #define TLSG_IS_VARIABLE
    #define MRS_TPIDR_R0 WORD $0xd53bd060 // MRS TPIDRRO_EL0, R0
    #endif
    
    #ifdef GOOS_freebsd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 22 20:46:22 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  7. src/runtime/tls_arm64.s

    TEXT runtime·load_g(SB),NOSPLIT,$0
    #ifndef GOOS_darwin
    #ifndef GOOS_openbsd
    #ifndef GOOS_windows
    	MOVB	runtime·iscgo(SB), R0
    	CBZ	R0, nocgo
    #endif
    #endif
    #endif
    
    	MRS_TPIDR_R0
    #ifdef TLS_darwin
    	// Darwin sometimes returns unaligned pointers
    	AND	$0xfffffffffffffff8, R0
    #endif
    	MOVD	runtime·tls_g(SB), R27
    	MOVD	(R0)(R27), g
    
    nocgo:
    	RET
    
    TEXT runtime·save_g(SB),NOSPLIT,$0
    #ifndef GOOS_darwin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:41:03 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CHelloWorldApp.groovy

                #else
                #define DLL_FUNC
                #endif
    
                void DLL_FUNC sayHello();
                int DLL_FUNC sum(int a, int b);
    
                #ifdef FRENCH
                #pragma message("<==== compiling bonjour.h ====>")
                #else
                #pragma message("<==== compiling hello.h ====>")
                #endif
    
                #endif
            """)
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

     		 __STRING2_COPY_ARR2 __src2, __STRING2_COPY_ARR3 __src3,
    @@ -382,8 +186,6 @@ __mempcpy_small (void *__dest, char __src1,
         }
       return __extension__ ((void *) __u + __srclen);
     }
    -#   endif
    -#  endif
     # endif
     #endif
     
    @@ -391,44 +193,17 @@ __mempcpy_small (void *__dest, char __src1,
     /* Return pointer to C in S.  */
     #ifndef _HAVE_STRING_ARCH_strchr
     extern void *__rawmemchr (const void *__s, int __c);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/atomic_arm64.s

    #ifndef GOARM64_LSE
    	MOVBU	internal∕cpu·ARM64+const_offsetARM64HasATOMICS(SB), R4
    	CBZ 	R4, load_store_loop
    #endif
    	SWPALW	R1, (R0), R2
    	MOVW	R2, ret+16(FP)
    	RET
    #ifndef GOARM64_LSE
    load_store_loop:
    	LDAXRW	(R0), R2
    	STLXRW	R1, (R0), R3
    	CBNZ	R3, load_store_loop
    	MOVW	R2, ret+16(FP)
    	RET
    #endif
    
    // uint64 Xchg64(ptr *uint64, new uint64)
    // Atomically:
    //	old := *ptr;
    //	*ptr = new;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top