Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 624 for silver (0.76 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                            }
                        end();
                        div().classAttr("col text-right mt-1");
                            i().classAttr("fa fa-filter").attr("data-toggle", "popover", "data-placement", "bottom").title("Filter by tag").style("cursor: pointer").text(" ").end();
                        end();
                        div().classAttr("col p-0")
                            .attr("data-toggle", "tooltip")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcher.java

        private final List<TestPattern> commandLineIncludePatterns;
    
        public TestSelectionMatcher(TestFilterSpec filter) {
            buildScriptIncludePatterns = preparePatternList(filter.getIncludedTests());
            buildScriptExcludePatterns = preparePatternList(filter.getExcludedTests());
            commandLineIncludePatterns = preparePatternList(filter.getIncludedTestsCommandLine());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

            }
            form.fields.entrySet().stream().filter(e -> e.getValue() != null).forEach(e -> {
                final String key = LaFunctions.u(e.getKey());
                stream(e.getValue()).of(stream -> stream.filter(StringUtil::isNotBlank)
                        .forEach(s -> pagingQueryList.add("fields." + key + "=" + LaFunctions.u(s))));
            });
            form.as.entrySet().stream().filter(e -> e.getValue() != null).forEach(e -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/QueryHelper.java

        }
    
        public void addBoostFunction(final QueryBuilder filter, final ScoreFunctionBuilder<?> scoreFunction) {
            boostFunctionList.add(new FilterFunctionBuilder(filter, scoreFunction));
        }
    
        public RescorerBuilder<?>[] getRescorers(final Map<String, Object> params) {
            return queryRescorerList.stream().map(r -> r.evaluate(params)).filter(b -> b != null).toArray(n -> new RescorerBuilder<?>[n]);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

                                .filter(StringUtil::isNotBlank).distinct().toArray(n -> new String[n]));
                        final String[] labels = split(getValue(list, 3), ",")
                                .get(stream -> stream.filter(StringUtil::isNotBlank).distinct().toArray(n -> new String[n]));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            given:
            Task a = filteredTask("a")
            Task b = task("b")
            Spec<Task> filter = Mock()
    
            and:
            filter.isSatisfiedBy(_) >> { Task t -> t != a }
    
            when:
            executionPlan.addFilter(filter)
            addToGraphAndPopulate([a, b])
    
            then:
            executes(b)
            filtered(a)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/interface.go

    	// CycleState, and may call those functions more than once before calling
    	// Filter again on a specific node.
    	PreFilterExtensions() PreFilterExtensions
    }
    
    // FilterPlugin is an interface for Filter plugins. These plugins are called at the
    // filter extension point for filtering out hosts that cannot run a pod.
    // This concept used to be called 'predicate' in the original scheduler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. src/cmd/trace/pprof.go

    // grouped by the goroutine id. If the filter is nil, returns nil without an error.
    func pprofMatchingRegions(filter *regionFilter, t *parsedTrace) (map[trace.GoID][]interval, error) {
    	if filter == nil {
    		return nil, nil
    	}
    
    	gToIntervals := make(map[trace.GoID][]interval)
    	for _, g := range t.summary.Goroutines {
    		for _, r := range g.Regions {
    			if !filter.match(t, r) {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

        private fun KaSession.renderByPropertyNames(value: Any, printer: PrettyPrinter) {
            val members = value::class.members
                .filter { it.name !in ignoredPropertyNames }
                .filter { it.visibility != KVisibility.PRIVATE && it.visibility != KVisibility.INTERNAL }
                .filter { !it.hasAnnotation<Deprecated>() }
                .sortedBy { it.name }
                .filterIsInstance<KProperty<*>>()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/module/module.go

    	cv := semver.Canonical(v)
    	if semver.Build(v) == "+incompatible" {
    		cv += "+incompatible"
    	}
    	return cv
    }
    
    // Sort sorts the list by Path, breaking ties by comparing [Version] fields.
    // The Version fields are interpreted as semantic versions (using [semver.Compare])
    // optionally followed by a tie-breaking suffix introduced by a slash character,
    // like in "v0.0.1/go.mod".
    func Sort(list []Version) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top