Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for broken3 (0.28 sec)

  1. src/crypto/tls/handshake_client_test.go

    			Server(s, testConfig).Handshake()
    			s.Close()
    			done <- true
    		}()
    
    		brokenC := &brokenConn{Conn: c, breakAfter: breakAfter}
    		err := Client(brokenC, testConfig).Handshake()
    		if err != brokenConnErr {
    			t.Errorf("#%d: expected error from brokenConn but got %q", breakAfter, err)
    		}
    		brokenC.Close()
    
    		<-done
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    		if err != nil {
    			return nil, nil, err
    		}
    		var onHeartbeatFailure func()
    		// Kubelet needs to be able to recover from stale http connections.
    		// HTTP2 has a mechanism to detect broken connections by sending periodical pings.
    		// HTTP1 only can have one persistent connection, and it will close all Idle connections
    		// once the Kubelet heartbeat fails. However, since there are many edge cases that we can't
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

          //
          // This workaround enables converting Keras RNN without specifying batch
          // dimension. This isn't guaranteed to work, but it doesn't break any
          // non-broken cases either (since it's already broken if `element_shape`
          // contains -1).
          // TODO(b/142096690): Support dynamic element shape and remove the
          // workaround.
          SmallVector<int32_t, 4> new_element_shape_values;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/type.go

    			return CMPgt // nil > non-nil
    		} else if t.StructType().Map.MapType().Bucket == t {
    			// Both have non-nil Map
    			// Special case for Maps which include a recursive type where the recursion is not broken with a named type
    			if x.StructType().Map.MapType().Bucket != x {
    				return CMPlt // bucket maps are least
    			}
    			return t.StructType().Map.cmp(x.StructType().Map)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    			}
    		}
    	}
    }
    
    func TestTypesInfo(t *testing.T) {
    	// Test sources that are not expected to typecheck must start with the broken prefix.
    	const brokenPkg = "package broken_"
    
    	var tests = []struct {
    		src  string
    		expr string // expression
    		typ  string // value type
    	}{
    		// single-valued expressions of untyped constants
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. tensorflow/BUILD

    # instead depend on the dummy plugins in @local_tsl//tsl/platform/default/build_config
    # and use header only targets.
    # TODO(ddunleavy): This seems completely broken. :tensorflow_cc depends on
    # cuda_platform from tf_additional_binary_deps and this doesn't break.
    check_deps(
        name = "cuda_plugins_check_deps",
        disallowed_deps = if_static(
            [],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Sets.java

              return false;
            }
            i++;
          }
          return true;
        }
    
        @Override
        public boolean equals(@CheckForNull Object object) {
          // Warning: this is broken if size() == 0, so it is critical that we
          // substitute an empty ImmutableSet to the user in place of this
          if (object instanceof CartesianSet) {
            CartesianSet<?> that = (CartesianSet<?>) object;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  8. src/html/template/exec_test.go

    		}
    	}
    }
    
    // Issue 31810. Check that a parenthesized first argument behaves properly.
    func TestIssue31810(t *testing.T) {
    	t.Skip("broken in html/template")
    
    	// A simple value with no arguments is fine.
    	var b strings.Builder
    	const text = "{{ (.)  }}"
    	tmpl, err := New("").Parse(text)
    	if err != nil {
    		t.Error(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

        }
    
        interface TestStopService extends Stoppable {
            void stop()
        }
    
        static class ClassWithBrokenConstructor {
            static def failure = new RuntimeException("broken")
    
            ClassWithBrokenConstructor() {
                throw failure
            }
        }
    
        static class CloseableService implements Closeable {
            boolean closed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    		if isInf(c.errIntegral) || isNaN(c.errIntegral) {
    			// So much error has accumulated that we managed to overflow.
    			// The assumptions around the controller have likely broken down.
    			// Set a flag and reset. That's the safest thing to do.
    			c.reset()
    			c.errOverflow = true
    			return c.min, false
    		}
    	}
    	return output, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top