Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for testClose (0.14 sec)

  1. src/archive/tar/writer_test.go

    		}
    		testReadFrom struct { // ReadFrom(testFile{ops}) == (wantCnt, wantErr)
    			ops     fileOps
    			wantCnt int64
    			wantErr error
    		}
    		testClose struct { // Close() == wantErr
    			wantErr error
    		}
    		testFnc any // testHeader | testWrite | testReadFrom | testClose
    	)
    
    	vectors := []struct {
    		file  string // Optional filename of expected output
    		tests []testFnc
    	}{{
    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. src/test/java/org/codelibs/core/io/CloseableUtilTest.java

    import java.io.OutputStream;
    
    import org.junit.Test;
    
    /**
     * @author shot
     */
    public class CloseableUtilTest {
    
        /**
         * @throws Exception
         */
        @Test
        public void testClose() throws Exception {
            final NotifyOutputStream out = new NotifyOutputStream();
            CloseableUtil.close(out);
            assertThat(out.getNotify(), is("closed"));
        }
    
        /**
         * @throws Exception
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    	s.Close()
    	var opErr *net.OpError
    	if !errors.As(err, &opErr) || opErr.Err != error(alertUnknownCA) {
    		t.Errorf("Got error: %s; expected: %s", err, error(alertUnknownCA))
    	}
    }
    
    func TestClose(t *testing.T) {
    	c, s := localPipe(t)
    	go c.Close()
    
    	err := Server(s, testConfig).Handshake()
    	s.Close()
    	if err != io.EOF {
    		t.Errorf("Got error: %s; expected: %s", err, io.EOF)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      status = file->Tell(&position);
      EXPECT_EQ(status.code(), Code::OK);
      EXPECT_EQ(position, test_data.size());
    }
    
    TEST_P(ModularFileSystemTest, TestClose) {
      const std::string filename = GetURIForPath("a_file");
      std::unique_ptr<WritableFile> file;
      Status status = env_->NewWritableFile(filename, &file);
      if (!status.ok())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  5. src/encoding/xml/marshal_test.go

    		EndElement{Name{"", "foo"}},
    	},
    	want: `<foo></foo>`,
    }, {
    	desc: "directive",
    	toks: []Token{
    		Directive("foo"),
    	},
    	want: `<!foo>`,
    }}
    
    func TestClose(t *testing.T) {
    	for _, tt := range closeTests {
    		tt := tt
    		t.Run(tt.desc, func(t *testing.T) {
    			var out strings.Builder
    			enc := NewEncoder(&out)
    			for j, tok := range tt.toks {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework_test.go

    			}
    			got := f.ListPlugins()
    			if diff := cmp.Diff(tt.want, got); diff != "" {
    				t.Errorf("unexpected plugins (-want,+got):\n%s", diff)
    			}
    		})
    	}
    }
    
    func TestClose(t *testing.T) {
    	tests := []struct {
    		name    string
    		plugins *config.Plugins
    		wantErr error
    	}{
    		{
    			name: "close doesn't return error",
    			plugins: &config.Plugins{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/state/state_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package state
    
    import (
    	"reflect"
    	"testing"
    
    	"k8s.io/utils/cpuset"
    )
    
    func TestClone(t *testing.T) {
    	expect := ContainerCPUAssignments{
    		"pod": map[string]cpuset.CPUSet{
    			"container1": cpuset.New(4, 5, 6),
    			"container2": cpuset.New(1, 2, 3),
    		},
    	}
    	actual := expect.Clone()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 935 bytes
    - Viewed (0)
  8. src/strings/clone_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package strings_test
    
    import (
    	"strings"
    	"testing"
    	"unsafe"
    )
    
    var emptyString string
    
    func TestClone(t *testing.T) {
    	var cloneTests = []string{
    		"",
    		strings.Clone(""),
    		strings.Repeat("a", 42)[:0],
    		"short",
    		strings.Repeat("a", 42),
    	}
    	for _, input := range cloneTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 17:24:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. test/closedchan.go

    	testasync1,
    	testasync2,
    	testasync3,
    	testasync4,
    }
    
    func main() {
    	for _, mk := range mks {
    		test1(mk(closedsync()))
    	}
    	
    	for _, testclosed := range testcloseds {
    		for _, mk := range mks {
    			testclosed(mk(closedasync()))
    		}
    	}
    	
    	var ch chan int	
    	shouldPanic(func() {
    		close(ch)
    	})
    	
    	ch = make(chan int)
    	close(ch)
    	shouldPanic(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 5.8K bytes
    - Viewed (0)
  10. pkg/queue/instance_test.go

    		close(stop)
    	})
    
    	select {
    	case <-time.After(200 * time.Millisecond):
    		t.Error("close stop, method exit timeout.")
    	case <-signal:
    		t.Log("queue return.")
    	}
    }
    
    func TestClosed(t *testing.T) {
    	t.Run("immediate close", func(t *testing.T) {
    		stop := make(chan struct{})
    		q := NewQueue(0)
    		go q.Run(stop)
    		close(stop)
    		if err := WaitForClose(q, 10*time.Second); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 21 16:30:36 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top