Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 149 for meaningful (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultPolymorphicDomainObjectContainerTest.groovy

            def second = container.maybeCreate("fred")
    
            then:
            container.size() == 1
            container.findByName("fred") == fred
            first == second
        }
    
        def "throws meaningful exception if it doesn't support creating domain objects without specifying a type"() {
            container = createContainer()
    
            when:
            container.create("fred")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 16K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/BuildThreadFactory.java

    import java.util.concurrent.ThreadFactory;
    import java.util.concurrent.atomic.AtomicInteger;
    
    /**
     * Simple {@link ThreadFactory} implementation that ensures the corresponding threads have a meaningful name.
     */
    public class BuildThreadFactory implements ThreadFactory {
        private final AtomicInteger id = new AtomicInteger();
    
        private static final String PREFIX = "BuilderThread";
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/Closeables.java

       * reading, such as an {@code InputStream}. Unlike with writable resources, there's no chance that
       * a failure that occurs when closing the stream indicates a meaningful problem such as a failure
       * to flush all bytes to the underlying resource.
       *
       * @param inputStream the input stream to be closed, or {@code null} in which case this method
       *     does nothing
       * @since 17.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ThreadFactoryImpl.java

     */
    
    package org.gradle.internal.concurrent;
    
    import javax.annotation.Nullable;
    import java.util.concurrent.ThreadFactory;
    import java.util.concurrent.atomic.AtomicLong;
    
    /**
     * Provides meaningful names to threads created in a thread pool.
     */
    public class ThreadFactoryImpl implements ThreadFactory {
        private final AtomicLong counter = new AtomicLong();
        private final String displayName;
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. src/net/rlimit_unix.go

    // concurrent getaddrinfo calls to less than the permitted number of
    // file descriptors makes that error less likely. We don't bother to
    // apply the same limit to DNS lookups run directly from Go, because
    // there we will return a meaningful "too many open files" error.
    func concurrentThreadsLimit() int {
    	var rlim syscall.Rlimit
    	if err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &rlim); err != nil {
    		return 500
    	}
    	r := rlim.Cur
    	if r > 500 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/Closeables.java

       * reading, such as an {@code InputStream}. Unlike with writable resources, there's no chance that
       * a failure that occurs when closing the stream indicates a meaningful problem such as a failure
       * to flush all bytes to the underlying resource.
       *
       * @param inputStream the input stream to be closed, or {@code null} in which case this method
       *     does nothing
       * @since 17.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionDataRepository.java

     */
    public interface BuildResumptionDataRepository {
        /**
         * Persists any data needed to resume the build at a later point in time, using a new Maven invocation. This method
         * may also decide it is not needed or meaningful to persist such data, and return <code>false</code> to indicate
         * so.
         *
         * @param rootProject The root project that is being built.
         * @param buildResumptionData Information needed to resume the build.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/AbstractXcodeCppProjectIntegrationTest.groovy

        @Requires([
            UnitTestPreconditions.HasXCode,
            UnitTestPreconditions.NotMacOsM1
        ]) // TODO KM: Not sure why error message is different on M1
        @ToBeFixedForConfigurationCache
        def "returns meaningful errors from xcode when component product is unbuildable due to architecture"() {
            useXcodebuildTool()
    
            given:
            makeSingleProject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. .github/pull_request_template.md

           require a JIRA issue. Your pull request should address just this issue, without
           pulling in other changes.
     - [ ] Each commit in the pull request should have a meaningful subject line and body.
     - [ ] Format the pull request title like `[MNG-XXX] SUMMARY`,
           where you replace `MNG-XXX` and `SUMMARY` with the appropriate JIRA issue.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 20 13:14:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/InvalidInstallationWarningReporterTest.groovy

            then:
            isReported * mockLogger.warn(_ as String, location.displayName)
    
            where:
            isValid << [false, true]
            isReported << [1, 0]
        }
    
        def 'reporter logs meaningful message'() {
            given:
            def reporter = new InvalidInstallationWarningReporter(mockLogger)
            def location = InstallationLocation.userDefined(new File("testHome"), "test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top