Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,982 for gen1 (0.04 sec)

  1. src/strings/replace_test.go

    		"X", "Y",
    		"Y", "Z",
    	)
    	testCases = append(testCases,
    		testCase{gen1, "fooaaabar", "foo3[aaa]b1[a]r"},
    		testCase{gen1, "long, longerst, longer", "short, most long, medium"},
    		testCase{gen1, "xxxxx", "xxxxX"},
    		testCase{gen1, "XiX", "YiY"},
    		testCase{gen1, "", ""},
    	)
    
    	// gen2 has multiple old strings with no pairwise common prefix.
    	gen2 := NewReplacer(
    		"roses", "red",
    		"violets", "blue",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  2. test/divmod.go

    func gen(val uint64, nbits, maxbits, pos int, f func(uint64)) {
    	if pos < 0 {
    		f(val)
    		return
    	}
    	gen(val, nbits, maxbits, pos-1, f)
    	if nbits < maxbits {
    		gen(val|1<<uint(pos), nbits+1, maxbits, pos-1, f)
    	}
    }
    
    // generate all uint64 values x, y where x has at most n1 bits set in the low w1
    // and y has at most n2 bits set in the low w2 and call f(x, y) for each.
    func gen2(n1, w1, n2, w2 int, f func(uint64, uint64)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 9.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    //
    // Synopsis:
    // Combine(gen1, gen2, ..., genN)
    //   - returns a generator producing sequences with elements coming from
    //     the Cartesian product of elements from the sequences generated by
    //     gen1, gen2, ..., genN. The sequence elements will have a type of
    //     tuple<T1, T2, ..., TN> where T1, T2, ..., TN are the types
    //     of elements from sequences produces by gen1, gen2, ..., genN.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    //
    // Synopsis:
    // Combine(gen1, gen2, ..., genN)
    //   - returns a generator producing sequences with elements coming from
    //     the Cartesian product of elements from the sequences generated by
    //     gen1, gen2, ..., genN. The sequence elements will have a type of
    //     tuple<T1, T2, ..., TN> where T1, T2, ..., TN are the types
    //     of elements from sequences produces by gen1, gen2, ..., genN.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/split_into_island_per_op.mlir

          %add1 = "tf.Add"(%str, %arg3) : (tensor<!tf_type.string>, tensor<!tf_type.string>) -> tensor<!tf_type.string>
          // CHECK: %{{.*}}, %[[CONTROL3:[^ ,]*]] = tf_executor.island wraps "tf.GeneratorDataset"
          %gen1 = "tf.GeneratorDataset"(%str, %arg0, %arg1, %arg2, %arg3) {
            finalize_func = @__finalize_func_790,
            init_func = @__init_func_530, next_func = @__next_func_680,
            next_func.experimental_ints_on_device = true,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

          %add1 = "tf.Add"(%str, %arg3) : (tensor<!tf_type.string>, tensor<!tf_type.string>) -> tensor<!tf_type.string>
          // CHECK: tf_executor.island(%[[CONTROL]]) wraps "tf.GeneratorDataset"
          %gen1 = "tf.GeneratorDataset"(%str, %arg0, %arg1, %arg2, %arg3) {
            finalize_func = @__finalize_func_790,
            init_func = @__init_func_530, next_func = @__next_func_680,
            next_func.experimental_ints_on_device = true,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    // Synopsis:
    // Combine(gen1, gen2, ..., genN)
    //   - returns a generator producing sequences with elements coming from
    //     the Cartesian product of elements from the sequences generated by
    //     gen1, gen2, ..., genN. The sequence elements will have a type of
    //     tuple<T1, T2, ..., TN> where T1, T2, ..., TN are the types
    //     of elements from sequences produces by gen1, gen2, ..., genN.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    // Synopsis:
    // Combine(gen1, gen2, ..., genN)
    //   - returns a generator producing sequences with elements coming from
    //     the Cartesian product of elements from the sequences generated by
    //     gen1, gen2, ..., genN. The sequence elements will have a type of
    //     tuple<T1, T2, ..., TN> where T1, T2, ..., TN are the types
    //     of elements from sequences produces by gen1, gen2, ..., genN.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  9. manifests/addons/gen.sh

      compressDashboard "pilot-dashboard.gen.json"
      compressDashboard "istio-performance-dashboard.json"
      compressDashboard "istio-workload-dashboard.json"
      compressDashboard "istio-service-dashboard.json"
      compressDashboard "istio-mesh-dashboard.json"
      compressDashboard "istio-extension-dashboard.json"
      compressDashboard "ztunnel-dashboard.gen.json"
      echo -e "\n---\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/index/suffixarray/gen.go

    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // Gen generates sais2.go by duplicating functions in sais.go
    // using different input types.
    // See the comment at the top of sais.go for details.
    package main
    
    import (
    	"bytes"
    	"log"
    	"os"
    	"strings"
    )
    
    func main() {
    	log.SetPrefix("gen: ")
    	log.SetFlags(0)
    
    	data, err := os.ReadFile("sais.go")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top