Search Options

Results per page
Sort
Preferred Languages
Advance

Results 561 - 570 of 2,070 for mmap (0.05 sec)

  1. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

            fun assertAllSplitsArePresent(subProjectName: String, functionalTests: List<BaseGradleBuildType>) {
                val splitSubProjectNames = functionalTests.map { it.getSubProjectSplitName() }.toSet()
                val expectedProjectNames = (1..functionalTests.size).map { "${subProjectName}_$it" }.toSet()
                assertEquals(expectedProjectNames, splitSubProjectNames)
            }
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Jul 18 07:02:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ConcurrentHashMultisetTest.java

        ConcurrentMap<String, AtomicInteger> map = new MapMaker().makeMap();
        multiset = ConcurrentHashMultiset.create(map);
        reserializeAndAssert(multiset);
      }
    
      public void testSerializationWithMapMaker2() {
        ConcurrentMap<String, AtomicInteger> map = new MapMaker().makeMap();
        multiset = ConcurrentHashMultiset.create(map);
        multiset.addAll(ImmutableList.of("a", "a", "b", "c", "d", "b"));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

                final Map<String, String[]> conditions, final boolean escape) {
            return new QueryStringBuilder().params(new SearchRequestParams() {
    
                @Override
                public String getQuery() {
                    return query;
                }
    
                @Override
                public Map<String, String[]> getFields() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ThumbnailQueueDbm.java

        //                                                                   Map Communication
        //                                                                   =================
        @Override
        public void acceptPrimaryKeyMap(Entity entity, Map<String, ? extends Object> primaryKeyMap) {
        }
    
        @Override
        public void acceptAllColumnMap(Entity entity, Map<String, ? extends Object> allColumnMap) {
        }
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. internal/crypto/sse-c.go

    	if sealedKey.Algorithm != SealAlgorithm {
    		logger.CriticalIf(context.Background(), Errorf("The seal algorithm '%s' is invalid for SSE-C", sealedKey.Algorithm))
    	}
    
    	if metadata == nil {
    		metadata = make(map[string]string, 3)
    	}
    	metadata[MetaAlgorithm] = SealAlgorithm
    	metadata[MetaIV] = base64.StdEncoding.EncodeToString(sealedKey.IV[:])
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/base/SearchForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    import jakarta.validation.constraints.Size;
    
    public class SearchForm extends SearchRequestParams {
    
        public Map<String, String[]> fields = new HashMap<>();
    
        public Map<String, String[]> as = new HashMap<>();
    
        @Size(max = 1000)
        public String q;
    
        @Size(max = 1000)
        public String sort;
    
        @ValidateTypeFailure
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. dbflute_fess/dfprop/outsideSqlMap.dfprop

        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o applicationOutsideSqlMap: (NotRequired - Default map:{})
        #  You can set additional users.
        #  Elements of this map are as below:
        #   o key of map: a relative path to the application project from DBFlute client
        #   o sqlDirectory: SQL directory as a relative path from the application directory 
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

        listOf("7.6", "8.2"), // 7.6 <=version < 8.2
        listOf("8.2", "8.6"), // 8.2 <=version < 8.6
        listOf("8.6", "99.0") // 8.6 <=version < 99.0
    )
    
    typealias BuildProjectToSubprojectTestClassTimes = Map<String, Map<String, List<TestClassTime>>>
    
    interface FunctionalTestBucketProvider {
        fun createFunctionalTestsFor(stage: Stage, testCoverage: TestCoverage): List<FunctionalTest>
    }
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Jun 12 09:50:29 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

        protected Pattern[] includedDocPathPatterns;
    
        protected Pattern[] excludedDocPathPatterns;
    
        protected Map<String, String> handlerParameterMap;
    
        protected Map<String, String> handlerScriptMap;
    
        protected CrawlerClientFactory crawlerClientFactory = null;
    
        protected Map<ConfigName, Map<String, String>> configParameterMap;
    
        public DataConfig() {
            setBoost(1.0f);
        }
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:15 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/SortedMapTestSuiteBuilder.java

    import com.google.common.collect.testing.features.Feature;
    import com.google.common.collect.testing.testers.SortedMapNavigationTester;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    import java.util.Map.Entry;
    import java.util.Set;
    import junit.framework.TestSuite;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top