Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,651 for _start (0.17 sec)

  1. 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)
  2. src/time/zoneinfo_read.go

    				l.cacheEnd = tx[i+1].when
    			} else if l.extend != "" {
    				// If we're at the end of the known zone transitions,
    				// try the extend string.
    				if name, offset, estart, eend, isDST, ok := tzset(l.extend, l.cacheStart, sec); ok {
    					l.cacheStart = estart
    					l.cacheEnd = eend
    					// Find the zone that is returned by tzset to avoid allocation if possible.
    					if zoneIdx := findZone(l.zone, name, offset, isDST); zoneIdx != -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. docs/en/docs/how-to/sql-databases-peewee.md

    ```Python
    async def reset_db_state():
        database.db._state._state.set(db_state_default.copy())
        database.db._state.reset()
    ```
    
    Terminate your running app and start it again.
    
    Repeat the same process with the 10 tabs. This time all of them will wait and you will get all the results without errors.
    
    ...You fixed it!
    
    ## Review all the files
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	VLNEXT                        = 0xe
    	VMIN                          = 0x4
    	VQUIT                         = 0x1
    	VREPRINT                      = 0xb
    	VSTART                        = 0x7
    	VSTOP                         = 0x8
    	VSTRT                         = 0x7
    	VSUSP                         = 0x9
    	VT0                           = 0x0
    	VT1                           = 0x8000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ProgressOperationsTest.groovy

            def op1 = ops.start("compile", null, new OperationIdentifier(1), null)
            def op2 = ops.start("resolve", null, new OperationIdentifier(2), null)
    
            then:
            op1.operationId.id == 1L
            op1.parent == null
            op2.operationId.id == 2L
            op2.parent == null
        }
    
        def "tracks progress"() {
            when:
            ops.start("Building", null, new OperationIdentifier(1), null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/util/ConcurrentSpecificationTest.groovy

        def "blocking action fails when action does not wait for async action to start"() {
            Runnable action = Mock()
            def operation = waitsForAsyncActionToComplete()
    
            when:
            operation.start {
                start { action.run() }
            }
            finished()
    
            then:
            _ * action.run() >> { operation.done() }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:50 UTC 2021
    - 10.5K bytes
    - Viewed (0)
Back to top