Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for groupOne (0.13 sec)

  1. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaDependencyLockingIntegrationTest.groovy

        void "does not break when lockfile is out of date"() {
            //given
            def mvnRepo = maven(file("repo"))
            mvnRepo.module("groupOne", "artifactTwo").publish()
            mvnRepo.module("groupOne", "artifactTwo", "1.1").publish()
            mvnRepo.module("groupOne", "artifactTwo", "2.0").publish()
    
            file('gradle/dependency-locks/compileClasspath.lockfile') << 'groupOne:artifactTwo:1.1'
    
            //when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseDependencyLockingIntegrationTest.groovy

        void "does not break when lockfile is out of date"() {
            //given
            def mvnRepo = maven(file("repo"))
            mvnRepo.module("groupOne", "artifactTwo").publish()
            mvnRepo.module("groupOne", "artifactTwo", "1.1").publish()
            def repoJar = mvnRepo.module("groupOne", "artifactTwo", "2.0").publish().artifactFile
    
            file('gradle/dependency-locks/compileClasspath.lockfile') << 'groupOne:artifactTwo:1.1'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void doesNotBreakWhenSomeDependenciesCannotBeResolved() {
            //given
            def repoDir = file("repo")
            maven(repoDir).module("groupOne", "artifactTwo").publish()
    
            createDirs("someApiProject", "impl")
            file("settings.gradle") << "include 'someApiProject', 'impl'\n"
            file('someDependency.jar').createFile()
    
            //when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/bitmask/bitmask.go

    }
    
    // String converts mask to string
    func (s *bitMask) String() string {
    	grouping := 2
    	for shift := 64 - grouping; shift > 0; shift -= grouping {
    		if *s > (1 << uint(shift)) {
    			return fmt.Sprintf("%0"+strconv.Itoa(shift+grouping)+"b", *s)
    		}
    	}
    	return fmt.Sprintf("%0"+strconv.Itoa(grouping)+"b", *s)
    }
    
    // Count counts number of bits in mask set to one
    func (s *bitMask) Count() int {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluationSchema/SchemaComponents.kt

        )
    }
    
    
    /**
     * Provides grouping capabilities for features used in schema building.
     */
    internal
    interface AnalysisSchemaComponent {
        fun typeDiscovery(): List<TypeDiscovery> = listOf()
        fun propertyExtractors(): List<PropertyExtractor> = listOf()
        fun functionExtractors(): List<FunctionExtractor> = listOf()
    }
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. guava-gwt/test/com/google/common/GwtTestSuite.java

    import com.google.gwt.junit.tools.GWTTestSuite;
    
    import junit.framework.Test;
    import junit.framework.TestCase;
    
    import java.io.IOException;
    
    /**
     * Runs all _gwt tests. Grouping them into a suite is much faster than running each as a one-test
     * "suite," as the per-suite setup is expensive.
     */
    public class GwtTestSuite extends TestCase {
      public static Test suite() throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 23 13:24:59 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGGroupByInstancesNotSupportedIntegrationTest.groovy

            fails "test"
    
            then:
            def result = new DefaultTestExecutionResult(testDirectory)
            result.testClassStartsWith('Gradle Test Executor').assertExecutionFailedWithCause(
                containsString("Grouping tests by instances is not supported by this version of TestNG."))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpKeyGrouperTest.groovy

            ["org.a.1", "org.a.2", "org.a.1.c", "org.b.1", "org.b.2"]                         | [["org", "a", "1"], ["org", "b"]]
    
        }
    
        def "more complex grouping"() {
            expect:
            PgpKeyGrouper.tryComputeCommonPrefixes([
                "org.codehaus.groovy.modules",
                "io.github.http-builder-ng",
                "org.jetbrains.intellij.deps",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. pkg/apis/rbac/types.go

    	Kind string
    	// Name is the name of resource being referenced
    	Name string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    type Role struct {
    	metav1.TypeMeta
    	// Standard object's metadata.
    	metav1.ObjectMeta
    
    	// Rules holds all the PolicyRules for this Role
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/check_control_dependencies.cc

    // grouping control dependencies. We don't want to report warnings for these
    // ops, unless they belong to a control path between two side-effecting ops that
    // should not have any dependencies.
    bool IsIntermediateOp(IslandOp island) {
      // These two side-effect-free ops are known to be used for control dependency
      // grouping (e.g., in `BreakUpIslands` pass).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 10.2K bytes
    - Viewed (0)
Back to top