Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,585 for setOp (0.04 sec)

  1. tests/integration/pilot/multiplecontrolplanes/main_test.go

    			c, _ := istio.DefaultConfig(ctx)
    			return c.EnableCNI
    		}).
    		SetupParallel(
    			namespace.Setup(&userGroup1NS, namespace.Config{Prefix: "usergroup-1", Labels: map[string]string{"usergroup": "usergroup-1"}}),
    			namespace.Setup(&userGroup2NS, namespace.Config{Prefix: "usergroup-2", Labels: map[string]string{"usergroup": "usergroup-2"}})).
    		Setup(istio.Setup(nil, func(ctx resource.Context, cfg *istio.Config) {
    			s := ctx.Settings()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/GroovyTransformationIntegrationTest.groovy

            setup:
            file("src/main/groovy/Person.groovy") << """
                @Grab(group='commons-lang', module='commons-lang', version='2.4')
                class Person { }
            """
    
            expect:
            succeeds 'compileGroovy'
        }
    
        def "Dependencies defined @Grab annotation are not present on the classpath"() {
            setup:
            file("src/main/groovy/Person.groovy") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseScopeAttributeIntegrationTest.groovy

        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
        @ToBeFixedForConfigurationCache
        def "Source set defined on dependencies"() {
            setup:
            buildFile << """
                apply plugin: 'java'
                apply plugin: 'eclipse'
    
                ${mavenCentralRepository()}
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 13:19:47 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenGcsSnapshotRepoIntegrationTest.groovy

        String artifactVersion = "1.45-SNAPSHOT"
        MavenGcsModule module
    
        def setup() {
            module = getMavenGcsRepo().module("org.gradle", "test", artifactVersion)
        }
    
        def "resolves a maven snapshot module stored in Gcs"() {
            setup:
            module.publish()
    
            buildFile << mavenGcsRepoDsl()
            buildFile << """
    configurations { compile }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/GitIgnoreGeneratorTest.groovy

        }
        File gitignoreFile = tmpDir.file(".gitignore")
    
        def setup() {
            Directory target = Mock()
            RegularFile ignoreFile = Mock()
            1 * settings.target >> target
            1 * target.file('.gitignore') >> ignoreFile
            1 * ignoreFile.asFile >> gitignoreFile
        }
    
        def "generates .gitignore file"() {
            setup:
            def generator = new GitIgnoreGenerator()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:17:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testKit/automaticClasspathInjectionQuickstart/kotlin/src/test/groovy/org/gradle/sample/BuildLogicFunctionalTest.groovy

        @TempDir File testProjectDir
        File settingsFile
        File buildFile
    
        def setup() {
            settingsFile = new File(testProjectDir, 'settings.gradle')
            buildFile = new File(testProjectDir, 'build.gradle')
        }
    
        // tag::functional-test-classpath-setup-automatic[]
        def "hello world task prints hello world"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. android/guava-testlib/test/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilderTest.java

          return Collections.<Class<? extends AbstractTester>>singletonList(MyTester.class);
        }
      }
    
      public void testLifecycle() {
        boolean[] setUp = {false};
        Runnable setUpRunnable =
            new Runnable() {
              @Override
              public void run() {
                setUp[0] = true;
              }
            };
    
        boolean[] tearDown = {false};
        Runnable tearDownRunnable =
            new Runnable() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. .github/workflows/tests.yml

            platform: [ ubuntu-latest ]
        runs-on: ${{ matrix.platform }}
    
        steps:
          - name: Setup TiDB
            uses: Icemap/tidb-action@main
            with:
              port: 9940
              version: ${{matrix.dbversion}}
    
          - name: Set up Go 1.x
            uses: actions/setup-go@v4
            with:
              go-version: ${{ matrix.go }}
    
          - name: Check out code into the Go module directory
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/ResolvedGeneratedJarsIntegrationTest.groovy

    class ResolvedGeneratedJarsIntegrationTest extends BaseGradleImplDepsTestCodeIntegrationTest {
    
        def setup() {
            executer.requireOwnGradleUserHomeDir()
            buildFile << testablePluginProject(['java-gradle-plugin'])
        }
    
        def "gradle api jar is generated only when requested"() {
            setup:
            productionCode()
    
            def version = distribution.version.version
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonSystemPropertiesIntegrationTest.groovy

            """
    
            expect:
            executer.withBuildJvmOpts("-Dfoo.bar=baz").withTasks("verify").run()
        }
    
    
        def "forks new daemon when file encoding set to different value via commandline"() {
            setup:
            buildScript """
                task verify {
                    doFirst {
                        println "verified = " + java.nio.charset.Charset.defaultCharset().name()
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top