Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 879 for aranges (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    ----
        validateTaskProperties.getClasses().setFrom(fileCollection)
        validateTaskProperties.getClasspath().setFrom(fileCollection)
    ----
    
    === Potential breaking changes
    
    The following changes were not previously deprecated:
    
    ==== Signing API changes
    Input and output files of `Sign` tasks are now tracked via `Signature.getToSign()` and `Signature.getFile()`, respectively.
    
    ==== Collection properties default to empty collection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            and:
            install.assertInstalled()
            install.exec().out == app.alternateLibraryOutput
        }
    
        @ToBeFixedForConfigurationCache
        def "recompiles binary when header file changes"() {
            given:
            run "installMainExecutable"
            maybeWait()
    
            when:
            headerFile << """
                int unused();
    """
            run "mainExecutable"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/AbstractJavaGroovyCompileAvoidanceIntegrationSpec.groovy

                        }
                    }
                }
            """
        }
    
        def "doesn't recompile when private element of implementation class changes"() {
            given:
            buildFile << """
                project(':b') {
                    dependencies {
                        implementation project(':a')
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/desired_state_of_world_test.go

    	}
    	for i := range pod1.Spec.Volumes {
    		volumeSpec := &volume.Spec{Volume: &pod1.Spec.Volumes[i]}
    		_, err := dsw.AddPodToVolume(pod1Name, pod1, volumeSpec, volumeSpec.Name(), "", nil /* seLinuxContainerContexts */)
    		if err != nil {
    			t.Fatalf("AddPodToVolume failed. Expected: <no error> Actual: <%v>", err)
    		}
    	}
    	for i := range pod2.Spec.Volumes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

         * <p>
         * Note that incremental work can be executed non-incrementally if input changes
         * require it.
         */
        enum ExecutionBehavior {
            /**
             * Work can be executed incrementally, input changes for {@link InputBehavior#PRIMARY} and
             * {@link InputBehavior#INCREMENTAL} properties should be tracked.
             */
            INCREMENTAL,
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyHandler.java

        }
    
        @Override
        public Dependency platform(Object notation) {
            Dependency dependency = create(notation);
            if (dependency instanceof ModuleDependency) {
                // Changes here may require changes in DefaultExternalModuleDependencyVariantSpec
                ModuleDependency moduleDependency = (ModuleDependency) dependency;
                moduleDependency.endorseStrictVersions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 08:14:09 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerIncrementalExportIntegrationTest.groovy

            when:
            run("generateSwiftPmManifest")
    
            then:
            result.assertTaskSkipped(":generateSwiftPmManifest")
        }
    
        @ToBeFixedForConfigurationCache
        def "ignores irrelevant changes to Swift source"() {
            given:
            swiftBuild()
    
            when:
            file("app/src/main/swift/main.swift") << "// changed"
            file("lib/src/main/swift/lib.swift") << "// changed"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    import spock.lang.Ignore
    import spock.lang.Issue
    
    class SmokeContinuousIntegrationTest extends AbstractContinuousIntegrationTest {
    
        def "detects no changes when no files are in the project"() {
            given:
            def markerFile = file("input/marker")
            buildFile << """
                task myTask {
                  def inputFile = file("input/marker")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model.cc

    PYBIND11_MODULE(pywrap_quantize_model, m) {
      // Supports absl::StatusOr<T> type conversions.
      pybind11::google::ImportStatusModule();
      pybind11_protobuf::ImportNativeProtoCasters();
    
      m.def(
          // If the function signature changes, likely its corresponding .pyi type
          // hinting should also change.
          // LINT.IfChange
          "quantize_qat_model",
          [](const absl::string_view src_saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

    class ConfigurationCacheGradlePropertiesIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "invalidates cache when set of Gradle property defining system properties changes"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            settingsFile << """
                println(gradleProp + '!')
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top