Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 968 for setOp (0.08 sec)

  1. .github/workflows/build.yml

          - name: Configure JDK
            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 11
    
          - name: Configure JDK
            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 17
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Upload Artifacts
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MultiProjectJvmApplicationInitIntegrationTest.groovy

        def setup() {
            setupDslAndLanguage(BuildInitDsl.GROOVY, JAVA)
        }
    }
    
    class GroovyDslMultiProjectJavaApplicationInitIntegrationTest2 extends AbstractMultiProjectJvmApplicationInitIntegrationTest2 {
        def setup() {
            setupDslAndLanguage(BuildInitDsl.GROOVY, JAVA)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/sync/map_bench_test.go

    			if bench.setup != nil {
    				bench.setup(b, m)
    			}
    
    			b.ResetTimer()
    
    			var i int64
    			b.RunParallel(func(pb *testing.PB) {
    				id := int(atomic.AddInt64(&i, 1) - 1)
    				bench.perG(b, pb, id*b.N, m)
    			})
    		})
    	}
    }
    
    func BenchmarkLoadMostlyHits(b *testing.B) {
    	const hits, misses = 1023, 1
    
    	benchMap(b, bench{
    		setup: func(_ *testing.B, m mapInterface) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/MissingScriptFixture.groovy

            String toString() {
                "${scenario.getDisplayName(scriptLanguage.extension)}"
            }
    
            MissingScriptFixture setUpFixtureFor(AbstractIntegrationSpec abstractIntegrationSpec) {
                scenario.setup(abstractIntegrationSpec)
                return new MissingScriptFixture(scriptLanguage, scenario, abstractIntegrationSpec.testDirectory)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.groovy

     */
    
    package org.gradle.integtests.composite
    
    class CompositeBuildTaskExecutionIntegrationTest extends AbstractCompositeBuildTaskExecutionIntegrationTest {
    
        def "can run included root project task"() {
            setup:
            settingsFile << "includeBuild('other-build')"
            file('other-build/settings.gradle') << "rootProject.name = 'other-build'"
            file('other-build/build.gradle') << """
                tasks.register('doSomething') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. pkg/volume/secret/secret_test.go

    		t.Errorf("Got unexpected path: %s", volumePath)
    	}
    
    	err = mounter.SetUp(volume.MounterArgs{})
    	if err != nil {
    		t.Errorf("Failed to setup volume: %v", err)
    	}
    	if _, err := os.Stat(volumePath); err != nil {
    		if os.IsNotExist(err) {
    			t.Errorf("SetUp() failed, volume path not created: %s", volumePath)
    		} else {
    			t.Errorf("SetUp() failed: %v", err)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTestSpecCrossVersionSpec.groovy

    import static org.gradle.integtests.tooling.fixture.TextUtil.normaliseLineSeparators
    
    @ToolingApiVersion('>=7.6')
    @TargetGradleVersion(">=7.6")
    class TestLauncherTestSpecCrossVersionSpec extends TestLauncherSpec {
    
        def setup() {
            withFailingTest() // ensures that withTestsFor statements are not ignored
        }
    
        @TargetGradleVersion('>=3.0 <7.6')
        def "older Gradle versions ignore withTestsFor calls"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_executor_test.go

    )
    
    var _ OperationGenerator = &fakeOperationGenerator{}
    
    func TestOperationExecutor_MountVolume_ConcurrentMountForNonAttachableAndNonDevicemountablePlugins(t *testing.T) {
    	// Arrange
    	ch, quit, oe := setup()
    	volumesToMount := make([]VolumeToMount, numVolumesToMount)
    	secretName := "secret-volume"
    	volumeName := v1.UniqueVolumeName(secretName)
    
    	// Act
    	for i := range volumesToMount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. pkg/test/framework/suite.go

    	// RequireMaxVersion validates the environment meets a maximum version
    	RequireMaxVersion(minorVersion uint) Suite
    	// Setup runs enqueues the given setup function to run before test execution.
    	Setup(fn resource.SetupFn) Suite
    	Teardown(fn resource.TeardownFn) Suite
    	// SetupParallel runs the given setup functions in parallel before test execution.
    	SetupParallel(fns ...resource.SetupFn) Suite
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. pkg/volume/configmap/configmap_test.go

    	group := int64(1001)
    	mounterArgs.FsGroup = &group
    	err = mounter.SetUp(mounterArgs)
    	if err != nil {
    		t.Errorf("Failed to setup volume: %v", err)
    	}
    	if _, err := os.Stat(volumePath); err != nil {
    		if os.IsNotExist(err) {
    			t.Errorf("SetUp() failed, volume path not created: %s", volumePath)
    		} else {
    			t.Errorf("SetUp() failed: %v", err)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 19.9K bytes
    - Viewed (0)
Back to top