Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for impl_4 (0.13 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    namespace {
    
    /// Lower TensorList ops in functions for subsequent legalization.
    struct LowerStaticTensorListPass
        : public impl::LowerStaticTensorListPassBase<LowerStaticTensorListPass> {
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(LowerStaticTensorListPass)
    
      LowerStaticTensorListPass() = default;
    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/runtime/pprof/pprof_test.go

    		}
    		for i := range w {
    			p, err := profile.Parse(bytes.NewReader(w[i].Bytes()))
    			if err != nil {
    				t.Errorf("error parsing protobuf profile: %v", err)
    			}
    
    			// High-numbered loop-i goroutines imply that every lower-numbered
    			// loop-i goroutine should be present in the profile too.
    			counts := make(map[string]int)
    			for _, s := range p.Sample {
    				label := s.Label[t.Name()+"-loop-i"]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    		v = v.Args[0]
    	}
    	return v.Op == OpSP || v.Op == OpLocalAddr
    }
    
    // disjoint reports whether the memory region specified by [p1:p1+n1)
    // does not overlap with [p2:p2+n2).
    // A return value of false does not imply the regions overlap.
    func disjoint(p1 *Value, n1 int64, p2 *Value, n2 int64) bool {
    	if n1 == 0 || n2 == 0 {
    		return true
    	}
    	if p1 == p2 {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Since Java 11 no longer contains the `java.xml.bind` module, Gradle now bundles JAXB 2.3.1 (`com.sun.xml.bind:jaxb-impl`) and uses it on Java 9 and above.
    
    Please remove the `--add-modules java.xml.bind` option from `org.gradle.jvmargs`, if set.
    
    [[rel5.0:gradle_plugin_portal_metadata]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

    import org.apache.maven.project.harness.PomTestWrapper;
    import org.codehaus.plexus.testing.PlexusTest;
    import org.eclipse.aether.DefaultRepositorySystemSession;
    import org.eclipse.aether.internal.impl.SimpleLocalRepositoryManagerFactory;
    import org.eclipse.aether.repository.LocalRepository;
    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.Test;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			// Validation requires this
    			Containers: []corev1.Container{
    				{
    					Name:  "test",
    					Image: "ununtu",
    				},
    			},
    		},
    		// The cache controller uses this as key, required by our impl.
    		Status: corev1.PodStatus{
    			Conditions: []corev1.PodCondition{
    				{
    					Type:               corev1.PodReady,
    					Status:             corev1.ConditionTrue,
    					LastTransitionTime: metav1.Now(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/MapMakerInternalMap.java

        /** Gets the weak value reference held by entry. */
        WeakValueReference<K, V, E> getValueReference();
      }
    
      @SuppressWarnings("unchecked") // impl never uses a parameter or returns any non-null value
      static <K, V, E extends InternalEntry<K, V, E>>
          WeakValueReference<K, V, E> unsetWeakValueReference() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        /** Gets the weak value reference held by entry. */
        WeakValueReference<K, V, E> getValueReference();
      }
    
      @SuppressWarnings("unchecked") // impl never uses a parameter or returns any non-null value
      static <K, V, E extends InternalEntry<K, V, E>>
          WeakValueReference<K, V, E> unsetWeakValueReference() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top