Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 335 for broken1 (0.18 sec)

  1. src/os/pipe_test.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test broken pipes on Unix systems.
    //
    //go:build !plan9 && !js && !wasip1
    
    package os_test
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"io/fs"
    	"os"
    	"os/exec"
    	"os/signal"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"syscall"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/ProviderSpec.groovy

        def "can map to provider that uses value if present or a default value from another provider"() {
            expect:
            def broken = brokenSupplier()
            def supplier = Providers.of(someOtherValue())
    
            def present = providerWithValue(someValue())
            def usesValue = present.orElse(broken)
    
            usesValue.present
            usesValue.get() == someValue()
    
            def notPresent = providerWithNoValue()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. src/os/signal/doc.go

    # SIGPIPE
    
    When a Go program writes to a broken pipe, the kernel will raise a
    SIGPIPE signal.
    
    If the program has not called Notify to receive SIGPIPE signals, then
    the behavior depends on the file descriptor number. A write to a
    broken pipe on file descriptors 1 or 2 (standard output or standard
    error) will cause the program to exit with a SIGPIPE signal. A write
    to a broken pipe on some other file descriptor will take no action on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    	}
    	// The following enables the HTTP/2 connection health check added in
    	// https://github.com/golang/net/pull/55. The health check detects and
    	// closes broken transport layer connections. Without the health check,
    	// a broken connection can linger too long, e.g., a broken TCP
    	// connection will be closed by the Linux kernel after 13 to 30 minutes
    	// by default, which caused
    	// https://github.com/kubernetes/client-go/issues/374 and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/NestedConfigureDslIntegrationTest.groovy

        def "reports missing method from inside configure closure"() {
            buildFile << """
    configurations {
        broken {
            noExist(12)
        }
    }
    """
    
            expect:
            fails()
            failure.assertHasCause("Could not find method noExist() for arguments [12] on configuration ':broken' of type org.gradle.api.internal.artifacts.configurations.DefaultUnlockedConfiguration.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNConcurrentRequests.java

                handler.received();
                waitingFor--;
                if (waitingFor == 0) {
                    condition.signalAll();
                }
    
                if (state.isFailed()) {
                    // Broken in another thread
                    System.out.println(String.format("[%d] failure in another thread", id));
                    return state.alreadyFailed(exchange.getRequestMethod(), path, describeCurrentState());
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressCrossVersionSpec.groovy

            testMethod.result instanceof TestFailureResult
            testMethod.result.failures.size() == 1
            testMethod.result.failures[0].message == 'broken'
            testMethod.result.failures[0].description.startsWith("java.lang.RuntimeException: broken")
            testMethod.result.failures[0].description.contains("at example.MyTest.foo(MyTest.java:6)")
            testMethod.result.failures[0].causes.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

         * Run docs tests with the configuration cache enabled.
         */
        const val ENABLE_CONFIGURATION_CACHE_FOR_DOCS_TESTS = "enableConfigurationCacheForDocsTests"
    
        /**
         * Run docs tests that are knowingly broken when running with the configuration cache enabled. Only applied when #ENABLE_CONFIGURATION_CACHE_FOR_DOCS_TESTS is also set.
         */
        const val RUN_BROKEN_CONFIGURATION_CACHE_DOCS_TESTS = "runBrokenConfigurationCacheDocsTests"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Comparators.java

      }
    
      /**
       * Returns a {@code Collector} that returns the {@code k} smallest (relative to the specified
       * {@code Comparator}) input elements, in ascending order, as an unmodifiable {@code List}. Ties
       * are broken arbitrarily.
       *
       * <p>For example:
       *
       * <pre>{@code
       * Stream.of("foo", "quux", "banana", "elephant")
       *     .collect(least(2, comparingInt(String::length)))
       * // returns {"foo", "quux"}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 08:42:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    		&compbasemetrics.GaugeOpts{
    			Subsystem:      APIServerComponent,
    			Name:           "requested_deprecated_apis",
    			Help:           "Gauge of deprecated APIs that have been requested, broken out by API group, version, resource, subresource, and removed_release.",
    			StabilityLevel: compbasemetrics.STABLE,
    		},
    		[]string{"group", "version", "resource", "subresource", "removed_release"},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
Back to top