Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 600 for out2 (0.04 sec)

  1. src/encoding/pem/pem_test.go

    	{"abc\nd\t ", "abc", "d\t "},
    }
    
    func TestGetLine(t *testing.T) {
    	for i, test := range getLineTests {
    		x, y := getLine([]byte(test.in))
    		if string(x) != test.out1 || string(y) != test.out2 {
    			t.Errorf("#%d got:%+v,%+v want:%s,%s", i, x, y, test.out1, test.out2)
    		}
    	}
    }
    
    func TestDecode(t *testing.T) {
    	result, remainder := Decode([]byte(pemData))
    	if !reflect.DeepEqual(result, certificate) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:56:00 UTC 2022
    - 23.5K bytes
    - Viewed (0)
  2. src/math/big/float_test.go

    			}
    
    			x := makeFloat(tx)
    			out, acc := x.Float64()
    			if !alike64(out, tout) || acc != tacc {
    				t.Errorf("%s: got %g (%#016x, %s); want %g (%#016x, %s)", tx, out, math.Float64bits(out), acc, test.out, math.Float64bits(test.out), tacc)
    			}
    
    			// test that x.SetFloat64(f).Float64() == f
    			var x2 Float
    			out2, acc2 := x2.SetFloat64(out).Float64()
    			if !alike64(out2, out) || acc2 != Exact {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cache/cache.go

    func (c *DiskCache) copyFile(file io.ReadSeeker, out OutputID, size int64) error {
    	name := c.fileName(out, "d")
    	info, err := os.Stat(name)
    	if err == nil && info.Size() == size {
    		// Check hash.
    		if f, err := os.Open(name); err == nil {
    			h := sha256.New()
    			io.Copy(h, f)
    			f.Close()
    			var out2 OutputID
    			h.Sum(out2[:0])
    			if out == out2 {
    				return nil
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            taskTypeWithInputFileListProperty()
            buildFile """
                task produce1(type: FileProducer) {
                    output = file("out1.txt")
                    content = "one"
                }
                task produce2(type: FileProducer) {
                    output = file("out2.txt")
                    content = "two"
                }
                def files = project.files(produce1, produce2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_function_test.cc

        for (int i = 0; i < expected_results.size(); ++i) {
          TF_Tensor* out = csession.output_tensor(i);
          ASSERT_TRUE(out != nullptr);
          EXPECT_EQ(TF_INT32, TF_TensorType(out));
          EXPECT_EQ(0, TF_NumDims(out));  // scalar
          ASSERT_EQ(sizeof(int32_t), TF_TensorByteSize(out));
          int32_t* output_contents = static_cast<int32_t*>(TF_TensorData(out));
          EXPECT_EQ(expected_results[i], *output_contents);
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

                }
    
                task resolve1(type: Sync) {
                    from configurations.compileClasspath
                    into 'out1'
                }
                task resolve2(type: Sync) {
                    from configurations.testCompileClasspath
                    into 'out2'
                    mustRunAfter(tasks.resolve1)
                }
            """
            file("src/main/java/Thing.java") << "public class Thing { }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        // Another stream should be able to send data even though 1 is blocked.
        val stream2 = connection.newStream(headerEntries("b", "banana"), true)
        val out2 = stream2.getSink().buffer()
        out2.writeUtf8("foo")
        out2.flush()
        assertThat(connection.writeBytesTotal)
          .isEqualTo((Settings.DEFAULT_INITIAL_WINDOW_SIZE + 3).toLong())
        assertThat(connection.writeBytesMaximum)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/mips/obj0.go

    					continue
    				}
    			}
    			for u := t[1:]; -cap(u) <= -cap(s); u = u[1:] {
    				if c.depend(&u[0], &t[0]) {
    					continue
    				}
    			}
    			goto out2
    		}
    
    		if s[0].p.Mark&BRANCH != 0 {
    			s[0].nop = 1
    		}
    		continue
    
    	out2:
    		// t[0] is the instruction being moved to fill the delay
    		stmp := t[0]
    		copy(t[:i-j], t[1:i-j+1])
    		s[0] = stmp
    
    		if t[i-j-1].p.Mark&BRANCH != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    		}
    		vout2 := v1.Convert(t2)
    		out2 := vout2.Interface()
    		if vout2.Type() != tt.out.Type() || !DeepEqual(out2, tt.out.Interface()) {
    			t.Errorf("ValueOf(%T(%[1]v)).Convert(%s) = %T(%[3]v), want %T(%[4]v)", tt.in.Interface(), t2, out2, tt.out.Interface())
    		}
    		if got, want := vout2.Kind(), vout2.Type().Kind(); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/scalar_fiat.go

    	x60 := uint8((x58 >> 8))
    	out1[0] = x5
    	out1[1] = x7
    	out1[2] = x9
    	out1[3] = x11
    	out1[4] = x13
    	out1[5] = x15
    	out1[6] = x17
    	out1[7] = x18
    	out1[8] = x19
    	out1[9] = x21
    	out1[10] = x23
    	out1[11] = x25
    	out1[12] = x27
    	out1[13] = x29
    	out1[14] = x31
    	out1[15] = x32
    	out1[16] = x33
    	out1[17] = x35
    	out1[18] = x37
    	out1[19] = x39
    	out1[20] = x41
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
Back to top