Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,983 for setupCa (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/test/groovy/org/gradle/internal/resource/local/UniquePathKeyFileStoreTest.groovy

        def "add skips action if file already exists"() {
            setup:
            def file = temporaryFolder.createFile("fsbase/a/a");
    
            when:
            def fileInStore = uniquePathKeyFileStore.add("a/a", action)
    
            then:
            fileInStore.file == file
            0 * action.execute(_)
        }
    
        def "move returns existing file if it already exists"() {
            setup:
            def source = temporaryFolder.createFile("some-file")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Aug 28 21:50:20 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelOutputLocationCrossVersionSpec.groovy

        def "Java project has default output location"() {
            setup:
            buildFile << "apply plugin: 'java'"
            EclipseProject project = loadToolingModel(EclipseProject)
    
            when:
            EclipseOutputLocation output = project.getOutputLocation()
    
            then:
            output.path == 'bin'
        }
    
        def "Custom output location defined in dsl"() {
            setup:
            buildFile <<
            """apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top