Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,129 for groupA (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomRelocationIntegrationTest.groovy

            'groupB'          | 'artifactB'          | 'groupB'   | 'artifactB'
            'groupB'          | null                 | 'groupB'   | 'artifactA'
            null              | 'artifactB'          | 'groupA'   | 'artifactB'
        }
    
        def "can resolve module with relocated version"() {
            given:
            def moduleB = mavenHttpRepo.module('groupB', 'artifactB').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenProfileResolveIntegrationTest.groovy

            given:
            def requestedModule = mavenHttpRepo.module("groupA", "artifactA", "1.2").publish()
            requestedModule.pomFile.text = """
    <project>
        <groupId>groupA</groupId>
        <artifactId>artifactA</artifactId>
        <version>1.2</version>
        <dependencies>
            <dependency>
                <groupId>groupB</groupId>
                <artifactId>artifactB</artifactId>
            </dependency>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomResolveIntegrationTest.groovy

            given:
            def original = mavenHttpRepo.module('groupA', 'artifactA', '1.0').publishPom()
            original.pomFile.text = """
    <project>
        <groupId>groupA</groupId>
        <artifactId>artifactA</artifactId>
        <version>1.0</version>
        <distributionManagement>
            <relocation>
                <groupId>groupA</groupId>
                <artifactId>artifactA</artifactId>
                <version>2.0</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/resources/org/gradle/integtests/publish/maven/pomGeneration/expectedNewPom.txt

          <artifactId>providedRuntime-util</artifactId>
          <version>1.0</version>
          <type>war</type>
          <scope>provided</scope>
          <exclusions>
            <exclusion>
              <artifactId>*</artifactId>
              <groupId>*</groupId>
            </exclusion>
          </exclusions>
        </dependency>
        <dependency>
          <groupId>group6</groupId>
          <artifactId>testRuntime</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/resources/org/gradle/integtests/publish/maven/pomGeneration/expectedPom.txt

            </exclusion>
          </exclusions>
        </dependency>
        <dependency>
          <groupId>group6</groupId>
          <artifactId>testRuntime</artifactId>
          <version>1.0</version>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>group2</groupId>
          <artifactId>providedCompile</artifactId>
          <version>1.0</version>
          <scope>provided</scope>
          <exclusions>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorData.groovy

        @Test public void another() {}
        @Test public void yetAnother() {}
    }
    
    public class ATestNGClassWithGroups {
        @Test(groups="group1") public void group1() {}
        @Test(groups="group2") public void group2() {}
        @Test(groups="group2,group3") public void excluded() {}
        @Test(groups="group4") public void ignored() {}
    }
    
    public class ATestNGFactoryClass {
        @Factory
        public Object[] suite() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

            failure.assertHasCause('Could not find :name3:1.0-SNAPSHOT.')
            failure.assertHasCause('Could not find group1::1.0.')
            failure.assertHasCause('Could not find any matches for group2::[1.0, 2.0] as no versions of group2: are available.')
            failure.assertHasCause('Could not find group3::1.0-SNAPSHOT.')
            failure.assertHasCause('Could not find group:name:.')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      // sequence so are made dependent. For example, if `OpA` has parallel_ids
      //   `{group0:branch0, group1:branch0}`
      // and `OpB` has parallel_ids
      //   `{group0:branch0, group2:branch0}`
      // then `OpA` and `OpB` are executed in sequence because the common groups
      // have the same branch.
      //
      // If an op is not in `op_to_parallel_ids` then it is considered to have the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. internal/logger/targets.go

    	return tgts, errs
    }
    
    // Split targets into two groups:
    //
    //	group1 contains all targets of type t
    //	group2 contains the remaining targets
    func splitTargets(targets []Target, t types.TargetType) (group1 []Target, group2 []Target) {
    	for _, target := range targets {
    		if target.Type() == t {
    			group1 = append(group1, target)
    		} else {
    			group2 = append(group2, target)
    		}
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/group.go

    		serializer: serializer,
    		group:      group,
    	}
    }
    
    func (s *APIGroupHandler) WebService() *restful.WebService {
    	mediaTypes, _ := negotiation.MediaTypesForSerializer(s.serializer)
    	ws := new(restful.WebService)
    	ws.Path(APIGroupPrefix + "/" + s.group.Name)
    	ws.Doc("get information of a group")
    	ws.Route(ws.GET("/").To(s.handle).
    		Doc("get information of a group").
    		Operation("getAPIGroup").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 20:38:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top