Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 586 for spcs (0.08 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/EmbeddedDaemonRegistry.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.launcher.daemon.registry;
    
    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.Specs;
    import org.gradle.internal.remote.Address;
    
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.List;
    import java.util.Map;
    import java.util.concurrent.ConcurrentHashMap;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeInitializerContext.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.core;
    
    import com.google.common.base.Objects;
    import com.google.common.base.Optional;
    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.Specs;
    import org.gradle.model.internal.manage.binding.ManagedProperty;
    import org.gradle.model.internal.type.ModelType;
    
    public class NodeInitializerContext<T> {
        private final ModelType<T> modelType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessor.java

    import org.gradle.api.artifacts.ComponentSelection;
    import org.gradle.api.artifacts.ivy.IvyModuleDescriptor;
    import org.gradle.api.internal.artifacts.ComponentSelectionInternal;
    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.Specs;
    import org.gradle.internal.rules.SpecRuleAction;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Collections;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/typeconversion/ClosureToSpecNotationConverter.java

     * limitations under the License.
     */
    
    package org.gradle.internal.typeconversion;
    
    import groovy.lang.Closure;
    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.Specs;
    import org.gradle.internal.exceptions.DiagnosticsVisitor;
    
    public class ClosureToSpecNotationConverter<T> implements NotationConverter<Closure, Spec<T>> {
        private final Class<T> type;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/stream_executor/BUILD

    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    filegroup(
        name = "headers",
        srcs = [
            "stream_executor.h",
        ],
        visibility = ["//tensorflow:__subpackages__"],
    )
    
    cc_library(
        name = "stream_executor_hdrs",
        hdrs = ["stream_executor.h"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 00:27:07 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r83/TestLauncherCustomTestTaskCrossVersionTest.groovy

        def "Cannot run tests with custom task implementation in older Gradle versions"() {
            when:
            launchTests { TestLauncher launcher ->
                launcher.withTestsFor { TestSpecs specs ->
                    specs.forTaskPath(':myTestTask').includeClass('org.my.MyClass')
                }
            }
    
            then:
            Throwable exception = thrown(TestExecutionException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/internal/IntersectionPatternSet.java

     * limitations under the License.
     */
    
    package org.gradle.api.tasks.util.internal;
    
    import org.gradle.api.Action;
    import org.gradle.api.file.FileTreeElement;
    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.Specs;
    import org.gradle.api.tasks.util.PatternSet;
    
    public class IntersectionPatternSet extends PatternSet {
    
        private final PatternSet other;
    
        public IntersectionPatternSet(PatternSet other) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 04 05:29:32 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/DefaultDomainObjectSet.java

    import org.gradle.api.internal.collections.ElementSource;
    import org.gradle.api.internal.collections.IterationOrderRetainingSetElementSource;
    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.Specs;
    import org.gradle.internal.ImmutableActionSet;
    
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/cpp/renderers/BUILD

    )
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:private"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "renderers",
        srcs = glob(
            ["*.cc"],
            exclude = ["*_test.cc"],
        ),
        hdrs = glob(["*.h"]),
        visibility = ["//tensorflow/c/experimental/ops/gen/cpp:__pkg__"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 21:13:03 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/cmd/gotraceeventstats/main.go

    		return cmp.Compare(b.bytes, a.bytes)
    	})
    	specs := tr.Version().Specs()
    	w := tabwriter.NewWriter(os.Stdout, 3, 8, 2, ' ', 0)
    	fmt.Fprintf(w, "Event\tBytes\t%%\tCount\t%%\n")
    	fmt.Fprintf(w, "-\t-\t-\t-\t-\n")
    	for i := range stats {
    		stat := &stats[i]
    		name := ""
    		if int(stat.typ) >= len(specs) {
    			name = fmt.Sprintf("<unknown (%d)>", stat.typ)
    		} else {
    			name = specs[stat.typ].Name
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top