Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for ind2 (0.05 sec)

  1. android/guava/src/com/google/common/io/ByteSource.java

        Closer closer = Closer.create();
        try {
          InputStream in1 = closer.register(openStream());
          InputStream in2 = closer.register(other.openStream());
          while (true) {
            int read1 = ByteStreams.read(in1, buf1, 0, buf1.length);
            int read2 = ByteStreams.read(in2, buf2, 0, buf2.length);
            if (read1 != read2 || !Arrays.equals(buf1, buf2)) {
              return false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 26.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

        func.eraseBody();
        func.addEntryBlock();
        OpBuilder builder(func.getBody());
        if (failed(ConvertKerasLSTMLayer(func, &builder)))
          return signalPassFailure();
      }
    
      // LSTM `func::FuncOps` with indy behavior always have the `tf.api_implements`
      // function attribute prefixed with `"indy_lstm_"`.
      // IndyLSTMs have diagonal recurrent weight matrices and can benefit from
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/Crc32cHashFunction.java

         * four int chunks."  The state we want after the first four bytes is
         *
         * crc0 = ~int0
         * crc1 = int1
         * crc2 = int2
         * crc3 = int3
         *
         * ...so we set crc0 so that computeForWord(crc0) = -1 and xoring it with the first int
         * gives us the desired result.  computeForWord(0) == 0, so all the others do the right thing.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/Crc32cHashFunction.java

         * four int chunks."  The state we want after the first four bytes is
         *
         * crc0 = ~int0
         * crc1 = int1
         * crc2 = int2
         * crc3 = int3
         *
         * ...so we set crc0 so that computeForWord(crc0) = -1 and xoring it with the first int
         * gives us the desired result.  computeForWord(0) == 0, so all the others do the right thing.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

            }
        }
    
        /**
         * The bootstrap method for method calls from Groovy compiled code with indy enabled.
         * Gradle's bytecode processor replaces the Groovy's original {@link IndyInterface#bootstrap(MethodHandles.Lookup, String, MethodType, String, int)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. src/go/build/build_test.go

    		shouldBuild: true,
    	},
    	{
    		name: "And",
    		content: "// +build no,yes\n\n" +
    			"package main\n",
    		tags:        map[string]bool{"yes": true, "no": true},
    		shouldBuild: false,
    	},
    	{
    		name: "And2",
    		content: "//go:build no && yes\n" +
    			"package main\n",
    		tags:        map[string]bool{"yes": true, "no": true},
    		shouldBuild: false,
    	},
    	{
    		name: "Cgo",
    		content: "// +build cgo\n\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. docs/pt/docs/async.md

    Então você espera que seu _crush_ :heart_eyes: termine a história que estava contando (terminar o trabalho atual / tarefa sendo processada), sorri gentilmente e diz que você está indo buscar os hambúrgueres.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  8. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    in.ua in.us ina.ibaraki.jp ina.nagano.jp ina.saitama.jp inabe.mie.jp inagawa.hyogo.jp inagi.tokyo.jp inami.toyama.jp inami.wakayama.jp inashiki.ibaraki.jp inatsuki.fukuoka.jp inawashiro.fukushima.jp inazawa.aichi.jp inc inc.hk incheon.kr ind.br ind.gt ind.in ind.kw ind.tn independent-commission.uk independent-inquest.uk independent-inquiry.uk independent-panel.uk independent-review.uk inderoy.no inderøy.no indian.museum indiana.museum indianapolis.museum indianmarket.museum indie.porn indigena.bo industria.bo...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    	keyID1 := "id1"
    	annotations1 := map[string][]byte{"a": {4, 5}, "b": {6, 7}}
    	encryptedDEKSourceType1 := kmstypes.EncryptedDEKSourceType_AES_GCM_KEY
    
    	encryptedDEKSource2 := []byte{4, 5, 6}
    	keyID2 := "id2"
    	annotations2 := map[string][]byte{"x": {9, 10}, "y": {11, 12}}
    	encryptedDEKSourceType2 := kmstypes.EncryptedDEKSourceType_HKDF_SHA256_XNONCE_AES_GCM_SEED
    
    	// generate all possible combinations of the above
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  10. cmd/testdata/xl-meta-merge.zip

    ÷Q\K¬eVpñVmeÜyyh²mò†UqW`oªÜ\e†HuAH gieuEìl详õ oUô ¼,YT¸{RxfeyEÜQW`¼bï<]RYZu^Õî²I=1 ¢rxpBS„)1][|–yy»ì]wW1 (å9û0ûR]N§naPIôåÄOTq³ocxci…øÂûDsÖWª`ÜQ~¦ŒVU†ÚeKÙ„ [j ªµ$ _ ncJ¢qmÐH{~zïJ¢Fãr÷ACAñQ Â@˜² " ¾)Üajtãhoze† ûp;1¸gï\jeP ˆaRwªæO_xºGy]Nqp†êqP°u}^ôÝ ìñDO\ïTesìF² `r ïX |ßCxewx”†…GHÜCqV¬tKyÜ_LiÕ¢]Ewd E_„v}P_ûUx]Zk ˆñdf}gz>tí±©ýôï4ÊC|H¢nUå; V¦@wBRS±·Æû x†~ïQGcÖE€b_WT\]æM@ïn tq~~UËqnE²3en ¼qûÌ0êcÎã7 ÎïÊG þûvc¾¾.{Ö¢OhD]`paìˆrïzKjyzqG`B¼ÿò ªtZoHEw@uñv¬²pgÐ^QE„ sx=‘²Eû|\¾ |e}MHs m@iVw¼ux NRïj¢“„GZIå]xuyqxfM...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top