Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,884 for princess (0.53 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandle.java

        Map<String, String> getEnvironment();
    
        /**
         * Starts this process, blocking until the process has started.
         *
         * @return this
         */
        ExecHandle start();
    
        void removeStartupContext();
    
        ExecHandleState getState();
    
        /**
         * Aborts the process, blocking until the process has exited. Does nothing if the process has already completed.
         */
        void abort();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/process/internal/MultiRequestWorkerProcessIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.process.internal
    
    import junit.framework.AssertionFailedError
    import org.gradle.api.reflect.ObjectInstantiationException
    import org.gradle.process.internal.worker.RequestHandler
    import org.gradle.process.internal.worker.WorkerControl
    import org.gradle.process.internal.worker.WorkerProcessException
    import org.gradle.test.fixtures.ConcurrentTestUtil
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultMultiRequestWorkerProcessBuilder.java

    import org.gradle.process.ExecResult;
    import org.gradle.process.internal.JavaExecHandleBuilder;
    import org.gradle.process.internal.worker.request.Receiver;
    import org.gradle.process.internal.worker.request.Request;
    import org.gradle.process.internal.worker.request.RequestArgumentSerializers;
    import org.gradle.process.internal.worker.request.RequestProtocol;
    import org.gradle.process.internal.worker.request.RequestSerializerRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/streams/EmptyStdInStreamsHandler.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.streams;
    
    import org.gradle.api.UncheckedIOException;
    import org.gradle.process.internal.StreamsHandler;
    
    import java.io.IOException;
    import java.util.concurrent.Executor;
    
    /**
     * A handler that writes nothing to the process' stdin
     */
    public class EmptyStdInStreamsHandler implements StreamsHandler {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 16:06:58 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. pkg/registry/core/serviceaccount/storage/storage.go

    	genericregistry "k8s.io/apiserver/pkg/registry/generic/registry"
    	"k8s.io/apiserver/pkg/registry/rest"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/printers"
    	printersinternal "k8s.io/kubernetes/pkg/printers/internalversion"
    	printerstorage "k8s.io/kubernetes/pkg/printers/storage"
    	"k8s.io/kubernetes/pkg/registry/core/serviceaccount"
    	token "k8s.io/kubernetes/pkg/serviceaccount"
    )
    
    type REST struct {
    	*genericregistry.Store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationIntegrationTest.groovy

                    public static Process execute(String command) { return null; }
                    public static Process execute(String command, String[] envp, File file) { return null; }
                    public static Process execute(String command, List<?> envp, File file) { return null; }
                    public static Process execute(String[] command) { return null; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/generate_invalid.txt

    //go:generate echo Fail e
    
    -- inconsistent/a.go --
    // Valid go file with inconsistent package name.
    // Go generate should process this file with GOPACKAGE=a
    
    package a
    //go:generate echo Success $GOPACKAGE
    
    -- inconsistent/b.go --
    // Valid go file with inconsistent package name.
    // Go generate should process this file with GOPACKAGE=b
    
    //go:generate echo Success $GOPACKAGE
    package b
    
    -- inconsistent/c.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/process/ExecOutput.java

         *
         * @return handle of the standard output of the process.
         */
        StandardStreamContent getStandardOutput();
    
        /**
         * Gets a handle to the content of the process' standard error output.
         *
         * @return handle of the standard error output of the process.
         */
        StandardStreamContent getStandardError();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 00:18:08 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

        /**
         * Enable or disable assertions for the process.
         *
         * @param enabled true to enable assertions, false to disable.
         */
        void setEnableAssertions(boolean enabled);
    
        /**
         * Determines whether debugging is enabled for the test process. When enabled — {@code debug = true} — the process
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. pkg/registry/core/podtemplate/storage/storage.go

    	"k8s.io/apiserver/pkg/registry/generic"
    	genericregistry "k8s.io/apiserver/pkg/registry/generic/registry"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/printers"
    	printersinternal "k8s.io/kubernetes/pkg/printers/internalversion"
    	printerstorage "k8s.io/kubernetes/pkg/printers/storage"
    	"k8s.io/kubernetes/pkg/registry/core/podtemplate"
    )
    
    // REST implements a RESTStorage for pod templates.
    type REST struct {
    	*genericregistry.Store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2K bytes
    - Viewed (0)
Back to top