Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getScores (0.2 sec)

  1. istioctl/pkg/admin/istiodconfig.go

    type resetState struct {
    	client *ControlzClient
    }
    
    func (rs *resetState) run(_ io.Writer) error {
    	const (
    		defaultOutputLevel     = "info"
    		defaultStackTraceLevel = "none"
    	)
    	allScopes, err := rs.client.GetScopes()
    	if err != nil {
    		return fmt.Errorf("could not get all scopes: %v", err)
    	}
    	var defaultScopes []*ScopeInfo
    	for _, scope := range allScopes {
    		defaultScopes = append(defaultScopes, &ScopeInfo{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                docMap.put(fessConfig.getResponseFieldSitePath(), viewHelper.getSitePath(docMap));
            }
    
            if (!docMap.containsKey(Constants.SCORE)) {
                docMap.put(Constants.SCORE, searchHit.getScore());
            }
    
            if (!docMap.containsKey(fessConfig.getIndexFieldId())) {
                docMap.put(fessConfig.getIndexFieldId(), searchHit.getId());
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

            mojoDescriptor.setPluginDescriptor(descriptor);
            mojoDescriptor.setThreadSafe(threadSafe);
            return mojoDescriptor;
        }
    
        public static Set<String> getScopes() {
            return new HashSet<>(Arrays.asList("compile"));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                        }
    
                        if (!docMap.containsKey(Constants.SCORE)) {
                            docMap.put(Constants.SCORE, hit.getScore());
                        }
    
                        docMap.put(fessConfig.getIndexFieldId(), hit.getId());
                        docMap.put(fessConfig.getIndexFieldVersion(), hit.getVersion());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

         * idea {
         *   module {
         *     scopes.TEST.plus += [ configurations.performanceTestCompile ]
         *   }
         * }
         * </pre>
         */
        public Map<String, Map<String, Collection<Configuration>>> getScopes() {
            return scopes;
        }
    
        public void setScopes(Map<String, Map<String, Collection<Configuration>>> scopes) {
            this.scopes = scopes;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top