Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,549 for setOp (0.2 sec)

  1. guava-testlib/src/com/google/common/collect/testing/AbstractTester.java

      private G subjectGenerator;
      private String suiteName;
      private @Nullable Runnable setUp;
      private @Nullable Runnable tearDown;
    
      // public so that it can be referenced in generated GWT tests.
      @Override
      public void setUp() throws Exception {
        if (setUp != null) {
          setUp.run();
        }
      }
    
      // public so that it can be referenced in generated GWT tests.
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. 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)
  3. platforms/ide/ide-plugins/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r54/RunEclipseSynchronizationTasksCrossVersionSpec.groovy

    import org.gradle.plugins.ide.eclipse.model.EclipseModel
    
    @TargetGradleVersion(">=5.4")
    class RunEclipseSynchronizationTasksCrossVersionSpec extends ToolingApiSpecification {
        def setup() {
            file("sub1").mkdirs()
    
            buildFile << """
                apply plugin: 'eclipse'
    
                task foo {
                }
    
                task bar {
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/buildCache/developer-ci-setup/kotlin/settings.gradle.kts

    rootProject.name = "developer-ci-setup"
    // tag::developer-ci-setup[]
    val isCiServer = System.getenv().containsKey("CI")
    
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
            isPush = isCiServer
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 281 bytes
    - Viewed (0)
  5. tests/integration/security/https_jwt/main_test.go

    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    		Setup(istio.Setup(&ist, setupConfig)).
    		Setup(func(ctx resource.Context) error {
    			var err error
    			systemNs, err = istio.ClaimSystemNamespace(ctx)
    			return err
    		}).
    		Setup(namespace.Setup(&echoNS, namespace.Config{Prefix: "echo1", Inject: true})).
    		SetupParallel(
    			jwt.Setup(&jwtServer, namespace.Future(&systemNs)),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 09:55:58 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. pkg/test/framework/scope_test.go

    	res := &resource.FakeResource{
    		IDValue: "my-fake-resource",
    	}
    
    	tests := map[string]struct {
    		setup    func() *scope
    		expError error
    	}{
    		"exists": {
    			setup: func() *scope {
    				scope := newScope("s", nil)
    				scope.add(res, &resourceID{id: res.IDValue})
    				return scope
    			},
    		},
    		"parent": {
    			setup: func() *scope {
    				p := newScope("p", nil)
    				p.add(res, &resourceID{id: res.IDValue})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/format/PrettyPrefixedLogHeaderFormatterTest.groovy

    import spock.lang.Specification
    
    class PrettyPrefixedLogHeaderFormatterTest extends Specification {
    
        def "formats header of failed operation that has status"() {
            setup:
            def formatter = new PrettyPrefixedLogHeaderFormatter()
    
            when:
            def formattedText = formatter.format(":test", "XYZ", true)
    
            then:
            formattedText.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. tests/integration/security/sds_ingress/quic/ingress_test.go

    		// Need support for MixedProtocolLBService
    		RequireMinVersion(20).
    		RequireMultiPrimary().
    		Setup(istio.Setup(&inst, func(_ resource.Context, cfg *istio.Config) {
    			cfg.PrimaryClusterIOPFile = istio.IntegrationTestDefaultsIOPWithQUIC
    		})).
    		Setup(namespace.Setup(&echo1NS, namespace.Config{Prefix: "echo1", Inject: true})).
    		Setup(func(ctx resource.Context) error {
    			// TODO: due to issue https://github.com/istio/istio/issues/25286,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/JsseDebugLogging.kt

        enum class Type {
          Handshake,
          Plaintext,
          Encrypted,
          Setup,
          Unknown,
        }
    
        val type: Type
          get() =
            when {
              message == "adding as trusted certificates" -> Type.Setup
              message == "Raw read" || message == "Raw write" -> Type.Encrypted
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/StacktraceIntegrationTest.groovy

        }
    
        def "can configure in gradle.properties file"() {
            setup:
            file('gradle.properties') << 'org.gradle.logging.stacktrace=full'
    
            when:
            fails()
    
            then:
            assertCauseWithStacktrace('show stacktrace was ALWAYS_FULL')
        }
    
        def "configuration is case-insensitive"() {
            setup:
            file('gradle.properties') << 'org.gradle.logging.stacktrace=FuLl'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top