Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 240 for testWrite (0.35 sec)

  1. src/archive/tar/writer_test.go

    			testRemaining{0, 0},
    			testWrite{"", 0, nil},
    			testWrite{"a", 0, ErrWriteTooLong},
    			testReadFrom{fileOps{""}, 0, nil},
    			testReadFrom{fileOps{"a"}, 0, ErrWriteTooLong},
    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeReg{1, "a"},
    		tests: []testFnc{
    			testRemaining{1, 1},
    			testWrite{"", 0, nil},
    			testWrite{"a", 1, nil},
    			testWrite{"bcde", 0, ErrWriteTooLong},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/ByteSinkTester.java

      private static final ImmutableList<Method> testMethods = getTestMethods(ByteSinkTester.class);
    
      static TestSuite tests(String name, ByteSinkFactory factory) {
        TestSuite suite = new TestSuite(name);
        for (Entry<String, String> entry : TEST_STRINGS.entrySet()) {
          String desc = entry.getKey();
          TestSuite stringSuite = suiteForString(name, factory, entry.getValue(), desc);
          suite.addTest(stringSuite);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. src/encoding/csv/writer_test.go

    	{Input: [][]string{{"a", "a", ""}}, Output: "a|a|\n", Comma: '|'},
    	{Input: [][]string{{",", ",", ""}}, Output: ",|,|\n", Comma: '|'},
    	{Input: [][]string{{"foo"}}, Comma: '"', Error: errInvalidDelim},
    }
    
    func TestWrite(t *testing.T) {
    	for n, tt := range writeTests {
    		b := &strings.Builder{}
    		f := NewWriter(b)
    		f.UseCRLF = tt.UseCRLF
    		if tt.Comma != 0 {
    			f.Comma = tt.Comma
    		}
    		err := f.WriteAll(tt.Input)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:46:20 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/CharSinkTester.java

      private static final ImmutableList<Method> testMethods = getTestMethods(CharSinkTester.class);
    
      static TestSuite tests(String name, CharSinkFactory factory) {
        TestSuite suite = new TestSuite(name);
        for (Entry<String, String> entry : TEST_STRINGS.entrySet()) {
          String desc = entry.getKey();
          TestSuite stringSuite = suiteForString(name, factory, entry.getValue(), desc);
          suite.addTest(stringSuite);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. src/encoding/binary/binary_test.go

    func TestLittleEndianWrite(t *testing.T)    { testWrite(t, LittleEndian, little, s) }
    func TestLittleEndianPtrWrite(t *testing.T) { testWrite(t, LittleEndian, little, &s) }
    
    func TestBigEndianRead(t *testing.T)     { testRead(t, BigEndian, big, s) }
    func TestBigEndianWrite(t *testing.T)    { testWrite(t, BigEndian, big, s) }
    func TestBigEndianPtrWrite(t *testing.T) { testWrite(t, BigEndian, big, &s) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. src/log/syslog/syslog_test.go

    		t.Errorf("Got %q, does not match template %q (%d %s)", out, tmpl, n, err)
    	}
    	if hostname != parsedHostname {
    		t.Errorf("Hostname got %q want %q in %q", parsedHostname, hostname, out)
    	}
    }
    
    func TestWrite(t *testing.T) {
    	t.Parallel()
    
    	tests := []struct {
    		pri Priority
    		pre string
    		msg string
    		exp string
    	}{
    		{LOG_USER | LOG_ERR, "syslog_test", "", "%s %s syslog_test[%d]: \n"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 16:09:24 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    			expect: authorizer.DecisionAllow,
    		},
    	}
    
    	podToAdd, _ := generatePod("testwrite", "ns0", "node0", "default", opts)
    
    	b.ResetTimer()
    	for _, testWriteContention := range []bool{false, true} {
    
    		shouldWrite := int32(1)
    		writes := int64(0)
    		_1ms := int64(0)
    		_10ms := int64(0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/TestWriter.java

    import java.io.IOException;
    import java.io.OutputStreamWriter;
    
    /** @author Colin Decker */
    public class TestWriter extends FilterWriter {
    
      private final TestOutputStream out;
    
      public TestWriter(TestOption... options) throws IOException {
        this(new TestOutputStream(ByteStreams.nullOutputStream(), options));
      }
    
      public TestWriter(TestOutputStream out) {
        super(new OutputStreamWriter(checkNotNull(out), UTF_8));
        this.out = out;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  9. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/TestSuite.java

    import org.gradle.api.Incubating;
    import org.gradle.api.Named;
    
    /**
     * Base test suite component. A test suite is a collection of tests.
     *
     * @since 7.3
     */
    @Incubating
    public interface TestSuite extends Named {
        /**
         * Available targets for this test suite.
         */
        ExtensiblePolymorphicDomainObjectContainer<? extends TestSuiteTarget> getTargets();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/integTest/resources/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest/emitsBuildOperationsForJUnitTests/src/test/java/org/gradle/TestSuite.java

     */
    
    package org.gradle;
    
    import org.junit.runner.RunWith;
    import org.junit.runners.Suite;
    
    @RunWith(Suite.class)
    @Suite.SuiteClasses({Test.class, OtherTest.class})
    public class TestSuite {
        @org.junit.BeforeClass public static void init() {
            System.out.println("before suite class out");
            System.err.println("before suite class err");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top