Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,026 for paib (0.09 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DelegatedGradlePropertiesExtensionsTest.kt

        }
    
        private
        fun withMockForSettings(existing: Pair<String, Any?>? = null, absent: String? = null, action: DynamicDelegatedPropertiesMock.SettingsMock.() -> Unit) {
            mockForSettings(existing, absent).run {
                action()
                verifyTryGetProperty(existing, absent)
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:44:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/CharSequenceExtensions.kt

     */
    internal
    fun CharSequence.lineAndColumnFromRange(range: IntRange): Pair<Int, Int> {
        require(range.endInclusive <= lastIndex)
        return lineAndColumnFor(range.start)
    }
    
    
    /**
     * Computes the 1-based line and column numbers for the given [index].
     */
    internal
    fun CharSequence.lineAndColumnFor(index: Int): Pair<Int, Int> {
        val prefix = take(index)
        val lineCountBefore = prefix.count { it == '\n' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/scoring.go

    			// per-node counts are calculated during Score.
    			if constraint.TopologyKey == v1.LabelHostname {
    				continue
    			}
    			pair := topologyPair{key: constraint.TopologyKey, value: node.Node().Labels[constraint.TopologyKey]}
    			if s.TopologyPairToPodCounts[pair] == nil {
    				s.TopologyPairToPodCounts[pair] = new(int64)
    				topoSize[i]++
    			}
    		}
    	}
    
    	s.TopologyNormalizingWeight = make([]float64, len(s.Constraints))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildableCompositeBuildContext.java

    import org.gradle.internal.Actions;
    import org.gradle.internal.Pair;
    
    import java.util.ArrayList;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Set;
    
    public class DefaultBuildableCompositeBuildContext implements CompositeBuildContext {
        // TODO: Synchronization
        private final Set<Pair<ModuleVersionIdentifier, ProjectComponentIdentifier>> availableModules = new HashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 22 06:47:51 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/fake_session.h

      ::tensorflow::Status Run(
          const std::vector<std::pair<std::string, ::tensorflow::Tensor>>& inputs,
          const std::vector<std::string>& output_names,
          const std::vector<std::string>& target_nodes,
          std::vector<::tensorflow::Tensor>* outputs) override;
    
      ::tensorflow::Status Run(
          const tensorflow::RunOptions& run_options,
          const std::vector<std::pair<std::string, ::tensorflow::Tensor>>& inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. testing/smoke-ide-test/src/smokeIdeTest/groovy/org/gradle/ide/sync/fixtures/IsolatedProjectsIdeSyncFixture.groovy

     * limitations under the License.
     */
    
    package org.gradle.ide.sync.fixtures
    
    
    import org.gradle.integtests.fixtures.configurationcache.ConfigurationCacheProblemsFixture
    import org.gradle.internal.Pair
    import org.gradle.test.fixtures.file.TestFile
    import org.hamcrest.Matcher
    
    import javax.annotation.Nullable
    import java.nio.file.FileVisitResult
    import java.nio.file.Files
    import java.nio.file.Path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSubstitutorProvider.kt

        }
    
    
        private fun collectInheritancePath(
            baseSymbol: FirClassSymbol<*>,
            superSymbol: FirClassSymbol<*>,
        ): List<Pair<ConeClassLikeType, FirRegularClassSymbol>>? {
            val stack = mutableListOf<Pair<ConeClassLikeType, FirRegularClassSymbol>>()
            var result: List<Pair<ConeClassLikeType, FirRegularClassSymbol>>? = null
    
            fun dfs(symbol: FirClassSymbol<*>) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/tpu_cluster_util.cc

      std::unordered_map<CallGraphNode*, tf_device::ClusterOp> node_to_cluster;
      while (!pending_call_nodes.empty()) {
        auto pair = pending_call_nodes.back();
        pending_call_nodes.pop_back();
        CallGraphNode* node = pair.first;
        tf_device::ClusterOp tpu_cluster = pair.second;
        if (node_to_cluster.count(node)) {
          if (node_to_cluster[node].getOperation() != tpu_cluster) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_weight_param.mlir

    // RUN: stablehlo-quant-opt %s -split-input-file -stablehlo-insert-weight-param | FileCheck %s
    
    // Test that q/dq pair with per-tensor quantization parameter is inserted
    // between constant and XlaCallModule op with empty `weight_only_ptq` method
    // and function name containing conv.
    
    func.func @qdq_for_conv_weight_empty(%arg0: tensor<1x3x2x3xf32>) -> tensor<1x2x2x2xf32> attributes {tf._original_func_name = "main_0"} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/min_max_value.h

    #include <utility>
    
    namespace stablehlo::quantization {
    
    // Represents the (min, max) value pair, representing the range of values after
    // calibrating for quantization.
    using MinMaxValue = std::pair<float, float>;
    
    }  // namespace stablehlo::quantization
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 16:32:37 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top