Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 110 for mypair (0.11 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_composite_to_tfl_custom.cc

                                      StringRef(content.data(), content.size()));
    }
    
    LogicalResult BuildOption(flexbuffers::Builder* fbb, Operation* op,
                              NamedAttribute pair) {
      const char* key = pair.getName().data();
      const auto attr = pair.getValue();
    
      if (mlir::isa<::mlir::IntegerAttr>(attr)) {
        fbb->Int(key, mlir::dyn_cast<mlir::IntegerAttr>(attr).getInt());
        return success();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/TestInMemoryCacheFactory.java

                assertNotClosed();
                IndexedCache<?, ?> indexedCache = caches.get(Pair.of(cacheDir, name));
                if (indexedCache == null) {
                    indexedCache = new TestInMemoryIndexedCache<K, V>(valueSerializer);
                    caches.put(Pair.of(cacheDir, name), indexedCache);
                }
                return Cast.uncheckedCast(indexedCache);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

      for (const auto& pair : clusters) {
        if (pair.first == kNoCluster) {
          absl::StrAppend(&result, "unclustered");
        } else {
          absl::StrAppend(&result, "cluster ", pair.first);
        }
    
        absl::StrAppend(&result, " size ", cluster_size[pair.first], "\n");
    
        for (const auto& ops_and_counts : pair.second) {
          absl::StrAppend(&result, " ", ops_and_counts.first, " ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 12:11:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

                    value = value.replace("${" + entry.getKey() + "}", entry.getValue());
                }
                return new Pair<>(key, value);
            }).collect(Collectors.toMap(Pair<String, String>::getFirst, Pair<String, String>::getSecond));
            final Map<String, String> configScriptMap = config.getHandlerScriptMap();
    
            initParamMap.putAll(configParamMap);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java

    import java.util.List;
    import java.util.regex.Pattern;
    
    import org.codelibs.core.misc.Pair;
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class FessCrawlerThreadTest extends UnitFessTestCase {
    
        public void test_getClientRuleList() {
            FessCrawlerThread crawlerThread = new FessCrawlerThread();
    
            List<Pair<String, Pattern>> list = crawlerThread.getClientRuleList(null);
            assertEquals(0, list.size());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import_test.cc

    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/types.h"
    
    namespace mlir::quant::stablehlo {
    namespace {
    
    using ::testing::IsEmpty;
    using ::testing::Pair;
    using ::testing::UnorderedElementsAre;
    
    using UpdateFunctionAliasesTest = ::mlir::quant::QuantizationTestBase;
    
    TEST_F(UpdateFunctionAliasesTest, NoAliasesReturnsEmptyMap) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 03:47:17 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_vendor_auto.txt

    go list -m -f '{{.Dir}}' all
    stdout '^'$WORK'[/\\]auto$'
    stdout '^'$GOPATH'[/\\]pkg[/\\]mod[/\\]example.com[/\\]printversion@v1.0.0$'
    stdout '^'$WORK'[/\\]auto[/\\]replacement-version$'
    
    # 'go mod vendor' should repair vendor/modules.txt so that the implicit
    # -mod=vendor works again.
    env GOFLAGS=
    
    go mod edit -go=1.14
    go mod vendor
    
    go list -f {{.Dir}} -tags tools -e all
    stdout '^'$WORK'[/\\]auto$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/diagnosticsProvider/codeFragmentDiagnostics/localFunction.fragment.kt

    fun foo(): Pair<Int, Int> {
        return x to y
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 54 bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/LogContent.java

        /**
         * Locates the log content starting with the first line that matches the given pattern, or null if no such line.
         *
         * @return a pair containing (content-before-matching-line, content-from-matching-line) or null if no match.
         */
        public @Nullable
        Pair<LogContent, LogContent> splitOnFirstMatchingLine(Pattern pattern) {
            for (int i = 0; i < lines.size(); i++) {
                String line = lines.get(i);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/saved_model/saved_model.cc

        // TODO(chky): Support cases where index_path is not a single string.
        return mlir::cast<mlir::StringAttr>(index_path[0]).getValue();
      }
      return "";
    }
    
    absl::StatusOr<std::pair<tensorflow::DataType, tensorflow::PartialTensorShape>>
    ProcessTensorSpec(mlir::TensorType type) {
      tensorflow::DataType dtype;
      TF_RETURN_IF_ERROR(
          ConvertScalarTypeToDataType(type.getElementType(), &dtype));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top