Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for put$index (0.6 sec)

  1. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            final SearchEngineClient client = new SearchEngineClient() {
                @Override
                public boolean update(final String index, final String id, final String field, final Object value) {
                    resultMap.put("index", index);
                    resultMap.put("id", id);
                    resultMap.put("field", field);
                    resultMap.put("value", value.toString());
                    return true;
                }
            };
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. test-site/app/Global.java

            runner.onBuild((number, settingsBuilder) -> {
                settingsBuilder.put("http.cors.enabled", true);
                settingsBuilder.put("index.number_of_shards", 1);
                settingsBuilder.put("index.number_of_replicas", 0);
                settingsBuilder.putList("discovery.seed_hosts", "127.0.0.1:9301");
                settingsBuilder.putList("cluster.initial_master_nodes", "127.0.0.1:9301");
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Sat Feb 23 14:02:03 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/QuantilesAlgorithm.java

            Collection<Integer> indexes, int scale, double[] dataset) {
          Arrays.sort(dataset);
          ImmutableMap.Builder<Integer, Double> builder = ImmutableMap.builder();
          for (int index : indexes) {
            builder.put(index, singleQuantileFromSorted(index, scale, dataset));
          }
          return builder.buildOrThrow();
        }
    
        private double singleQuantileFromSorted(int index, int scale, double[] dataset) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java

            return asJson(new ApiResult.ApiPluginResponse().plugins(list).status(ApiResult.Status.OK).result());
        }
    
        // PUT /api/admin/plugin
        @Execute
        public JsonResponse<ApiResult> put$index(final InstallBody body) {
            validateApi(body, messages -> {});
            final Artifact artifact = ComponentUtil.getPluginHelper().getArtifact(body.name, body.version);
            if (artifact == null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. pkg/channels/unbounded_test.go

    			reads = append(reads, r)
    			ub.Load()
    		}
    	}()
    
    	wg.Add(numWriters)
    	for i := 0; i < numWriters; i++ {
    		go func(index int) {
    			defer wg.Done()
    			for j := 0; j < numWrites; j++ {
    				ub.Put(index)
    			}
    		}(i)
    	}
    
    	wg.Wait()
    	sort.Ints(reads)
    	if !reflect.DeepEqual(reads, wantReads) {
    		t.Errorf("reads: %#v, wantReads: %#v", reads, wantReads)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 19:53:39 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. src/internal/bytealg/indexbyte_s390x.s

    	MOVBZ	c+16(FP), R5    // c => R5
    	MOVD	$ret+24(FP), R2 // &ret => R9
    	BR	indexbytebody<>(SB)
    
    // input:
    // R3: s
    // R4: s_len
    // R5: c -- byte sought
    // R2: &ret -- address to put index into
    TEXT indexbytebody<>(SB),NOSPLIT|NOFRAME,$0
    	CMPBEQ	R4, $0, notfound
    	MOVD	R3, R6          // store base for later
    	ADD	R3, R4, R8      // the address after the end of the string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/QuantilesTest.java

        ImmutableMap.Builder<Integer, Double> expectedBuilder = ImmutableMap.builder();
        for (int index = 0; index <= 100; index++) {
          indexes.add(index);
          expectedBuilder.put(index, expectedLargeDatasetPercentile(index));
        }
        Random random = new Random(770683168895677741L);
        Collections.shuffle(indexes, random);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java

            firstLineInnerMap.put("_index", index);
            firstLineInnerMap.put("_type", type);
            firstLineInnerMap.put("_id", item.getId());
            firstLineMap.put("index", firstLineInnerMap);
    
            final Map<String, Object> secondLine = new HashMap<>();
    
            secondLine.put("text", item.getText());
    
            // reading
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/math/Quantiles.java

          if (containsNaN(dataset)) {
            Map<Integer, Double> nanMap = new LinkedHashMap<>();
            for (int index : indexes) {
              nanMap.put(index, NaN);
            }
            return unmodifiableMap(nanMap);
          }
    
          // Calculate the quotients and remainders in the integer division x = k * (N - 1) / q, i.e.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/math/Quantiles.java

          if (containsNaN(dataset)) {
            Map<Integer, Double> nanMap = new LinkedHashMap<>();
            for (int index : indexes) {
              nanMap.put(index, NaN);
            }
            return unmodifiableMap(nanMap);
          }
    
          // Calculate the quotients and remainders in the integer division x = k * (N - 1) / q, i.e.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
Back to top