Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 072412 (0.15 sec)

  1. internal/s3select/jstream/scanner_test.go

    package jstream
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"io"
    	"sync/atomic"
    	"testing"
    )
    
    var (
    	smallInput  = make([]byte, 1024*12)       // 12K
    	mediumInput = make([]byte, 1024*1024*12)  // 12MB
    	largeInput  = make([]byte, 1024*1024*128) // 128MB
    )
    
    func TestScanner(t *testing.T) {
    	data := []byte("abcdefghijklmnopqrstuvwxyz0123456789")
    
    	var i int
    	r := bytes.NewReader(data)
    	scanner := newScanner(r)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. ci/official/requirements_updater/numpy1_requirements/requirements.in

    # Requirements for NumPy 1.x
    numpy ~= 1.26.0
    wheel ~= 0.41.2
    h5py >= 3.10.0
    lit ~= 17.0.2
    opt_einsum == 3.3.0
    astunparse == 1.6.3
    dill == 0.3.7
    astor == 0.7.1
    typing_extensions == 4.8.0
    gast == 0.4.0
    termcolor == 2.3.0
    wrapt == 1.16.0
    tblib == 2.0.0
    ml_dtypes >= 0.4.0, < 0.5.0
    # Install tensorboard, and keras
    # Note that here we want the latest version that matches TF major.minor version
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Oct 11 22:42:53 UTC 2024
    - 874 bytes
    - Viewed (0)
  3. .teamcity/jdks.yaml

        sha256: "b9b46f396ab5f3658fa5569af963896167c7f735cfec816359c04101fae38bdf"
      - params:
          - "macos.java8.zulu.aarch64"
        os: "macos"
        arch: "aarch64"
        vendor: "zulu"
        version: "zulu8.78.0.19-ca-jdk8.0.412"
      - params:
          - "macos.java11.openjdk.aarch64"
        os: "macos"
        arch: "aarch64"
        vendor: "temurin"
        version: "jdk-11.0.25+9"
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Oct 29 15:51:20 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Collections2.java

       *
       * <p><i>Notes:</i> This is an implementation of the algorithm for Lexicographical Permutations
       * Generation, described in Knuth's "The Art of Computer Programming", Volume 4, Chapter 7,
       * Section 7.2.1.2. The iteration order follows the lexicographical order. This means that the
       * first permutation will be in ascending order, and the last will be in descending order.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. android/guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

        X2398,
        X2399,
        X2400,
        X2401,
        X2402,
        X2403,
        X2404,
        X2405,
        X2406,
        X2407,
        X2408,
        X2409,
        X2410,
        X2411,
        X2412,
        X2413,
        X2414,
        X2415,
        X2416,
        X2417,
        X2418,
        X2419,
        X2420,
        X2421,
        X2422,
        X2423,
        X2424,
        X2425,
        X2426,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  6. guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

        X2398,
        X2399,
        X2400,
        X2401,
        X2402,
        X2403,
        X2404,
        X2405,
        X2406,
        X2407,
        X2408,
        X2409,
        X2410,
        X2411,
        X2412,
        X2413,
        X2414,
        X2415,
        X2416,
        X2417,
        X2418,
        X2419,
        X2420,
        X2421,
        X2422,
        X2423,
        X2424,
        X2425,
        X2426,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  7. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    023F..0240    ; valid                                  # 4.1  LATIN SMALL LETTER S WITH SWASH TAIL..LATIN SMALL LETTER Z WITH SWASH TAIL
    0241          ; mapped                 ; 0242          # 4.1  LATIN CAPITAL LETTER GLOTTAL STOP
    0242          ; valid                                  # 5.0  LATIN SMALL LETTER GLOTTAL STOP
    0243          ; mapped                 ; 0180          # 5.0  LATIN CAPITAL LETTER B WITH STROKE
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  8. src/bytes/bytes_test.go

    	{space, isSpace, 0, len(space) - 3}, // last rune in space is 3 bytes
    	{"\u0e50\u0e5212hello34\u0e50\u0e51", isDigit, 0, 18},
    	{"\u2C6F\u2C6F\u2C6F\u2C6FABCDhelloEF\u2C6F\u2C6FGH\u2C6F\u2C6F", isUpper, 0, 34},
    	{"12\u0e50\u0e52hello34\u0e50\u0e51", not(isDigit), 8, 12},
    
    	// tests of invalid UTF-8
    	{"\x801", isDigit, 1, 1},
    	{"\x80abc", isDigit, -1, -1},
    	{"\xc0a\xc0", isValidRune, 1, 1},
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Aug 19 19:09:04 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.8.md

    * Updated comments for functions. ([#47242](https://github.com/kubernetes/kubernetes/pull/47242), [@k82cn](https://github.com/k82cn))
    * Fix setting juju worker labels during deployment ([#47178](https://github.com/kubernetes/kubernetes/pull/47178), [@ktsakalozos](https://github.com/ktsakalozos))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

    * 🌐 Add Chinese translation for Tutorial - Header Parameters. PR [#2412](https://github.com/tiangolo/fastapi/pull/2412) by [@maoyibo](https://github.com/maoyibo).
    * 🌐 Add Chinese translation for Tutorial - Extra Data Types. PR [#2410](https://github.com/tiangolo/fastapi/pull/2410) by [@maoyibo](https://github.com/maoyibo).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Nov 01 11:25:57 UTC 2024
    - 460.3K bytes
    - Viewed (0)
Back to top