Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 288 for mypair (0.24 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. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptingMetaClass.java

        }
    
        @Override
        @Nullable
        public MetaProperty getMetaProperty(String name) {
            MetaProperty original = adaptee.getMetaProperty(name);
            Pair<String, CallInterceptor> getterCallerAndInterceptor = findGetterCallerAndInterceptor(name);
            Pair<String, CallInterceptor> setterCallerAndInterceptor = getterCallerAndInterceptor != null ? null : findSetterCallerAndInterceptor(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/CollectionUtilsTest.groovy

        }
    
        def "partitioning"() {
            when:
            def pair = partition([1, 2, 3], { it % 2 == 0 })
    
            then:
            pair.left == [2]
            pair.right == [1, 3]
        }
    
        def "partitioning empty collection"() {
            when:
            def pair = partition([], { it })
    
            then:
            pair.left == []
            pair.right == []
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

       * }
       * ```
       *
       * The first property of the pair is the adapter that was used, the second property is the value.
       */
      internal val generalNameDnsName = Adapters.IA5_STRING.withTag(tag = 2L)
      internal val generalNameIpAddress = Adapters.OCTET_STRING.withTag(tag = 7L)
      internal val generalName: DerAdapter<Pair<DerAdapter<*>, Any?>> =
        Adapters.choice(
          generalNameDnsName,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. okhttp/src/test/java/okhttp3/internal/http/CancelTest.kt

      private lateinit var server: MockWebServer
      private lateinit var client: OkHttpClient
    
      val listener = RecordingEventListener()
    
      fun setUp(mode: Pair<CancelMode, ConnectionType>) {
        this.cancelMode = mode.first
        this.connectionType = mode.second
    
        if (connectionType == H2) {
          platform.assumeHttp2Support()
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top