Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 689 for Combine (0.17 sec)

  1. src/cmd/compile/internal/ssa/lca.go

    		p1, p2 = p2, p1
    	}
    
    	// The lowest common ancestor is the minimum depth block
    	// on the tour from p1 to p2.  We've precomputed minimum
    	// depth blocks for powers-of-two subsequences of the tour.
    	// Combine the right two precomputed values to get the answer.
    	logS := uint(log64(int64(p2 - p1)))
    	bid1 := lca.rangeMin[logS][p1]
    	bid2 := lca.rangeMin[logS][p2-1<<logS+1]
    	if lca.blocks[bid1].depth < lca.blocks[bid2].depth {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 21:52:15 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/debug/macho/fat.go

    	if err != nil {
    		return nil, &FormatError{offset, "invalid fat_header", nil}
    	}
    	offset += 4
    
    	if narch < 1 {
    		return nil, &FormatError{offset, "file contains no images", nil}
    	}
    
    	// Combine the Cpu and SubCpu (both uint32) into a uint64 to make sure
    	// there are not duplicate architectures.
    	seenArches := make(map[uint64]bool)
    	// Make sure that all images are for the same MH_ type.
    	var machoType Type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. tensorflow/c/eager/unified_api_test.cc

      ASSERT_FALSE(shape.unknown_rank());
    
      ASSERT_EQ(2, shape.dim_size(0));
      ASSERT_EQ(-1, shape.dim_size(1));
    }
    
    INSTANTIATE_TEST_SUITE_P(
        UnifiedCppAPI, UnifiedAPI,
        ::testing::Combine(::testing::Values("graphdef", "mlir"),
                           /*tfrt*/ ::testing::Values(false),
                           /*use_function*/ ::testing::Values(true, false)));
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. docs/en/docs/history-design-future.md

    </blockquote>
    
    ## Investigation
    
    By using all the previous alternatives I had the chance to learn from all of them, take ideas, and combine them in the best way I could find for myself and the teams of developers I have worked with.
    
    For example, it was clear that ideally it should be based on standard Python type hints.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. docs/fr/docs/advanced/additional-responses.md

    ```
    
    Tout sera combiné et inclus dans votre OpenAPI, et affiché dans la documentation de l'API :
    
    <img src="/img/tutorial/additional-responses/image01.png">
    
    ## Combinez les réponses prédéfinies et les réponses personnalisées
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. operator/pkg/metrics/monitoring.go

    type MergeErrorType string
    
    const (
    	// CannotFetchProfileError occurs when profile cannot be found.
    	CannotFetchProfileError MergeErrorType = "cannot_fetch_profile"
    
    	// OverlayError overlaying YAMLs to combine profile, user
    	// defined settings in CR, Hub-tag etc. fails.
    	OverlayError MergeErrorType = "overlay"
    
    	// IOPFormatError occurs when supplied CR cannot be marshaled
    	// or unmarshaled to/from YAML.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/clone_constants_for_better_clustering.cc

          return errors::Internal("Unknown dimension size in constant tensor ",
                                  n->name());
        }
        total_elements *= dim.size();
      }
    
      // TODO(sanjoy): It may make sense to combine this threshold with XLA's "large
      // constant" threshold, if there is one.
      const int kSmallTensorThreshold = 16;
      return total_elements < kSmallTensorThreshold;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java

        @Override
        public Builder<E> addAll(Iterator<? extends E> elements) {
          super.addAll(elements);
          return this;
        }
    
        @CanIgnoreReturnValue
        Builder<E> combine(Builder<E> builder) {
          super.combine(builder);
          return this;
        }
    
        @Override
        public ImmutableSortedSet<E> build() {
          return copyOfInternal(comparator, contents.iterator());
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/cmd/internal/sys/arch.go

    	// Loads or stores larger than Alignment need only be Alignment-aligned.
    	Alignment int8
    
    	// CanMergeLoads reports whether the backend optimization passes
    	// can combine adjacent loads into a single larger, possibly unaligned, load.
    	// Note that currently the optimizations must be able to handle little endian byte order.
    	CanMergeLoads bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
         * You can combine this method with the [copy] method to unzip a ZIP file.
         *
         * @param zipPath The ZIP file. Evaluated as per [file].
         * @return The file tree.
         */
        fun zipTree(zipPath: Any): FileTree
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top