Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,519 for setOp (0.06 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

    import org.gradle.util.GradleVersion
    
    @ToolingApiVersion('>=7.6')
    @TargetGradleVersion('>=7.6')
    class SystemPropertyPropagationCrossVersionTest extends ToolingApiSpecification {
    
        OutputStream out
    
        def setup() {
            out = new ByteArrayOutputStream()
            System.setProperty('mySystemProperty', 'defined in the client JVM')
            buildFile << '''
                tasks.register('printSystemProperty') {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExcludeIntegrationTest.groovy

     */
    
    package org.gradle.integtests.composite
    
    import spock.lang.Issue
    
    class CompositeBuildTaskExcludeIntegrationTest extends AbstractCompositeBuildTaskExecutionIntegrationTest {
    
        def setup() {
            createDirs("sub", "included", "included/sub")
            settingsFile << """
                rootProject.name = 'root'
                include('sub')
                includeBuild('included')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 12:16:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenGcsRepoErrorsIntegrationTest.groovy

        String artifactVersion = "1.85"
        MavenGcsModule module
    
        @Override
        String getRepositoryPath() {
            return '/maven/release/'
        }
    
        def setup() {
            module = mavenGcsRepo.module("org.gradle", "test", artifactVersion)
            buildFile << """
    configurations { compile }
    
    dependencies{
        compile 'org.gradle:test:$artifactVersion'
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3SnapshotRepoIntegrationTest.groovy

        String artifactVersion = "1.45-SNAPSHOT"
        MavenS3Module module
    
        def setup() {
            module = getMavenS3Repo().module("org.gradle", "test", artifactVersion)
        }
    
        def "resolves a maven snapshot module stored in S3"() {
            setup:
            module.publish()
    
            buildFile << mavenAwsRepoDsl()
            buildFile << """
    configurations { compile }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. tests/integration/telemetry/tracing/zipkin/main_test.go

    	"istio.io/istio/tests/integration/telemetry/tracing"
    )
    
    func TestMain(m *testing.M) {
    	framework.NewSuite(m).
    		Label(label.CustomSetup).
    		Setup(istio.Setup(tracing.GetIstioInstance(), setupConfig)).
    		Setup(tracing.TestSetup).
    		Run()
    }
    
    func setupConfig(ctx resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	cfg.Values["meshConfig.enableTracing"] = "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderDependenciesTest.groovy

    import spock.lang.Issue
    
    class EclipseModelBuilderDependenciesTest extends AbstractProjectBuilderSpec {
        Project child1
        Project child2
        Project child3
        Project child4
        Project child5
    
        def setup() {
            child1 = ProjectBuilder.builder().withName("child1").withParent(project).build()
            child2 = ProjectBuilder.builder().withName("child2").withParent(project).build()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/jmh/java/org/gradle/api/internal/provider/EvaluationContextPerfTest.java

        private final PropertyHost host = producer -> null;
    
        @SuppressWarnings("FieldMayBeFinal")
        private String value = "value";
    
        private Property<String> property;
    
        @Setup
        public void setUp() {
            property = new DefaultProperty<>(host, String.class);
            property.set(new TransformBackedProvider<>(String.class, new DefaultProvider<>(() -> value), v -> v + v));
        }
    
        @Benchmark
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:31 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/DisabledTaskExecutionOnIncludedBuildsCrossVersionSpec.groovy

        @TargetGradleVersion('>=3.3 <6.8')
        def "Can't launch tasks from included builds via launchables obtained from GradleProject model"() {
            setup:
            singleProjectBuildInRootFolder("root") {
                settingsFile << """
                    includeBuild 'includedBuild'
                """
            }
            singleProjectBuildInSubfolder("includedBuild")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. manifests/charts/install-OpenShift.md

    # Installing Istio on OpenShift using Helm
    
    > Note: Be aware of the [platform setup required for OpenShift](https://istio.io/latest/docs/setup/platform-setup/openshift/) when installing Istio.
    
    To install with Helm, you must first create the namespace that you wish to install in if the namespace does not exist already. The default namespace used is `istio-system` and can be created as follows:
    
    ```console
    kubectl create namespace istio-system
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:01:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. .github/workflows/publish.yml

              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          - name: Set up Python
            uses: actions/setup-python@v5
            with:
              python-version: "3.10"
              # Issue ref: https://github.com/actions/setup-python/issues/436
              # cache: "pip"
              # cache-dependency-path: pyproject.toml
          - name: Install build dependencies
            run: pip install build
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 30 06:38:13 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top