Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 139 for pret (0.14 sec)

  1. doc/asm.html

    	0x0039 00057 (x.go:5)	MOVQ	8(SP), BP
    	0x003e 00062 (x.go:5)	ADDQ	$16, SP
    	0x0042 00066 (x.go:5)	RET
    	0x0043 00067 (x.go:5)	NOP
    	0x0043 00067 (x.go:3)	PCDATA	$1, $-1
    	0x0043 00067 (x.go:3)	PCDATA	$0, $-1
    	0x0043 00067 (x.go:3)	CALL	runtime.morestack_noctxt(SB)
    	0x0048 00072 (x.go:3)	JMP	0
    ...
    </pre>
    
    <p>
    The <code>FUNCDATA</code> and <code>PCDATA</code> directives contain information
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  2. api/go1.4.txt

    pkg debug/elf, const R_AARCH64_ADR_GOT_PAGE R_AARCH64
    pkg debug/elf, const R_AARCH64_ADR_PREL_LO21 = 274
    pkg debug/elf, const R_AARCH64_ADR_PREL_LO21 R_AARCH64
    pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21 = 275
    pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21 R_AARCH64
    pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21_NC = 276
    pkg debug/elf, const R_AARCH64_ADR_PREL_PG_HI21_NC R_AARCH64
    pkg debug/elf, const R_AARCH64_CALL26 = 283
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/cache/CacheTesting.java

            ReferenceEntry<?, ?> prev = null;
            for (ReferenceEntry<?, ?> current : segment.writeQueue) {
              assertTrue(entries.add(current));
              if (prev != null) {
                assertSame(prev, current.getPreviousInWriteQueue());
                assertSame(prev.getNextInWriteQueue(), current);
                assertThat(prev.getWriteTime()).isAtMost(current.getWriteTime());
              }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  4. api/go1.10.txt

    pkg debug/elf, const R_ARM_MOVT_PREL = 46
    pkg debug/elf, const R_ARM_MOVT_PREL R_ARM
    pkg debug/elf, const R_ARM_MOVW_ABS_NC = 43
    pkg debug/elf, const R_ARM_MOVW_ABS_NC R_ARM
    pkg debug/elf, const R_ARM_MOVW_BREL = 86
    pkg debug/elf, const R_ARM_MOVW_BREL R_ARM
    pkg debug/elf, const R_ARM_MOVW_BREL_NC = 84
    pkg debug/elf, const R_ARM_MOVW_BREL_NC R_ARM
    pkg debug/elf, const R_ARM_MOVW_PREL_NC = 45
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Comparators.java

        checkNotNull(comparator);
        Iterator<? extends T> it = iterable.iterator();
        if (it.hasNext()) {
          T prev = it.next();
          while (it.hasNext()) {
            T next = it.next();
            if (comparator.compare(prev, next) > 0) {
              return false;
            }
            prev = next;
          }
        }
        return true;
      }
    
      /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        SettableFuture<String> orig = SettableFuture.create();
        SettableFuture<String> prev = orig;
        for (int i = 0; i < 100000; i++) {
          SettableFuture<String> curr = SettableFuture.create();
          prev.setFuture(curr);
          prev = curr;
        }
        // prev represents the 'innermost' future
        prev.set("done");
        assertTrue(orig.isDone());
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 13 14:28:25 GMT 2024
    - 46.8K bytes
    - Viewed (0)
  7. cmd/bucket-targets.go

    					//	var deploymentID string
    					sys.hMutex.RLock()
    					prev, ok := sys.hc[result.Endpoint.Host]
    					sys.hMutex.RUnlock()
    					if ok {
    						if prev.Online != result.Online || !result.Online {
    							if !prev.lastHCAt.IsZero() {
    								offline = time.Since(prev.lastHCAt) + prev.offlineDuration
    							} else {
    								offline = prev.offlineDuration
    							}
    						} else if result.Online {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/ArrayMap.java

                index = (hashCode & 0x7FFFFFFF) % mapTable.length;
                for (Entry<K, V> e = mapTable[index], prev = null; e != null; prev = e, e = e.next) {
                    if (e.hashCode == hashCode && key.equals(e.key)) {
                        if (prev != null) {
                            prev.next = e.next;
                        } else {
                            mapTable[index] = e.next;
                        }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 20.6K bytes
    - Viewed (1)
  9. src/main/java/jcifs/smb/SmbTreeImpl.java

                     */
                    RequestWithPath preq = (RequestWithPath) request;
                    if ( preq.getPath() != null && preq.getPath().length() > 0 ) {
                        if ( log.isDebugEnabled() ) {
                            log.debug(String.format("Setting DFS request path from %s to %s", preq.getPath(), preq.getFullUNCPath()));
                        }
                        preq.setResolveInDfs(true);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  10. cni/pkg/iptables/iptables.go

    	InpodMark            = 1337 // this needs to match the inpod config mark in ztunnel.
    	InpodMask            = 0xfff
    	InpodRestoreMask     = 0xffffffff
    	ChainInpodOutput     = "ISTIO_OUTPUT"
    	ChainInpodPrerouting = "ISTIO_PRERT"
    	ChainHostPostrouting = "ISTIO_POSTRT"
    	RouteTableInbound    = 100
    
    	DNSCapturePort              = 15053
    	ZtunnelInboundPort          = 15008
    	ZtunnelOutboundPort         = 15001
    	ZtunnelInboundPlaintextPort = 15006
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue May 07 19:54:50 GMT 2024
    - 19.7K bytes
    - Viewed (0)
Back to top