Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for scoreMode (0.14 sec)

  1. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

                    flist.toArray(new FunctionScoreQueryBuilder.FilterFunctionBuilder[flist.size()]));
    
            functionScoreQueryBuilder.boostMode(CombineFunction.REPLACE);
            functionScoreQueryBuilder.scoreMode(FunctionScoreQuery.ScoreMode.MULTIPLY);
    
            return functionScoreQueryBuilder;
        }
    
        protected SuggestResponse createResponse(final SearchResponse searchResponse) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    Map.of("_default", List.of("QUERY1")), //
                    Set.of("QUERY1"), //
                    buildQuery("QUERY1^10"));
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 37.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/provider/ClassLoaderHierarchyTest.kt

        data class ClassLoaderHierarchy(
            val classLoaders: List<ClassLoaderNode>,
            val scopes: List<ScopeNode>
        )
    
        data class ClassLoaderNode(
            val id: String,
            val label: String,
            val parents: Set<String>,
            val classPath: List<String>
        )
    
        data class ScopeNode(
            val label: String,
            val localClassLoader: String,
            val exportClassLoader: String,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            private final ModelNodeInternal scopeNode;
    
            public TryDiscoverSelfDiscoveringInScope(ModelNodeInternal scopeNode) {
                this.scopeNode = scopeNode;
            }
    
            @Override
            public boolean isAchieved() {
                for (ModelNodeInternal child : scopeNode.getLinks()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  5. pkg/ledger/smt.go

    	if (height)%4 == 0 {
    		if shortcut {
    			batch[0] = []byte{1}
    		} else {
    			batch[0] = []byte{0}
    		}
    
    		s.storeNode(batch, h, oldRoot)
    	}
    	return h
    }
    
    // storeNode stores a batch and deletes the old node from cache
    func (s *smt) storeNode(batch [][]byte, h, oldRoot []byte) {
    	if !bytes.Equal(h, oldRoot) {
    		var node hash
    		copy(node[:], h)
    		// record new node
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy_test.go

    			return nil
    		}, retry.Timeout(time.Second*2))
    	}
    
    	// send cds before healthcheck, to make wle registered
    	coreNode := &core.Node{
    		Id:       "sidecar~1.1.1.1~debug~cluster.local",
    		Metadata: node.ToStruct(),
    	}
    	err := downstream.Send(&discovery.DiscoveryRequest{TypeUrl: v3.ClusterType, Node: coreNode})
    	if err != nil {
    		t.Fatal(err)
    	}
    	_, err = downstream.Recv()
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top