Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 76 for textbyte (0.16 sec)

  1. .gitignore

    /subprojects/*/bin
    atlassian-ide-plugin.xml
    .metadata/
    
    # NetBeans
    # --------
    .nb-gradle
    .nb-gradle-properties
    
    # Vim
    # ---
    *.sw[nop]
    
    # Emacs
    # -----
    *~
    \#*\#
    .\#*
    
    # Textmate
    # --------
    .textmate
    
    # Sublime Text
    # ------------
    *.sublime-*
    
    # jEnv
    # ----
    .java-version
    
    # macOS
    # ----
    .DS_Store
    
    # HPROF
    # -----
    *.hprof
    
    # Work dirs
    # ---------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/Utf8Test.java

      @GwtIncompatible // java.nio.charset.Charset
      public void testIsWellFormed_1Byte() {
        testBytes(1, EXPECTED_ONE_BYTE_ROUNDTRIPPABLE_COUNT);
      }
    
      /** Tests that round tripping of all two byte permutations work. */
      @GwtIncompatible // java.nio.charset.Charset
      public void testIsWellFormed_2Bytes() {
        testBytes(2, EXPECTED_TWO_BYTE_ROUNDTRIPPABLE_COUNT);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/cmd/internal/objfile/disasm.go

    			// drop
    		default:
    			keep = append(keep, sym)
    		}
    	}
    	syms = keep
    	d := &Disasm{
    		syms:      syms,
    		pcln:      pcln,
    		text:      textBytes,
    		textStart: textStart,
    		textEnd:   textStart + uint64(len(textBytes)),
    		goarch:    goarch,
    		disasm:    disasm,
    		byteOrder: byteOrder,
    	}
    
    	return d, nil
    }
    
    // lookup finds the symbol name containing addr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/test2json.go

    	Elapsed *float64   `json:",omitempty"`
    	Output  *textBytes `json:",omitempty"`
    }
    
    // textBytes is a hack to get JSON to emit a []byte as a string
    // without actually copying it to a string.
    // It implements encoding.TextMarshaler, which returns its text form as a []byte,
    // and then json encodes that text form as a string (which was our goal).
    type textBytes []byte
    
    func (b textBytes) MarshalText() ([]byte, error) { return b, nil }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  5. test/makeslice.go

    func main() {
    	n := -1
    	testInts(uint64(n))
    	testBytes(uint64(n))
    
    	var t *byte
    	if unsafe.Sizeof(t) == 8 {
    		// Test mem > maxAlloc
    		testInts(1 << 59)
    
    		// Test elem.size*cap overflow
    		testInts(1<<63 - 1)
    
    		testInts(1<<64 - 1)
    		testBytes(1<<64 - 1)
    	} else {
    		testInts(1<<31 - 1)
    
    		// Test elem.size*cap overflow
    		testInts(1<<32 - 1)
    		testBytes(1<<32 - 1)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 07 17:50:24 UTC 2020
    - 5.5K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketWriter.kt

        }
    
        val b0 = B0_FLAG_FIN or opcode
        sinkBuffer.writeByte(b0)
    
        var b1 = length
        if (isClient) {
          b1 = b1 or B1_FLAG_MASK
          sinkBuffer.writeByte(b1)
    
          random.nextBytes(maskKey!!)
          sinkBuffer.write(maskKey)
    
          if (length > 0) {
            val payloadStart = sinkBuffer.size
            sinkBuffer.write(payload)
    
            sinkBuffer.readAndWriteUnsafe(maskCursor!!)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/hash/HashTestUtils.java

            random.nextBytes(value);
            for (PrimitiveSink sink : sinks) {
              sink.putBytes(value);
            }
          }
        },
        PUT_BYTES_INT_INT() {
          @Override
          void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) {
            byte[] value = new byte[random.nextInt(128)];
            random.nextBytes(value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/Hashing.java

        for (HashCode hashCode : hashCodes) {
          byte[] nextBytes = hashCode.asBytes();
          checkArgument(
              nextBytes.length == resultBytes.length, "All hashcodes must have the same bit length.");
          for (int i = 0; i < nextBytes.length; i++) {
            resultBytes[i] = (byte) (resultBytes[i] * 37 ^ nextBytes[i]);
          }
        }
        return HashCode.fromBytesNoCopy(resultBytes);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. src/encoding/xml/xml.go

    // and leave the error in d.err.
    // Maintain line number.
    func (d *Decoder) getc() (b byte, ok bool) {
    	if d.err != nil {
    		return 0, false
    	}
    	if d.nextByte >= 0 {
    		b = byte(d.nextByte)
    		d.nextByte = -1
    	} else {
    		b, d.err = d.r.ReadByte()
    		if d.err != nil {
    			return 0, false
    		}
    		if d.saved != nil {
    			d.saved.WriteByte(b)
    		}
    	}
    	if b == '\n' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

                byte[] clientChallenge = new byte[8];
                RANDOM.nextBytes(clientChallenge);
                setLMResponse(getLMv2Response(type2, domain, user, password, clientChallenge));
    
                byte[] clientChallenge2 = new byte[8];
                RANDOM.nextBytes(clientChallenge2);
                setNTResponse(getNTLMv2Response(type2, responseKeyNT, clientChallenge2));
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.9K bytes
    - Viewed (0)
Back to top