Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 183 for choosing (2.29 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ServiceRegistryFactory.java

    /**
     * A hierarchical service registry.
     */
    public interface ServiceRegistryFactory {
        /**
         * Creates the services for the given domain object. The caller is responsible for closing the registry.
         *
         * @param domainObject The domain object.
         * @return The registry containing the services for the domain object.
         */
        ServiceRegistry createFor(Object domainObject);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 08 03:33:31 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskExecutionIntegrationTest.groovy

                    println "task container node state after graph closing: ${registry.state(tasksPath)}"
                }
            '''
    
            then:
            succeeds "t1"
    
            and:
            output.contains "task container node state when task graph ready: ${ModelNode.State.SelfClosed}"
            output.contains "task container node state after graph closing: ${ModelNode.State.GraphClosed}"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/start_windows.go

    import (
    	"os/exec"
    	"syscall"
    
    	"golang.org/x/sys/windows"
    )
    
    func init() {
    	daemonize = daemonizeWindows
    }
    
    func daemonizeWindows(cmd *exec.Cmd) {
    	// Set DETACHED_PROCESS creation flag so that closing
    	// the console window the parent process was run in
    	// does not kill the child.
    	// See documentation of creation flags in the Microsoft documentation:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 732 bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/WebSocket.kt

     *
     *  * **Open:** the web socket has been accepted by the remote peer and is fully operational.
     *    Messages in either direction are enqueued for immediate transmission.
     *
     *  * **Closing:** one of the peers on the web socket has initiated a graceful shutdown. The web
     *    socket will continue to transmit already-enqueued messages but will refuse to enqueue new
     *    ones.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/SettingsProcessor.java

     * Responsible for locating, constructing, and configuring the {@link SettingsInternal} for a build.
     */
    public interface SettingsProcessor {
        /**
         * Load the settings for the given build. The caller is responsible for closing the return value.
         */
        SettingsState process(
            GradleInternal gradle,
            SettingsLocation settingsLocation,
            ClassLoaderScope buildRootClassLoaderScope,
            StartParameter startParameter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 11 09:02:18 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ScopedFingerprintWriter.kt

        private val writeContext: DefaultWriteContext
    ) : Closeable {
        override fun close() {
            // we synchronize access to all resources used by callbacks
            // in case there was still an event being dispatched at closing time.
            synchronized(writeContext) {
                unsafeWrite(null)
                writeContext.close()
            }
        }
    
        fun write(value: T, trace: PropertyTrace? = null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/RandomAccessFileInputStream.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.io.RandomAccessFile;
    
    /**
     * Reads from a {@link RandomAccessFile}. Each operation reads from and advances the current position of the file.
     *
     * <p>Closing this stream does not close the underlying file.
     */
    // TODO Replace this with Channels.newInputStream(SeekableByteChannel)
    public class RandomAccessFileInputStream extends InputStream {
        private final RandomAccessFile file;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. pkg/hbone/util.go

    		}
    		if err != nil {
    			// read is already closed - we need to close out
    			_ = closeWriter(dst)
    			return
    		}
    	}
    }
    
    // CloseWriter is one of possible interfaces implemented by Out to send a FIN, without closing
    // the input. Some writers only do this when Close is called.
    type CloseWriter interface {
    	CloseWrite() error
    }
    
    func closeWriter(dst io.Writer) error {
    	if cw, ok := dst.(CloseWriter); ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/package-info.java

     * CharSource CharSource}, {@link ByteSink ByteSink} and {@link CharSink CharSink}. They are
     * factories for I/O streams that provide many convenience methods that handle both opening and
     * closing streams for you.
     *
     * <p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
     * library. For more information on Sources and Sinks as well as other features of this package, see
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 23 19:57:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ModelBuilder.java

         * @throws GradleConnectionException On some other failure using the connection.
         * @throws IllegalStateException When the connection has been closed or is closing.
         * @since 1.0-milestone-3
         */
        T get() throws GradleConnectionException, IllegalStateException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top