Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 100 for cat1 (0.11 sec)

  1. src/runtime/chan_test.go

    			case out <- b:
    			case <-done:
    				return
    			}
    		}
    	}()
    	cnt1, cnt2 := 0, 0
    	for i := 0; i < trials; i++ {
    		switch b := <-out; b {
    		case 1:
    			cnt1++
    		case 2:
    			cnt2++
    		default:
    			t.Fatalf("unexpected value %d on channel", b)
    		}
    	}
    	// If the select in the goroutine is fair,
    	// cnt1 and cnt2 should be about the same value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  2. src/regexp/syntax/parse_test.go

    	// Strings
    	{`abcde`, `str{abcde}`},
    	{`[Aa][Bb]cd`, `cat{strfold{AB}str{cd}}`},
    
    	// Factoring.
    	{`abc|abd|aef|bcx|bcy`, `alt{cat{lit{a}alt{cat{lit{b}cc{0x63-0x64}}str{ef}}}cat{str{bc}cc{0x78-0x79}}}`},
    	{`ax+y|ax+z|ay+w`, `cat{lit{a}alt{cat{plus{lit{x}}lit{y}}cat{plus{lit{x}}lit{z}}cat{plus{lit{y}}lit{w}}}}`},
    
    	// Bug fixes.
    	{`(?:.)`, `dot{}`},
    	{`(?:x|(?:xa))`, `cat{lit{x}alt{emp{}lit{a}}}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/modify_io_nodes.mlir

    // CHECK-NEXT: %[[q:.*]] = "tfl.quantize"(%arg0) <{qtype = tensor<1x224x224x3x!quant.uniform<i8:f32, 7.812500e-03>>}> : (tensor<1x224x224x3xf32>) -> tensor<1x224x224x3x!quant.uniform<i8:f32, 7.812500e-03>>
    // CHECK-NEXT: %[[cst1:.*]] = "tfl.pseudo_qconst"() <{qtype = tensor<32x3x3x3x!quant.uniform<i8<-127:127>:f32, 0.021826678373682216:151>>, value = dense<-76> : tensor<32x3x3x3xi8>}> : () -> tensor<32x3x3x3x!quant.uniform<i8<-127:127>:f32, 0.021826678373682216>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. src/runtime/pprof/proto_test.go

    	}
    }
    
    var profSelfMapsTests = `
    00400000-0040b000 r-xp 00000000 fc:01 787766                             /bin/cat
    0060a000-0060b000 r--p 0000a000 fc:01 787766                             /bin/cat
    0060b000-0060c000 rw-p 0000b000 fc:01 787766                             /bin/cat
    014ab000-014cc000 rw-p 00000000 00:00 0                                  [heap]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-cfg.mlir

    // CHECK:   [[THEN:%.+]] = call @testIfThen([[CAST0]]) : (tensor<!tf_type.variant>) -> tensor<!tf_type.variant>
    // CHECK:   [[CAST1:%.+]] = "tf.Cast"([[THEN]]) <{Truncate = false}> : (tensor<!tf_type.variant>) -> tensor<!tf_type.variant<tensor<f32>>>
    // CHECK:   cf.br ^bb3([[CAST1]] : tensor<!tf_type.variant<tensor<f32>>>)
    // CHECK: ^bb2:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. docs/site-replication/run-multi-site-ldap.sh

    #!/usr/bin/env bash
    
    # shellcheck disable=SC2120
    exit_1() {
    	cleanup
    
    	echo "minio1 ============"
    	cat /tmp/minio1_1.log
    	cat /tmp/minio1_2.log
    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    	cat /tmp/minio2_2.log
    	echo "minio3 ============"
    	cat /tmp/minio3_1.log
    	cat /tmp/minio3_2.log
    
    	exit 1
    }
    
    cleanup() {
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. src/bytes/buffer_test.go

    	for i := 0; i < 5<<10; i++ {
    		b.Write(buf)
    		b.Read(buf)
    		if i == 0 {
    			cap0 = b.Cap()
    		}
    	}
    	cap1 := b.Cap()
    	// (*Buffer).grow allows for 2x capacity slop before sliding,
    	// so set our error threshold at 3x.
    	if cap1 > cap0*3 {
    		t.Errorf("buffer cap = %d; too big (grew from %d)", cap1, cap0)
    	}
    }
    
    func BenchmarkWriteByte(b *testing.B) {
    	const n = 4 << 10
    	b.SetBytes(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // This statement will instantiate all tests from FooTest again, each
    // with parameter values "cat" and "dog":
    
    const char* pets[] = {"cat", "dog"};
    INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets));
    
    // The tests from the instantiation above will have these names:
    //
    //    * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat"
    //    * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. src/runtime/select.go

    		print("select: cas0=", cas0, "\n")
    	}
    
    	// NOTE: In order to maintain a lean stack size, the number of scases
    	// is capped at 65536.
    	cas1 := (*[1 << 16]scase)(unsafe.Pointer(cas0))
    	order1 := (*[1 << 17]uint16)(unsafe.Pointer(order0))
    
    	ncases := nsends + nrecvs
    	scases := cas1[:ncases:ncases]
    	pollorder := order1[:ncases:ncases]
    	lockorder := order1[ncases:][:ncases:ncases]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    const acePrefix = "xn--"
    
    func (p *Profile) simplify(cat category) category {
    	switch cat {
    	case disallowedSTD3Mapped:
    		if p.useSTD3Rules {
    			cat = disallowed
    		} else {
    			cat = mapped
    		}
    	case disallowedSTD3Valid:
    		if p.useSTD3Rules {
    			cat = disallowed
    		} else {
    			cat = valid
    		}
    	case deviation:
    		if !p.transitional {
    			cat = valid
    		}
    	case validNV8, validXV8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top