Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for then (0.1 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/ProgressLogEventGeneratorTest.groovy

    /*
     * Copyright 2016 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultMutableVersionConstraintTest.groovy

    /*
     * Copyright 2017 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

        outputFile = file('dest.txt')
    }
    '''
    
            when:
            succeeds "a", "-Ptext=text"
    
            then:
            result.assertTasksNotSkipped(":a")
    
            when:
            succeeds "a", "-Ptext=text"
    
            then:
            result.assertTasksSkipped(":a")
    
            when:
            succeeds "a", "-Ptext=newtext"
    
            then:
            result.assertTasksNotSkipped(":a")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectSetSpec.groovy

            ConfigureUtil.configure({ child.beanProperty = 'value 1' }, container)
    
            then:
            bean.beanProperty == 'value 1'
    
            when:
            ConfigureUtil.configure({ child { beanProperty = 'value 2' } }, container)
    
            then:
            bean.beanProperty == 'value 2'
    
            def withType = new Bean("withType");
            container.add(withType);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/FileBackedObjectHolderTest.groovy

            when:
            cache.set "a"
    
            then:
            1 * serializer.write(_, "a")
    
            when: // same value is not written
            def r = cache.maybeUpdate { it }
    
            then:
            r == "a"
            1 * serializer.read(_)
    
            and:
            0 * serializer.write(_, _)
    
            when: // different value is written back
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/ScalaApplicationInitIntegrationTest.groovy

            run('init', '--type', 'scala-application', '--dsl', scriptDsl.id, '--incubating', '--java-version', JavaVersion.current().majorVersion)
    
            then:
            gradlePropertiesGenerated()
    
            when:
            run("build")
    
            then:
            assertTestPassed("org.example.AppSuite", "App has a greeting")
    
            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
    - 5.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

                    }
                """
    
            then:
            succeeds installApp
            install.exec().out == "hello"
    
            when:
            succeeds installApp
    
            then:
            allSkipped()
    
            when:
            appObjects.snapshot()
            libObjects.snapshot()
    
            header1 << """// some extra stuff"""
    
            then:
            succeeds installApp
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  8. ci/official/utilities/setup_macos.sh

    fi
    set -x
    
    # When cross-compiling with RBE, we need to copy the macOS sysroot to be
    # inside the TensorFlow root directory. We then define them as a filegroup
    # target inside "tensorflow/tools/toolchains/cross_compile/cc" so that Bazel
    # can register it as an input to compile/link actions and send it to the remote
    # VMs when needed.
    # TODO(b/316932689): Avoid copying and replace with a local repository rule.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            when:
            run(":api:build")
    
            then:
            fixture.assertProjectsConfigured(":", ":api")
    
            when:
            inDirectory("impl")
            run(":api:build")
    
            then:
            fixture.assertProjectsConfigured(":", ":api")
    
            when:
            run(":impl:build")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuterTest.groovy

            then:
            1 * action1.clearInputChanges()
            then:
            1 * asyncWorkTracker.waitForCompletion(_, RELEASE_AND_REACQUIRE_PROJECT_LOCKS)
            then:
            1 * standardOutputCapture.stop()
            then:
            1 * standardOutputCapture.start()
            then:
            1 * buildOperationRunnerForTaskExecution.run(_ as RunnableBuildOperation) >> { args -> args[0].run(Stub(BuildOperationContext)) }
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top