Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Newman (0.27 sec)

  1. android/guava-tests/test/com/google/common/collect/BenchmarkHelpers.java

            checkState(newMap instanceof MapMakerInternalMap);
            newMap.putAll(map);
            return newMap;
          }
        },
        MapMakerWeakKeysStrongValues {
          @Override
          public <K extends Comparable<K>, V> Map<K, V> create(Map<K, V> map) {
            ConcurrentMap<K, V> newMap = new MapMaker().weakKeys().makeMap();
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Fri Mar 04 04:06:35 GMT 2022
    - 12.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/BenchmarkHelpers.java

            checkState(newMap instanceof MapMakerInternalMap);
            newMap.putAll(map);
            return newMap;
          }
        },
        MapMakerWeakKeysStrongValues {
          @Override
          public <K extends Comparable<K>, V> Map<K, V> create(Map<K, V> map) {
            ConcurrentMap<K, V> newMap = new MapMaker().weakKeys().makeMap();
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Fri Mar 04 04:06:35 GMT 2022
    - 12.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/cache/LocalLoadingCacheTest.java

        assertTrue(map.remove(one, one));
        assertEquals(0, map.size());
    
        cache.getUnchecked(one);
        Map<Object, Object> newMap = ImmutableMap.of(one, one);
        assertEquals(newMap, map);
        assertEquals(newMap.entrySet(), map.entrySet());
        assertEquals(newMap.keySet(), map.keySet());
        Set<Object> expectedValues = ImmutableSet.of(one);
        Set<Object> actualValues = ImmutableSet.copyOf(map.values());
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 12.3K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess.json

                "galician_stemmer"
              ]
            },
            "german_analyzer": {
              "type": "custom",
              "tokenizer": "standard",
              "filter": [
                "truncate20_filter",
                "lowercase",
                "german_stop",
                "german_normalization",
                "german_override",
                "german_stemmer"
              ]
            },
            "greek_analyzer": {
    Json
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  5. cni/pkg/install/cniconfig.go

    	}
    
    	delete(istioMap, "cniVersion")
    
    	var newMap map[string]any
    
    	if _, ok := existingMap["type"]; ok {
    		// Assume it is a regular network conf file
    		delete(existingMap, "cniVersion")
    
    		plugins := make([]map[string]any, 2)
    		plugins[0] = existingMap
    		plugins[1] = istioMap
    
    		newMap = map[string]any{
    			"name":       "k8s-pod-network",
    			"cniVersion": "0.3.1",
    Go
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/cache/LocalLoadingCacheTest.java

        assertTrue(map.remove(one, one));
        assertEquals(0, map.size());
    
        cache.getUnchecked(one);
        Map<Object, Object> newMap = ImmutableMap.of(one, one);
        assertEquals(newMap, map);
        assertEquals(newMap.entrySet(), map.entrySet());
        assertEquals(newMap.keySet(), map.keySet());
        Set<Object> expectedValues = ImmutableSet.of(one);
        Set<Object> actualValues = ImmutableSet.copyOf(map.values());
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 12.3K bytes
    - Viewed (0)
  7. docs/en/data/external_links.yml

        title: 'Towards Data Science: Deploying Iris Classifications with FastAPI and Docker'
      - author: Michael Herman
        author_link: https://testdriven.io/authors/herman
        link: https://testdriven.io/blog/fastapi-crud/
        title: 'TestDriven.io: Developing and Testing an Asynchronous API with FastAPI and Pytest'
      - author: Bernard Brenyah
    Others
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Thu Mar 21 20:57:27 GMT 2024
    - 21.3K bytes
    - Viewed (2)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

        val state = AddressState(address, taskRunner.newQueue(), policy)
        val newConnectionsNeeded: Int
    
        while (true) {
          val oldMap = this.addressStates
          val newMap = oldMap + (address to state)
          if (addressStatesUpdater.compareAndSet(this, oldMap, newMap)) {
            val oldPolicyMinimumConcurrentCalls = oldMap[address]?.policy?.minimumConcurrentCalls ?: 0
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Tue Apr 09 03:31:17 GMT 2024
    - 16.2K bytes
    - Viewed (0)
  9. finisher_api.go

    	if savePointer, ok := db.Dialector.(SavePointerDialectorInterface); ok {
    		// close prepared statement, because SavePoint not support prepared statement.
    		// e.g. mysql8.0 doc: https://dev.mysql.com/doc/refman/8.0/en/sql-prepared-statements.html
    		var (
    			preparedStmtTx   *PreparedStmtTX
    			isPreparedStmtTx bool
    		)
    		// close prepared statement, because SavePoint not support prepared statement.
    Go
    - Registered: Sun Apr 14 09:35:11 GMT 2024
    - Last Modified: Fri Jan 12 08:42:21 GMT 2024
    - 22.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/_aws/fess/doc.json

                "analyzer": "danish_analyzer"
              }
            }
          },
          {
            "lang_de": {
              "match": "*_de",
              "mapping": {
                "type": "text",
                "analyzer": "german_analyzer"
              }
            }
          },
          {
            "lang_el": {
              "match": "*_el",
              "mapping": {
                "type": "text",
                "analyzer": "greek_analyzer"
              }
    Json
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
Back to top