Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 78 for broken2 (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  10. hack/local-up-cluster.sh

      # jump through hoops to avoid removing docker/containerd
      # when installing nftables and kmod, as those docker/containerd
      # packages depend on iptables
      dpkg -r --force-depends iptables && \
      apt -y --fix-broken install && \
      apt -y install nftables kmod && \
      apt -y install iptables
    }
    
    function tolerate_cgroups_v2 {
      # https://github.com/moby/moby/blob/be220af9fb36e9baa9a75bbc41f784260aa6f96e/hack/dind#L28-L38
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top