Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 132 for isIsolated (0.17 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/isolated/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:17:38 UTC 2023
    - 682 bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Workers allow running pieces of work in the background, either
     * in-process in isolated classloaders or out-of-process in reusable
     * daemons.
     *
     * @since 3.5
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 817 bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/FailingBuildAction.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.isolated;
    
    import org.gradle.internal.cc.impl.fixtures.SomeToolingModel;
    import org.gradle.tooling.BuildAction;
    import org.gradle.tooling.BuildController;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_agent.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package validation
    
    import (
    	telemetry "istio.io/api/telemetry/v1alpha1"
    )
    
    // NOP validation that isolated `go-cel` package for istio-agent binary
    func validateTelemetryFilter(filter *telemetry.AccessLogging_Filter) error {
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 18:02:37 UTC 2022
    - 860 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/AbstractIsolatedProjectsToolingApiIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.isolated
    
    import org.gradle.internal.cc.impl.fixtures.ToolingApiBackedGradleExecuter
    import org.gradle.internal.cc.impl.fixtures.ToolingApiSpec
    import org.gradle.integtests.fixtures.executer.GradleExecuter
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsJavaIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.isolated
    
    class IsolatedProjectsJavaIntegrationTest extends AbstractIsolatedProjectsIntegrationTest {
        def "can build library with dependency on another library"() {
            settingsFile << """
                include("a")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/main/java/org/gradle/workers/ClassLoaderWorkerSpec.java

     * limitations under the License.
     */
    
    package org.gradle.workers;
    
    import org.gradle.api.file.ConfigurableFileCollection;
    
    /**
     * A worker spec providing the requirements of an isolated classpath.
     *
     * @since 5.6
     */
    public interface ClassLoaderWorkerSpec extends WorkerSpec {
        /**
         * Gets the classpath associated with the worker.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedForIsolatedProjectsRule.groovy

            if (GradleContextualExecuter.isNotIsolatedProjects() || annotation == null) {
                return base
            }
    
            return new ExpectingFailureRuleStatement(base, "Isolated Projects")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:04:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginCheckInService.java

        public static final String UNSUPPORTED_PLUGIN_DUE_TO_ISOLATED_PROJECTS_MESSAGE = "Gradle Enterprise plugin has been disabled as it is incompatible with the isolated projects feature";
    
        // Gradle versions 9+ are not compatible Develocity plugin < 3.13.1
        public static final VersionNumber MINIMUM_SUPPORTED_PLUGIN_VERSION_SINCE_GRADLE_9 = VersionNumber.parse("3.13.1");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 13:28:46 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/buildtree/DefaultBuildTreeLifecycleControllerTest.groovy

            and:
            1 * finishExecutor.finishBuildTree([]) >> reportableFailure
        }
    
        def "runs action after running tasks when task execution is requested and isolated projects disabled"() {
            def action = Mock(BuildTreeModelAction)
            buildModelParameters.isIsolatedProjects() >> false
            startParameter.getTaskRequests() >> [new DefaultTaskExecutionRequest(["tasks"])]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 10:38:23 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top