Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,477 for bstart (0.23 sec)

  1. test/nosplit.go

    start 116 nosplit callind; REJECT ppc64 ppc64le amd64
    start 120 nosplit callind; REJECT ppc64 ppc64le amd64 386 arm64
    start 124 nosplit callind; REJECT ppc64 ppc64le amd64 386
    start 128 nosplit callind; REJECT
    start 132 nosplit callind; REJECT
    start 136 nosplit callind; REJECT
    
    # Issue 7623
    start 0 call f; f 112
    start 0 call f; f 116
    start 0 call f; f 120
    start 0 call f; f 124
    start 0 call f; f 128
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. src/internal/abi/symtab.go

    	// UnsafePointRestart1(2) apply on a sequence of instructions, within
    	// which if an async preemption happens, we should back off the PC
    	// to the start of the sequence when resuming.
    	// We need two so we can distinguish the start/end of the sequence
    	// in case that two sequences are next to each other.
    	UnsafePointRestart1 = -3
    	UnsafePointRestart2 = -4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 14:25:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/runtime/rt0_aix_ppc64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    #include "asm_ppc64x.h"
    
    // _rt0_ppc64_aix is a function descriptor of the entrypoint function
    // __start. This name is needed by cmd/link.
    DEFINE_PPC64X_FUNCDESC(_rt0_ppc64_aix, __start<>)
    
    // The starting function must return in the loader to
    // initialise some libraries, especially libthread which
    // creates the main thread and adds the TLS in R13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_darwin_arm64.c

    	pthread_sigmask(SIG_SETMASK, &ign, &oset);
    
    	size = pthread_get_stacksize_np(pthread_self());
    	pthread_attr_init(&attr);
    	pthread_attr_setstacksize(&attr, size);
    	// Leave stacklo=0 and set stackhi=size; mstart will do the rest.
    	ts->g->stackhi = size;
    	err = _cgo_try_pthread_create(&p, &attr, threadentry, ts);
    
    	pthread_sigmask(SIG_SETMASK, &oset, nil);
    
    	if (err != 0) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 03:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

     Type:                              EXEC (Executable file)
     Machine:                           Intel 80386
     Version:                           0x1
     Entry point address:               0x8048310
     Start of program headers:          52 (bytes into file)
     Start of section headers:          4400 (bytes into file)
     Flags:                             0x0
     Size of this header:               52 (bytes)
     Size of program headers:           32 (bytes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/time/zoneinfo.go

    	name = zone.name
    	offset = zone.offset
    	start = tx[lo].when
    	// end = maintained during the search
    	isDST = zone.isDST
    
    	// If we're at the end of the known zone transitions,
    	// try the extend string.
    	if lo == len(tx)-1 && l.extend != "" {
    		if ename, eoffset, estart, eend, eisDST, ok := tzset(l.extend, start, sec); ok {
    			return ename, eoffset, estart, eend, eisDST
    		}
    	}
    
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/ComparisonChainTest.java

        assertThat(ComparisonChain.start().compareFalseFirst(false, true).result()).isLessThan(0);
        assertThat(ComparisonChain.start().compareFalseFirst(false, false).result()).isEqualTo(0);
      }
    
      public void testCompareTrueFirst() {
        assertThat(ComparisonChain.start().compareTrueFirst(true, true).result()).isEqualTo(0);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/cmd/internal/edit/edit.go

    }
    
    func (b *Buffer) Delete(start, end int) {
    	if end < start || start < 0 || end > len(b.old) {
    		panic("invalid edit position")
    	}
    	b.q = append(b.q, edit{start, end, ""})
    }
    
    func (b *Buffer) Replace(start, end int, new string) {
    	if end < start || start < 0 || end > len(b.old) {
    		panic("invalid edit position")
    	}
    	b.q = append(b.q, edit{start, end, new})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 14:59:26 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  9. src/syscall/zerrors_netbsd_386.go

    	CS5                               = 0x0
    	CS6                               = 0x100
    	CS7                               = 0x200
    	CS8                               = 0x300
    	CSIZE                             = 0x300
    	CSTART                            = 0x11
    	CSTATUS                           = 0x14
    	CSTOP                             = 0x13
    	CSTOPB                            = 0x400
    	CSUSP                             = 0x1a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.5K bytes
    - Viewed (0)
  10. mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt

      }
    
      @Test
      fun startTwice() {
        val server2 = MockWebServer()
        server2.start()
        server2.start()
        server2.shutdown()
      }
    
      @Test
      fun shutdownTwice() {
        val server2 = MockWebServer()
        server2.start()
        server2.shutdown()
        try {
          server2.start()
          fail<Unit>()
        } catch (expected: IllegalStateException) {
          // Expected.
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top