Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 771 for SKIPPED (0.2 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/UnsupportedWithConfigurationCacheExtension.groovy

            if (GradleContextualExecuter.isConfigCache()) {
                if (isAllIterations(annotation.iterationMatchers()) && isEnabledBottomSpec(annotation.bottomSpecs(), { spec.bottomSpec.name == it })) {
                    spec.skipped = true
                } else {
                    spec.features.each { feature ->
                        feature.getFeatureMethod().addInterceptor(new IterationMatchingMethodInterceptor(annotation.iterationMatchers()))
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 08:57:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/SkipTaskWithNoActionsExecuterTest.groovy

            _ * dependency.state >> dependencyState
        }
    
        def skipsTaskWithNoActionsAndMarksUpToDateIfAllItsDependenciesWereSkipped() {
            given:
            task.hasTaskActions() >> false
            dependencyState.skipped >> true
    
            when:
            executor.execute(task, state, executionContext)
    
            then:
            1 * state.setActionable(false)
            1 * state.setOutcome(TaskExecutionOutcome.UP_TO_DATE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 14 07:48:13 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.h

    // be skipped if nullptr is provided.
    bool IsSupportedByNonReplicatedBridge(
        const Graph& graph, const FunctionLibraryDefinition* function_library);
    
    // Checks if a graph or reachable functions in the library have any ops with
    // _tpu_replicate or _xla_compile_device_type=TPU. The function library will be
    // skipped if nullptr is provided.
    
    bool IsSupportedByReplicatedBridge(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 16:33:22 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/workingWithDependencies-iterateArtifacts/tests/iterateResolvedArtifacts.out

    :iterateResolvedArtifacts SKIPPED...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocToolchainIntegrationTest.groovy

            executedAndNotSkipped(":javadoc")
            file("build/docs/javadoc/Lib.html").text.contains("Some API documentation.")
    
            when:
            withInstallations(jdk1, jdk2).run(":javadoc")
            then:
            skipped(":javadoc")
    
            when:
            executer.withArgument("-Ptest.javadoc.version=${jdk2.javaVersion.majorVersion}")
            withInstallations(jdk1, jdk2).run(":javadoc")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tutorial/disableTask/tests/disableTask.out

    > Task :disableMe SKIPPED
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleCompositeBuildGroupedTaskFunctionalTest.groovy

            then:
            def strippedGroupedTaskOutput = result.groupedOutput.strippedOutput
            strippedGroupedTaskOutput.contains(':byeWorld SKIPPED')
            strippedGroupedTaskOutput.contains(':compileJava SKIPPED')
        }
    
        static String javaProject() {
            """
                apply plugin: 'java'
    
                group = 'org.gradle'
                version = '1.0'
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLoggingContainer.java

     *         // set options for log level DEBUG
     *         debug {
     *             events "started", "skipped", "failed"
     *             exceptionFormat "full"
     *         }
     *
     *         // remove standard output/error logging from --info builds
     *         // by assigning only 'failed' and 'skipped' events
     *         info.events = ["failed", "skipped"]
     *     }
     * }
     * </pre>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

            when:
            fixture.runTask()
            then:
            executedAndNotSkipped(fixture.task)
    
            when:
            fixture.changeFirstBean(change)
            fixture.runTask()
            then:
            skipped(fixture.task)
    
            when:
            fixture.changeSecondBean(change)
            fixture.runTask()
            then:
            executedAndNotSkipped(fixture.task)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. pkg/controller/endpointslicemirroring/reconciler.go

    			"Skipped %d invalid IP addresses when mirroring to EndpointSlices", numInvalidAddresses)
    	}
    
    	// Record a separate event if we skipped mirroring due to the number of
    	// addresses exceeding MaxEndpointsPerSubset.
    	if addressesSkipped > numInvalidAddresses {
    		logger.Info("Addresses in Endpoints were skipped due to exceeding MaxEndpointsPerSubset", "skippedAddresses", addressesSkipped, "endpoints", klog.KObj(endpoints))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top