Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 170 for epstest (0.15 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaApplicationInitIntegrationTest.groovy

        public static final String SAMPLE_APP_CLASS = "org/example/App.java"
        public static final String SAMPLE_APP_TEST_CLASS = "org/example/AppTest.java"
        public static final String SAMPLE_APP_SPOCK_TEST_CLASS = "org/example/AppTest.groovy"
    
        @Override
        String subprojectName() { 'app' }
    
        def "defaults to Kotlin build scripts"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinApplicationInitIntegrationTest.groovy

            subprojectDir.file("src/test/kotlin").assertHasDescendants("my/app/AppTest.kt")
    
            and:
            commonJvmFilesGenerated(scriptDsl)
    
            when:
            run("build")
    
            then:
            assertTestPassed("my.app.AppTest", "appHasAGreeting")
    
            when:
            run("run")
    
            then:
            outputContains("Hello World!")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_rebuildall.txt

    # Regression test for golang.org/issue/6844:
    # 'go test -a' should force dependencies in the standard library to be rebuilt.
    
    [short] skip
    
    go test -x -a -c testdata/dep_test.go
    stderr '^.*[/\\]compile'$GOEXE'["]? (.* )?regexp .*[/\\]regexp\.go'
    
    -- testdata/dep_test.go --
    package deps
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 19 00:08:30 UTC 2019
    - 328 bytes
    - Viewed (0)
  4. tests/integration/security/testdata/reachability/global-dr.yaml.tmpl

    spec:
      host: "*"
      trafficPolicy:
        tls:
          mode: {{ .TLSMode }}
    ---
    # Apply a local policy to the system namespace to turn this off
    # Otherwise, the eastwest gateway will be impacted
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: "eastwest-opt-out"
    spec:
      exportTo: [.]
      host: "*"
      trafficPolicy:
        loadBalancer:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 474 bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.yaml

    Frank Budinsky <******@****.***> 1697669019 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/eastwest-remote.yaml

    Frank Budinsky <******@****.***> 1697669019 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/eastwest-tlsoption.yaml

    Frank Budinsky <******@****.***> 1697669019 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/eastwest.yaml.golden

    Mike Morris <******@****.***> 1702326113 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. tests/integration/security/testdata/reachability/automtls-passthrough.yaml.tmpl

      host: "*"
      trafficPolicy:
        loadBalancer:
          simple: PASSTHROUGH
    ---
    # Apply a local policy to the system namespace to turn this off
    # Otherwise, the eastwest gateway will be impacted
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: "eastwest-opt-out"
      annotations:
        test-suite: "beta-mtls-on"
    spec:
      exportTo: [.]
      host: "*"
      trafficPolicy:
        loadBalancer:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 530 bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/JvmApplicationProjectInitDescriptor.java

            switch (settings.getTestFramework()) {
                case SPOCK:
                    return "groovy/AppTest";
                case TESTNG:
                    return "testng/AppTest";
                case JUNIT:
                case KOTLINTEST:
                    return "AppTest";
                case JUNIT_JUPITER:
                    return "junitjupiter/AppTest";
                case SCALATEST:
                    return "AppSuite";
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 20:23:37 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top