Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for getScores (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        new_result_types.push_back(valid_output_type);
    
        auto nmsv4 = CreateTfOp<TF::NonMaxSuppressionV4Op>(
            rewriter, nms_op, new_result_types, nms_op.getBoxes(),
            nms_op.getScores(), nms_op.getMaxOutputSize(), nms_op.getIouThreshold(),
            nms_op.getScoreThreshold());
        // Cannot replace the NMSv3 Op with NMSv4 since the outputs between the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/CumulativeScopeArtifactFilter.java

            this.scopes = new HashSet<>();
    
            if (filters != null) {
                for (CumulativeScopeArtifactFilter filter : filters) {
                    addScopes(filter.getScopes());
                }
            }
        }
    
        private void addScopes(Collection<String> scopes) {
            if (scopes != null) {
                for (String scope : scopes) {
                    addScope(scope);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    				if !status.IsSuccess() {
    					t.Errorf("Score is expected to return success, but didn't. Got status: %v", status)
    				}
    				gotScores = append(gotScores, framework.NodeScore{Name: n.Name, Score: score})
    			}
    
    			if diff := cmp.Diff(test.expectedScores, gotScores); diff != "" {
    				t.Errorf("Unexpected nodes (-want,+got):\n%s", diff)
    			}
    		})
    	}
    }
    
    func TestBrokenLinearFunction(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    			}
    
    			var gotScores framework.NodeScoreList
    			for _, n := range test.nodes {
    				score, status := p.(framework.ScorePlugin).Score(ctx, state, test.requestedPod, n.Name)
    				if status.Code() != test.wantStatusCode {
    					t.Errorf("unexpected status code, want: %v, got: %v", test.wantStatusCode, status.Code())
    				}
    				gotScores = append(gotScores, framework.NodeScore{Name: n.Name, Score: score})
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    			}
    
    			var gotScores framework.NodeScoreList
    			for _, n := range test.nodes {
    				score, status := p.(framework.ScorePlugin).Score(ctx, state, test.requestedPod, n.Name)
    				if status.Code() != test.wantStatusCode {
    					t.Errorf("unexpected status code, want: %v, got: %v", test.wantStatusCode, status.Code())
    				}
    				gotScores = append(gotScores, framework.NodeScore{Name: n.Name, Score: score})
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  6. 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)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

                    Collection<Configuration> providedPlus = ideaModule.getModule().getScopes().get(GeneratedIdeaScope.PROVIDED.name()).get(IdeaDependenciesProvider.SCOPE_PLUS);
                    providedPlus.add(providedRuntime);
                    Collection<Configuration> runtimeMinus = ideaModule.getModule().getScopes().get(GeneratedIdeaScope.RUNTIME.name()).get(IdeaDependenciesProvider.SCOPE_MINUS);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. 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)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/internal/IdeaDependenciesProvider.java

        }
    
        private Map<String, Collection<Configuration>> getPlusMinusConfigurations(IdeaModule ideaModule, GeneratedIdeaScope scope) {
            Map<String, Collection<Configuration>> plusMinusConfigurations = ideaModule.getScopes().get(scope.name());
            return plusMinusConfigurations != null ? plusMinusConfigurations : Collections.<String, Collection<Configuration>>emptyMap();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. 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)
Back to top