Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 873 for 34$ (0.03 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPSS

    00000150  88 7a 36 47 a5 08 0d 92  42 5b c2 81 c0 be 97 79  |.z6G....B[.....y|
    00000160  98 40 fb 4f 6d 14 fd 2b  13 8b c2 a5 2e 67 d8 d4  |.@.Om..+.....g..|
    00000170  09 9e d6 22 38 b7 4a 0b  74 73 2b c2 34 f1 d1 93  |..."8.J.ts+.4...|
    00000180  e5 96 d9 74 7b f3 58 9f  6c 61 3c c0 b0 41 d4 d9  |...t{.X.la<..A..|
    00000190  2b 2b 24 23 77 5b 1c 3b  bd 75 5d ce 20 54 cf a1  |++$#w[.;.u]. T..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. test/fixedbugs/issue50671.go

    	b := int64(x)
    	return a, b
    }
    
    var a, b, c float64
    
    // Poison some floating point registers with non-zero high bits.
    //
    //go:noinline
    func poison(x float64) {
    	a = x - 123.45
    	b = a * 1.2
    	c = b + 3.4
    }
    
    func main() {
    	poison(333.3)
    	_, b := F(123)
    	if b != 123 {
    		panic("FAIL")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 19 15:45:58 UTC 2022
    - 599 bytes
    - Viewed (0)
  3. src/cmd/internal/edit/edit_test.go

    func TestEdit(t *testing.T) {
    	b := NewBuffer([]byte("0123456789"))
    	b.Insert(8, ",7½,")
    	b.Replace(9, 10, "the-end")
    	b.Insert(10, "!")
    	b.Insert(4, "3.14,")
    	b.Insert(4, "π,")
    	b.Insert(4, "3.15,")
    	b.Replace(3, 4, "three,")
    	want := "012three,3.14,π,3.15,4567,7½,8the-end!"
    
    	s := b.String()
    	if s != want {
    		t.Errorf("b.String() = %q, want %q", s, want)
    	}
    	sb := b.Bytes()
    	if string(sb) != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 14:59:26 UTC 2017
    - 653 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/plan9/zsysnum_plan9.go

    	SYS_BRK_        = 24
    	SYS_REMOVE      = 25
    	SYS_NOTIFY      = 28
    	SYS_NOTED       = 29
    	SYS_SEGATTACH   = 30
    	SYS_SEGDETACH   = 31
    	SYS_SEGFREE     = 32
    	SYS_SEGFLUSH    = 33
    	SYS_RENDEZVOUS  = 34
    	SYS_UNMOUNT     = 35
    	SYS_SEMACQUIRE  = 37
    	SYS_SEMRELEASE  = 38
    	SYS_SEEK        = 39
    	SYS_FVERSION    = 40
    	SYS_ERRSTR      = 41
    	SYS_STAT        = 42
    	SYS_FSTAT       = 43
    	SYS_WSTAT       = 44
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1K bytes
    - Viewed (0)
  5. test/abi/f_ret_z_not.go

    type Z struct {
    }
    
    type NZ struct {
    	x, y int
    }
    
    //go:noinline
    func f(x, y int) (Z, NZ, Z) {
    	var z Z
    	return z, NZ{x, y}, z
    }
    
    //go:noinline
    func g() (Z, NZ, Z) {
    	a, b, c := f(3, 4)
    	return c, b, a
    }
    
    func main() {
    	_, b, _ := g()
    	fmt.Println(b.x + b.y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 616 bytes
    - Viewed (0)
  6. test/fixedbugs/issue7675.go

    	f("1", 2, 3.1, "4")
    	f(1, 0.5, "hello", 4, 5) // ERROR "too many arguments|incompatible type"
    	g(1, 0.5)                // ERROR "not enough arguments|incompatible type"
    	g("1", 2, 3.1)
    	g(1, 0.5, []int{3, 4}...) // ERROR "not enough arguments|incompatible type"
    	g("1", 2, 3.1, "4", "5")
    	g(1, 0.5, "hello", 4, []int{5, 6}...) // ERROR "too many arguments|truncated to integer"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 785 bytes
    - Viewed (0)
  7. src/internal/trace/testdata/tests/go122-create-syscall-with-p.test

    -- expect --
    FAILURE ".*expected a proc but didn't have one.*"
    -- trace --
    Trace Go1.22
    EventBatch gen=1 m=0 time=0 size=34
    GoCreateSyscall dt=1 new_g=4
    ProcStatus dt=1 p=0 pstatus=2
    ProcStart dt=1 p=0 p_seq=1
    GoSyscallEndBlocked dt=1
    GoStart dt=1 g=4 g_seq=1
    GoSyscallBegin dt=1 p_seq=2 stack=0
    GoDestroySyscall dt=1
    GoCreateSyscall dt=1 new_g=4
    GoSyscallEnd dt=1
    GoSyscallBegin dt=1 p_seq=3 stack=0
    GoDestroySyscall dt=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 624 bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Server-TLSv12-RSA-AES

    00000100  45 88 7a 36 47 a5 08 0d  92 42 5b c2 81 c0 be 97  |E.z6G....B[.....|
    00000110  79 98 40 fb 4f 6d 14 fd  2b 13 8b c2 a5 2e 67 d8  |y.@.Om..+.....g.|
    00000120  d4 09 9e d6 22 38 b7 4a  0b 74 73 2b c2 34 f1 d1  |...."8.J.ts+.4..|
    00000130  93 e5 96 d9 74 7b f3 58  9f 6c 61 3c c0 b0 41 d4  |....t{.X.la<..A.|
    00000140  d9 2b 2b 24 23 77 5b 1c  3b bd 75 5d ce 20 54 cf  |.++$#w[.;.u]. T.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. tensorflow/c/kernels/bitcast_op_test.cc

                      .Attr("type", DT_INT8)
                      .Attr("T", DT_INT64)
                      .Input(FakeInput(DT_INT64))
                      .Finalize(&def));
      shape_inference::InferenceContext c(0, def, op_def, {S({3, 4})}, {}, {}, {});
      std::vector<shape_inference::ShapeHandle> input_shapes;
      TF_CHECK_OK(c.input("input", &input_shapes));
      ASSERT_EQ("[3,4]", c.DebugString(input_shapes[0]));
      TF_CHECK_OK(reg->shape_inference_fn(&c));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 18 15:10:51 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/base/StopwatchTest.java

        ticker.advance(16);
    
        stopwatch.start();
        assertEquals(9, stopwatch.elapsed(NANOSECONDS));
        ticker.advance(25);
        assertEquals(34, stopwatch.elapsed(NANOSECONDS));
    
        stopwatch.stop();
        ticker.advance(36);
        assertEquals(34, stopwatch.elapsed(NANOSECONDS));
      }
    
      public void testElapsed_micros() {
        stopwatch.start();
        ticker.advance(999);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top