Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for iB (0.03 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

    internal fun <T> interleave(
      a: Iterable<T>,
      b: Iterable<T>,
    ): List<T> {
      val ia = a.iterator()
      val ib = b.iterator()
    
      return buildList {
        while (ia.hasNext() || ib.hasNext()) {
          if (ia.hasNext()) {
            add(ia.next())
          }
          if (ib.hasNext()) {
            add(ib.next())
          }
        }
      }
    }
    
    // TODO check read only options for creating lists
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/armerror.s

    	MOVM.DA	(F1), [R0-R4]      // ERROR "illegal base register"
    	MOVM.IB	(F1), [R0-R4]      // ERROR "illegal base register"
    	MOVM.DB	(F1), [R0-R4]      // ERROR "illegal base register"
    	MOVM.IA	[R0-R4], (F1)      // ERROR "illegal base register"
    	MOVM.DA	[R0-R4], (F1)      // ERROR "illegal base register"
    	MOVM.IB	[R0-R4], (F1)      // ERROR "illegal base register"
    	MOVM.DB	[R0-R4], (F1)      // ERROR "illegal base register"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 14:06:21 UTC 2017
    - 14.4K bytes
    - Viewed (0)
  3. internal/s3select/sql/value.go

    	case okA && okB:
    		// Both Values are untyped so try the types in order:
    		// int, float, bool, string
    
    		// Check for numeric inference
    		iA, okAi := a.bytesToInt()
    		iB, okBi := b.bytesToInt()
    		if okAi && okBi {
    			a.setInt(iA)
    			b.setInt(iB)
    			return nil
    		}
    
    		fA, okAf := a.bytesToFloat()
    		fB, okBf := b.bytesToFloat()
    		if okAf && okBf {
    			a.setFloat(fA)
    			b.setFloat(fB)
    			return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 20.2K bytes
    - Viewed (0)
  4. src/regexp/exec.go

    }
    
    func freeOnePassMachine(m *onePassMachine) {
    	m.inputs.clear()
    	onePassPool.Put(m)
    }
    
    // doOnePass implements r.doExecute using the one-pass execution engine.
    func (re *Regexp) doOnePass(ir io.RuneReader, ib []byte, is string, pos, ncap int, dstCap []int) []int {
    	startCond := re.cond
    	if startCond == ^syntax.EmptyOp(0) { // impossible
    		return nil
    	}
    
    	m := newOnePassMachine()
    	if cap(m.matchcap) < ncap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  5. src/runtime/string_test.go

    		// Bad binary suffix inputs.
    		{"1Ki", 0, false},
    		{"05Ki", 0, false},
    		{"10Mi", 0, false},
    		{"100Gi", 0, false},
    		{"99Ti", 0, false},
    		{"22iB", 0, false},
    		{"B", 0, false},
    		{"iB", 0, false},
    		{"KiB", 0, false},
    		{"MiB", 0, false},
    		{"GiB", 0, false},
    		{"TiB", 0, false},
    		{"-120KiB", 0, false},
    		{"-891MiB", 0, false},
    		{"-704GiB", 0, false},
    		{"-42TiB", 0, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 13 14:05:23 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  6. src/regexp/regexp.go

    				// after a previous match, so ignore it.
    				accept = false
    			}
    			var width int
    			if b == nil {
    				is := inputString{str: s}
    				_, width = is.step(pos)
    			} else {
    				ib := inputBytes{str: b}
    				_, width = ib.step(pos)
    			}
    			if width > 0 {
    				pos += width
    			} else {
    				pos = end + 1
    			}
    		} else {
    			pos = matches[1]
    		}
    		prevMatchEnd = matches[1]
    
    		if accept {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwice

    00000090  00 78 98 8f 70 ae 47 6d  45 3b c4 af fc 88 bd 88  |.x..p.GmE;......|
    000000a0  7b cc 8a 78 86 ff 86 25  2d 21 28 f2 c5 d7 4b 61  |{..x...%-!(...Ka|
    000000b0  c0 ea 67 38 4c d0 d6 6f  fc a0 69 62 98 6f ac 29  |..g8L..o..ib.o.)|
    000000c0  29 13 34 7a f0 2d 1b 7e  52 42 6f f1 64 ed 7f 47  |).4z.-.~RBo.d..G|
    000000d0  69 82 9b 9d 19 7b 3a c5  54 51 c8 8f 4c 9e 42 a7  |i....{:.TQ..L.B.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    	xCondDataSize // switch on operand size
    	xCondAddrSize // switch on address size
    	xCondIsMem    // switch on memory vs register argument
    
    	xSetOp // set instruction opcode
    
    	xReadSlashR // read /r
    	xReadIb     // read ib
    	xReadIw     // read iw
    	xReadId     // read id
    	xReadIo     // read io
    	xReadCb     // read cb
    	xReadCw     // read cw
    	xReadCd     // read cd
    	xReadCp     // read cp
    	xReadCm     // read cm
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
Back to top