Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,044 for Avery (0.04 sec)

  1. android/guava/src/com/google/common/util/concurrent/Striped.java

        return Collections.unmodifiableList(asStripes);
      }
    
      // Static factories
    
      /**
       * Creates a {@code Striped<L>} with eagerly initialized, strongly referenced locks. Every lock is
       * obtained from the passed supplier.
       *
       * @param stripes the minimum number of stripes (locks) required
       * @param supplier a {@code Supplier<L>} object to obtain locks from
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/test/groovy/gradlebuild/performance/generator/DependencyGeneratorTest.groovy

            then:
            projectDependencies.size() == numberOfProjects
            projectDependencies.keySet().every { it >= 1 && it <= numberOfProjects }
            projectDependencies.values().every { dependencyList -> dependencyList.every { it >= 1 && it <= numberOfProjects } }
            projectDependencies == projectDependencies2
    
            where:
            num  | distribution
            1    | [1]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/ReleaseFeaturesTest.groovy

            when:
            def featuresText = featuresFile.text
    
            then:
            def lines = featuresText.readLines()
            lines.size() <= 10
            lines.every { it.startsWith(" - ") || it.startsWith("   - ")}
            lines.every { it.length() <= 80 }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTrackerFactory.kt

     * message bus adds too much overhead.
     */
    public abstract class KotlinModificationTrackerFactory : KotlinPlatformComponent {
        /**
         * Creates an out-of-block modification tracker which is incremented every time there is an out-of-block change in some source project
         * module.
         *
         * ### Out-of-block Modification (OOBM)
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/cache/Cleanup.java

     *
     * @since 8.0
     */
    @HasInternalProtocol
    @Incubating
    public interface Cleanup {
        /**
         * Perform cache cleanup after every build session.
         */
        Cleanup ALWAYS = new DefaultCleanup(CleanupFrequency.ALWAYS);
    
        /**
         * Perform cache cleanup periodically (default is only once every 24 hours).
         */
        Cleanup DEFAULT = new DefaultCleanup(CleanupFrequency.DAILY);
    
        /**
         * Never perform cache cleanup.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 30 13:49:13 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/cpp/basic/groovy/build.gradle

            implementation project(':common')
        }
    }
    // end::cpp-dependency-mgmt[]
    
    // tag::cpp-compiler-options-all-variants[]
    tasks.withType(CppCompile).configureEach {
        // Define a preprocessor macro for every binary
        macros.put("NDEBUG", null)
    
        // Define a compiler options
        compilerArgs.add '-W3'
    
        // Define toolchain-specific compiler options
        compilerArgs.addAll toolChain.map { toolChain ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/swift/basic/kotlin/build.gradle.kts

        // Define a preprocessor macro for every binary
        macros.add("NDEBUG")
    
        // Define a compiler options
        compilerArgs.add("-O")
    }
    // end::swift-compiler-options-all-variants[]
    
    // tag::swift-compiler-options-per-variants[]
    application {
        binaries.configureEach(SwiftStaticLibrary::class.java) {
            // Define a preprocessor macro for every binary
            compileTask.get().macros.add("NDEBUG")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/sync/oncefunc.go

    package sync
    
    // OnceFunc returns a function that invokes f only once. The returned function
    // may be called concurrently.
    //
    // If f panics, the returned function will panic with the same value on every call.
    func OnceFunc(f func()) func() {
    	var (
    		once  Once
    		valid bool
    		p     any
    	)
    	// Construct the inner closure just once to reduce costs on the fast path.
    	g := func() {
    		defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:31:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/text/StyledTableTest.groovy

            given:
            def table = new StyledTable(
                "",
                ["Very Long"],
                [
                    new StyledTable.Row(["foo"], StyledTextOutput.Style.Normal)
                ]
            )
    
            expect:
            StyledTableUtil.toString(table) == """
                | Very Long |
                |-----------|
                | foo       |
            """.stripIndent(true).trim()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 25 00:22:38 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/cpp/basic/kotlin/build.gradle.kts

        }
    }
    // end::cpp-dependency-mgmt[]
    
    // tag::cpp-compiler-options-all-variants[]
    tasks.withType(CppCompile::class.java).configureEach {
        // Define a preprocessor macro for every binary
        macros.put("NDEBUG", null)
    
        // Define a compiler options
        compilerArgs.add("-W3")
    
        // Define toolchain-specific compiler options
        compilerArgs.addAll(toolChain.map { toolChain ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top