Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,687 for close1 (0.2 sec)

  1. src/database/sql/fakedb_test.go

    	return s.placeholderConverter[idx]
    }
    
    func (s *fakeStmt) Close() error {
    	if s.panic == "Close" {
    		panic(s.panic)
    	}
    	if s.c == nil {
    		panic("nil conn in fakeStmt.Close")
    	}
    	if s.c.db == nil {
    		panic("in fakeStmt.Close, conn's db is nil (already closed)")
    	}
    	s.touchMem()
    	if !s.closed {
    		s.c.incrStat(&s.c.stmtsClosed)
    		s.closed = true
    	}
    	if s.next != nil {
    		s.next.Close()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. internal/logger/logrotate.go

    // Write is blocking otherwise.
    func (w *Writer) Write(p []byte) (n int, err error) {
    	return w.pw.Write(p)
    }
    
    // Close closes the writer.
    // Any accepted writes will be flushed. Any new writes will be rejected.
    // Once Close() exits, files are synchronized to disk.
    func (w *Writer) Close() error {
    	w.pw.CloseWithError(nil)
    
    	if w.f != nil {
    		if err := w.closeCurrentFile(); err != nil {
    			return err
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    	if err == nil {
    		panic("nil error")
    	}
    	pc.broken = true
    	if pc.closed == nil {
    		pc.closed = err
    		pc.t.decConnsPerHost(pc.cacheKey)
    		// Close HTTP/1 (pc.alt == nil) connection.
    		// HTTP/2 closes its connection itself.
    		if pc.alt == nil {
    			if err != errCallerOwnsConn {
    				pc.conn.Close()
    			}
    			close(pc.closech)
    		}
    	}
    	pc.mutateHeaderFunc = nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. .github/workflows/stale-pr.yml

                It will be closed in 14 days if no further activity occurs.
                If you don't want the stale bot to close it, then set a milestone for it.
              days-before-pr-close: 14
              close-pr-message: >
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    		t.Errorf("Until did not return immediately when the stop chan was closed inside the func")
    	}
    }
    
    func TestJitterUntil(t *testing.T) {
    	ch := make(chan struct{})
    	// if a channel is closed JitterUntil never calls function f
    	// and returns immediately
    	close(ch)
    	JitterUntil(func() {
    		t.Fatal("should not have been invoked")
    	}, 0, 1.0, true, ch)
    
    	ch = make(chan struct{})
    	called := make(chan struct{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    		errorChan <- exec.StreamWithContext(context.Background(), *options)
    	}()
    
    	select {
    	case <-time.After(wait.ForeverTestTimeout):
    		t.Fatalf("expect stream to be closed after connection is closed.")
    	case err := <-errorChan:
    		if err != nil {
    			t.Errorf("unexpected error: %v", err)
    		}
    	}
    	data, err := io.ReadAll(bytes.NewReader(stdout.Bytes()))
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/AbstractFileLockManagerTest.groovy

            thrown(IllegalStateException)
        }
    
        def "can close a lock multiple times"() {
            given:
            def lock = createLock(Exclusive)
            lock.close()
    
            expect:
            lock.close()
        }
    
        def "cannot read from file after lock has been closed"() {
            given:
            def lock = createLock(Exclusive)
            lock.close()
    
            when:
            lock.readFile({} as Supplier)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

        }
    
        @Override
        public void close() {
            if (closed) {
                // Already closed.
                return;
            }
            closed = true;
            for (Loader value : loaders.values()) {
                IoActions.closeQuietly(value);
            }
        }
    
        private void ensureOpened() {
            if (closed) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. internal/rest/client.go

    	return
    }
    
    // ErrClientClosed returned when *Client is closed.
    var ErrClientClosed = errors.New("rest client is closed")
    
    // Call - make a REST call with context.
    func (c *Client) Call(ctx context.Context, method string, values url.Values, body io.Reader, length int64) (reply io.ReadCloser, err error) {
    	switch atomic.LoadInt32(&c.connected) {
    	case closed:
    		// client closed, this is usually a manual process
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. src/internal/poll/fd_unix.go

    }
    
    // Close closes the FD. The underlying file descriptor is closed by the
    // destroy method when there are no remaining references.
    func (fd *FD) Close() error {
    	if !fd.fdmu.increfAndClose() {
    		return errClosing(fd.isFile)
    	}
    
    	// Unblock any I/O.  Once it all unblocks and returns,
    	// so that it cannot be referring to fd.sysfd anymore,
    	// the final decref will close fd.sysfd. This should happen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top