Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 373 for closeFn (0.16 sec)

  1. src/os/exec/exec_test.go

    			t.Errorf("iteration %d, process B got:\n%s\nwant:\n%s\n", i, got, want)
    		}
    		la.Close()
    		lb.Close()
    		for _, f := range ca.ExtraFiles {
    			f.Close()
    		}
    		for _, f := range cb.ExtraFiles {
    			f.Close()
    		}
    	}
    }
    
    type delayedInfiniteReader struct{}
    
    func (delayedInfiniteReader) Read(b []byte) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryConcurrencyTest.groovy

                    }
                }
            }
    
            then:
            def e = thrown(IllegalStateException)
            e.message.contains("closed")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. pkg/scheduler/scheduler.go

    	go wait.UntilWithContext(ctx, sched.ScheduleOne, 0)
    
    	<-ctx.Done()
    	sched.SchedulingQueue.Close()
    
    	// If the plugins satisfy the io.Closer interface, they are closed.
    	err := sched.Profiles.Close()
    	if err != nil {
    		logger.Error(err, "Failed to close plugins")
    	}
    }
    
    // NewInformerFactory creates a SharedInformerFactory and initializes a scheduler specific
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            outputContains("service: closed with value 12")
    
            when:
            run("first", "second")
    
            then:
            output.count("service:") == 4
            outputContains("service: created with value = 10")
            outputContains("service: value is 11")
            outputContains("service: value is 12")
            outputContains("service: closed with value 12")
    
            when:
            run("help")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    	peerClosed chan struct{} // closed when the peer sends an END_STREAM flag
    	donec      chan struct{} // closed after the stream is in the closed state
    	on100      chan struct{} // buffered; written to if a 100 is received
    
    	respHeaderRecv chan struct{} // closed when headers are received
    	res            *Response     // set if respHeaderRecv is closed
    
    	flow        http2outflow // guarded by cc.mu
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. src/net/http/client_test.go

    	c := &Client{Transport: roundTripperWithoutCloseIdle{}}
    	c.CloseIdleConnections() // verify we don't crash at least
    
    	closed := false
    	var tr RoundTripper = roundTripperWithCloseIdle(func() {
    		closed = true
    	})
    	c = &Client{Transport: tr}
    	c.CloseIdleConnections()
    	if !closed {
    		t.Error("not closed")
    	}
    }
    
    type testRoundTripper func(*Request) (*Response, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. src/net/unixsock_posix.go

    	return newUnixConn(fd), nil
    }
    
    func (ln *UnixListener) close() error {
    	// The operating system doesn't clean up
    	// the file that announcing created, so
    	// we have to clean it up ourselves.
    	// There's a race here--we can't know for
    	// sure whether someone else has come along
    	// and replaced our socket name already--
    	// but this sequence (remove then close)
    	// is at least compatible with the auto-remove
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. internal/event/target/mysql.go

    	}
    
    	// Delete the event from store.
    	return target.store.Del(key.Name)
    }
    
    // Close - closes underneath connections to MySQL database.
    func (target *MySQLTarget) Close() error {
    	close(target.quitCh)
    	if target.updateStmt != nil {
    		// FIXME: log returned error. ignore time being.
    		_ = target.updateStmt.Close()
    	}
    
    	if target.deleteStmt != nil {
    		// FIXME: log returned error. ignore time being.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

                int count = Math.min(buffer.remaining(), max);
                buffer.get(dest, offset, count);
                return count;
            }
    
            @Override
            public void close() throws IOException {
                selector.close();
            }
        }
    
        private static class SocketOutputStream extends OutputStream {
            private static final int RETRIES_WHEN_BUFFER_FULL = 2;
            private Selector selector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top