Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 117 for broken3 (0.22 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{27, "EFBIG", "file too large"},
    	{28, "ENOSPC", "no space left on device"},
    	{29, "ESPIPE", "illegal seek"},
    	{30, "EROFS", "read-only file system"},
    	{31, "EMLINK", "too many links"},
    	{32, "EPIPE", "broken pipe"},
    	{33, "EDOM", "numerical argument out of domain"},
    	{34, "ERANGE", "numerical result out of range"},
    	{35, "EDEADLK", "resource deadlock avoided"},
    	{36, "ENAMETOOLONG", "file name too long"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DependencyVerifyingModuleComponentRepository.java

                        return ((DefaultModuleComponentArtifactIdentifier) artifactIdentifier).getName();
                    }
                    // This is a bit hackish but the mapping from file names to ivy artifact names is completely broken
                    String fileName = artifactIdentifier.getFileName().replace("-" + artifactIdentifier.getComponentIdentifier().getVersion(), "");
                    fileName = Files.getNameWithoutExtension(fileName); // removes the .asc
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

                         Thread.sleep(100);  // sleep for a moment to ensure test duration is > 0 (due to limited clock resolution)
                         throw new RuntimeException("broken", new RuntimeException("nope"));
                    }
                }
            """
    
            when:
            def events = ProgressEvents.create()
            withConnection {
                ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // TPUClusterCleanup and OutsideCompiledToHostLaunch need every function to be
      // only called from one cluster. Here, we choose to fix the all-funcs-one-use
      // invariant right before it's needed, not after it's been broken.
      pm.addPass(mlir::TF::CreateGuaranteeAllFuncsOneUsePass());
      // Run TPU cluster cleanup attributes so ops with no outside compiled
      // attribute have no host device attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure.sh

    ###
    
    # Standard curl flags.
    CURL_FLAGS='--fail --silent --show-error --retry 5 --retry-delay 3 --connect-timeout 10 --retry-connrefused'
    
    function set-broken-motd {
      cat > /etc/motd <<EOF
    Broken (or in progress) Kubernetes node setup! Check the cluster initialization status
    using the following commands.
    
    Master instance:
      - sudo systemctl status kube-master-installation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandlerTest.groovy

            0 * userInputHandler._
    
            and:
            result2 == "42"
        }
    
        def "memoizes interaction failure"() {
            def action = Mock(Function)
            def failure = new RuntimeException("broken")
            def input = userInputHandler.askUser(action)
    
            when:
            input.get()
    
            then:
            def e = thrown(RuntimeException)
            e == failure
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

            targetNodes.clear();
            targetNodeSelectionFailure = null;
            if (targetComponentState == null) {
                targetComponent.getModule().getPlatformState().addOrphanEdge(this);
                // Broken version
                return;
            }
            if (isConstraint && !isVirtualDependency()) {
                List<NodeState> nodes = targetComponent.getNodes();
                for (NodeState node : nodes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{136, "EDC5136I", "Directory not empty."},
    	{137, "EDC5137I", "Inappropriate I/O control operation."},
    	{138, "EDC5138I", "No such device or address."},
    	{139, "EDC5139I", "Operation not permitted."},
    	{140, "EDC5140I", "Broken pipe."},
    	{141, "EDC5141I", "Read-only file system."},
    	{142, "EDC5142I", "Invalid seek."},
    	{143, "EDC5143I", "No such process."},
    	{144, "EDC5144I", "Improper link."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_4x.md

        didn't have it.
     *  Fix: Explicitly specify the remote server name when making HTTPS connections on Android 5. In
        4.3.0 we introduced a regression where server name indication (SNI) was broken on Android 5.
    
    
    ## Version 4.3.0
    
    _2019-12-31_
    
     *  Fix: Degrade HTTP/2 connections after a timeout. When an HTTP/2 stream times out it may impact
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

      ASSERT_THAT(compilation_result,
                  Not(ComputationProtoContains("%.*= \"tf.TensorListSetItem")));
      // Assert that the tensor list operation is lowered to something that doesn't
      // get stuck on a broken dynamic update slice.
      ASSERT_THAT(compilation_result,
                  Not(ComputationProtoContains("%.*=.*DynamicUpdateSlice")));
    }
    
    TEST(LegalizeTFTest, LegalizesFunctionWithBoundedDynamicArg) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top