Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,376 for Single (0.11 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

                .mutate(FlavorContainer) { it.add named(Flavor, "flavor1") }
    
            then:
            single(toolChains).name == 'tc'
            platforms.size() == 1
            single(buildTypes).name == 'bt'
            single(flavors).name == 'flavor1'
        }
    
        def "creates binaries for executable"() {
            when:
            project.pluginManager.apply(NativeComponentModelPlugin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/cpu_assignment_test.go

    		availableCPUs cpuset.CPUSet
    		expect        []int
    	}{
    		{
    			"single socket HT, 4 cores free",
    			topoSingleSocketHT,
    			cpuset.New(0, 1, 2, 3, 4, 5, 6, 7),
    			[]int{0, 1, 2, 3},
    		},
    		{
    			"single socket HT, 3 cores free",
    			topoSingleSocketHT,
    			cpuset.New(0, 1, 2, 4, 5, 6),
    			[]int{0, 1, 2},
    		},
    		{
    			"single socket HT, 3 cores free (1 partially consumed)",
    			topoSingleSocketHT,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 17:31:37 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/PluginApplicationBuildProgressCrossVersionSpec.groovy

            def java = events.operation("Apply plugin org.gradle.java to root project 'single'")
            def javaBase = events.operation("Apply plugin org.gradle.api.plugins.JavaBasePlugin to root project 'single'")
            def base = events.operation("Apply plugin org.gradle.api.plugins.BasePlugin to root project 'single'")
    
            help.parent == configureRootProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/SingleEntryModuleLibrary.java

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    /**
     * Single entry module library
     */
    public class SingleEntryModuleLibrary extends ModuleLibrary {
    
        private ModuleVersionIdentifier moduleVersion;
    
        /**
         * Creates single entry module library
         *
         * @param library a path to jar or class folder in idea format
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockingSingleFilePerProject/kotlin/build.gradle.kts

    // tag::locking-explicit[]
    // tag::locking-single[]
    configurations {
        compileClasspath {
            resolutionStrategy.activateDependencyLocking()
        }
    // end::locking-single[]
        runtimeClasspath {
            resolutionStrategy.activateDependencyLocking()
        }
        annotationProcessor {
            resolutionStrategy.activateDependencyLocking()
        }
    // tag::locking-single[]
    }
    // end::locking-single[]
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 878 bytes
    - Viewed (0)
  6. testing/internal-testing/src/test/groovy/org/gradle/test/precondition/PredicateFileTest.groovy

    class PredicateFileTest extends Specification {
    
        Set<Set<String>> values = [
            // Value NOT shared between single and multi cases
            ["value1"] as Set,
            // Value shared between single and multi cases
            ["value2"] as Set,
            ["value2", "value3"] as Set,
        ] as Set
    
        def "accept single values"() {
            when:
            checkValidCombinations([value])
    
            then:
            noExceptionThrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/InjectUtil.java

    import java.lang.reflect.Modifier;
    import java.lang.reflect.Type;
    
    final class InjectUtil {
    
        /**
         * Selects the single injectable constructor for the given type.
         * The type must either have only one public or package-private default constructor,
         * or it should have a single non-private constructor annotated with {@literal @}{@link Inject}.
         *
         * @param type the type to find the injectable constructor of.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoReportsContainer.java

         */
        @Internal
        DirectoryReport getHtml();
    
        /**
         * The JaCoCo (single file) XML report
         *
         * @return The JaCoCo (single file) XML report
         */
        @Internal
        SingleFileReport getXml();
    
        /**
         * The JaCoCo (single file) CSV report
         *
         * @return The JaCoCo (single file) CSV report
         */
        @Internal
        SingleFileReport getCsv();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractVersionRangeResolveIntegrationTest.groovy

                singleProjectConfs << "single${i}"
                singleProjectDeps << "single${i} " + version.render()
            }
    
            buildFile.text = baseBuild + """
                allprojects {
                    configurations { conf }
                }
    
                configurations {
                    ${singleProjectConfs.join('\n')}
                    single {
                        extendsFrom(${singleProjectConfs.join(',')})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/list_ambiguous_path.txt

    # See golang.org/issue/34653.
    
    # A single pattern for a package ending in '.go'.
    go list ./foo.go
    stdout '^test/foo.go$'
    
    # Multiple patterns for packages including one ending in '.go'.
    go list ./bar ./foo.go
    stdout '^test/bar$'
    stdout '^test/foo.go$'
    
    # A single pattern for a Go file.
    go list ./a.go
    stdout '^command-line-arguments$'
    
    # A single typo-ed pattern for a Go file. This should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top