Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,884 for princess (1.98 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/publishing-process.graffle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/printers/terminal.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package printers
    
    import (
    	"io"
    	"os"
    	"runtime"
    	"strings"
    
    	"github.com/moby/term"
    )
    
    // terminalEscaper replaces ANSI escape sequences and other terminal special
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/printers/json_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package printers
    
    import (
    	"bytes"
    	"reflect"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/score/ScoreBooster.java

        protected int priority = 1;
    
        protected String requestTimeout = "1m";
    
        protected int requestCacheSize = 1000;
    
        protected String scriptLang = "painless";
    
        protected String scriptCode = null;
    
        protected Function<Map<String, Object>, String[]> idFinder = params -> {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/bootstrap/DaemonOutputConsumerTest.groovy

        def consumer = new DaemonOutputConsumer()
    
        def "consumes process output until EOF"() {
            def process = process('hey Joe!')
    
            when:
            consumer.connectStreams(process, "cool process", executor)
            consumer.start()
            consumer.stop()
            then:
            consumer.processOutput.trim() == 'hey Joe!'
        }
    
        def "consumes process greeting noticed in output"() {
            def output = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

        }
    
        String getPermissions() {
            if (isWindows()) {
                return "-rwxr-xr-x"
            }
    
            def process = ["ls", "-ld", file.absolutePath].execute()
            def result = process.inputStream.text
            def error = process.errorStream.text
            def retval = process.waitFor()
            if (retval != 0) {
                throw new RuntimeException("Could not list permissions for '$file': $error")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/RequestProtocol.java

     */
    
    package org.gradle.process.internal.worker.request;
    
    /**
     * Protocol for controlling a worker process.
     * <p>
     * This protocol is used by the daemon to control the current work the worker process is doing.
     */
    public interface RequestProtocol {
        /**
         * Runs the given request in the worker process.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 09:27:37 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/ExecHandleRunner.java

                Process process = processLauncher.start(processBuilder);
                streamsHandler.connectStreams(process, execHandle.getDisplayName(), executor);
                this.process = process;
            } finally {
                lock.unlock();
            }
        }
    
        private void completed(int exitValue) {
            if (aborted) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/os/signal/signal_cgo_test.go

    	// must have a parent process group in the same session or mask SIGTTOU
    	// (which we do). An orphaned process group cannot receive
    	// terminal-generated SIGTSTP at all.
    	//
    	// Achieving this requires three processes total:
    	// - Top-level process: this is the main test process and creates the
    	// pseudo-terminal.
    	// - GO_TEST_TERMINAL_SIGNALS=1: This process creates a new process
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top