Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for modularity (0.14 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

     */
    @NonNullApi
    @CacheableTask
    public abstract class Test extends AbstractTestTask implements JavaForkOptions, PatternFilterable {
    
        private final JavaForkOptions forkOptions;
        private final ModularitySpec modularity;
        private final Property<JavaLauncher> javaLauncher;
    
        private FileCollection testClassesDirs;
        private final PatternFilterable patternSet;
        private FileCollection classpath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  2. manifests/charts/README.md

    Istio installer is a modular, 'a-la-carte' installer for Istio. It is based on a
    fork of the Istio helm templates, refactored to increase modularity and isolation.
    
    Goals:
    - Improve upgrade experience: users should be able to gradually roll upgrades, with proper
    canary deployments for Istio components. It should be possible to deploy a new version while keeping the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/Striped64.java

      /**
       * Handles cases of updates involving initialization, resizing, creating new Cells, and/or
       * contention. See above for explanation. This method suffers the usual non-modularity problems of
       * optimistic retry code, relying on rechecked sets of reads.
       *
       * @param x the value
       * @param hc the hash code holder
       * @param wasUncontended false if CAS failed before call
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/Striped64.java

      /**
       * Handles cases of updates involving initialization, resizing, creating new Cells, and/or
       * contention. See above for explanation. This method suffers the usual non-modularity problems of
       * optimistic retry code, relying on rechecked sets of reads.
       *
       * @param x the value
       * @param hc the hash code holder
       * @param wasUncontended false if CAS failed before call
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/Striped64.java

      /**
       * Handles cases of updates involving initialization, resizing, creating new Cells, and/or
       * contention. See above for explanation. This method suffers the usual non-modularity problems of
       * optimistic retry code, relying on rechecked sets of reads.
       *
       * @param x the value
       * @param hc the hash code holder
       * @param wasUncontended false if CAS failed before call
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/Striped64.java

      /**
       * Handles cases of updates involving initialization, resizing, creating new Cells, and/or
       * contention. See above for explanation. This method suffers the usual non-modularity problems of
       * optimistic retry code, relying on rechecked sets of reads.
       *
       * @param x the value
       * @param hc the hash code holder
       * @param wasUncontended false if CAS failed before call
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    Gradle will automatically put a Jar of your dependencies on the module path, instead of the classpath, if these three things are true:
    
    * `java.modularity.inferModulePath` is *not* turned off
    * We are actually building a module (as opposed to a traditional library) which we expressed by adding the `module-info.java` file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    Alternatively, you can still run tasks in builds like this by invoking the build from the `master` directory only using a
    <<intro_multi_project_builds.adoc#sec:executing_tasks_by_fully_qualified_name,fully qualified path to the task>>.
    
    ==== `modularity.inferModulePath` defaults to 'true'
    
    <<java_library_plugin.adoc#sec:java_library_modular,Compiling>>,
    <<java_testing.adoc#sec:java_testing_modular,testing>> and
    <<application_plugin.adoc#sec:application_modular,executing>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

        def "incremental compilation after failure works with modules #description"() {
            file("impl/build.gradle") << """
                def layout = project.layout
                tasks.compileJava {
                    modularity.inferModulePath = $inferModulePath
                    options.compilerArgs.addAll($compileArgs)
                    doFirst {
                        $doFirst
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    The Requires field specifies a list of analyses upon which
    this one depends and whose results it may access, and it constrains the
    order in which a driver may run analyses.
    The FactTypes field is discussed in the section on Modularity.
    The analysis package provides a Validate function to perform basic
    sanity checks on an Analyzer, such as that its Requires graph is
    acyclic, its fact and result types are unique, and so on.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top