Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 899 for anotherOk (0.31 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolvedVariantResult.java

         * The capabilities provided by this variant
         *
         * @since 5.3
         */
        List<Capability> getCapabilities();
    
        /**
         * If present, this means that this variant is a bridge to another variant
         * found in another module. This corresponds to variants which are marked
         * as "available-at" in Gradle Module Metadata.
         *
         * @return the external variant, if any
         * @since 6.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 00:34:16 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonConnection.java

         * <li>When the client connection disconnects unexpectedly.</li>
         * <li>When the connection is closed using {@link #stop()}.</li>
         * </ul>
         *
         * Note: the end of input may be signalled from another thread before this method returns.
         *
         * @param handler the handler. Use null to remove the current handler.
         */
        void onStdin(@Nullable StdinHandler handler);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/bootstrap/DaemonGreeterTest.groovy

            def address = new MultiChoiceAddress(UUID.randomUUID(), 123, [])
    
            def outputStream = new ByteArrayOutputStream()
            def printStream = new PrintStream(outputStream)
            printStream.print("""hey joe!
    another line of output...
    """)
    
            new DaemonStartupCommunication().printDaemonStarted(printStream, 12, "uid", address, new File("12.log"))
            def output = new String(outputStream.toByteArray())
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/VerificationException.java

    import org.gradle.api.GradleException;
    import org.gradle.api.Incubating;
    
    /**
     * Signals that a task has failed in a manner which does not prevent consumers of that task's output from running.
     *
     * A task can depend upon another task's outcome (PASS vs. FAIL), outputs (the files they produce) or both. A verification
     * failure represents the case where a task has a failed outcome, but has still produced valid output files for consumption.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 18:24:23 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. pkg/volume/metrics_cached.go

    var _ MetricsProvider = &cachedMetrics{}
    
    // cachedMetrics represents a MetricsProvider that wraps another provider and
    // caches the result.
    type cachedMetrics struct {
    	wrapped       MetricsProvider
    	resultError   error
    	resultMetrics *Metrics
    	once          cacheOnce
    }
    
    // NewCachedMetrics creates a new cachedMetrics wrapping another
    // MetricsProvider and caching the results.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java

                                    + "Detected that one of the modules of this multi-module project uses another module as "
                                    + "plugin extension which still needed to be built. This is not possible within the same "
                                    + "reactor build. Another project collection strategy will be executed as result.",
                            System.lineSeparator());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/JvmInstallationProblemReporterTest.groovy

            problemReporter.reportProblemIfNeeded(logger, InstallationLocation.userDefined(location, "source"), "another message")
            then:
            1 * logger.log(LogLevel.WARN, "message")
            1 * logger.log(LogLevel.WARN, "another message")
        }
    
        def "reports problems with auto-detected installations at INFO"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. operator/pkg/object/testdata/empty.yaml

    # comments
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 32 bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/fingerprint/classpath/impl/DefaultClasspathFingerprinterTest.groovy

                }
            }.zipTo(zipFile)
    
            def zipFile2 = file('another-library.jar')
            file('anotherZipContents').create {
                file('thirdFile.txt').text = "third file"
                file('forthFile.txt').text = "forth file"
                subdir {
                    file('someEvenOtherFile.log').text = "another file in subdir"
                }
            }.zipTo(zipFile2)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. testing/internal-testing/src/test/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpecTest.groovy

            e.message == "Timeout waiting for instant 'unknown' to be defined by another thread."
    
            when:
            async {
                thread.blockUntil.unknown
            }
    
            then:
            e = thrown()
            e.message == "Timeout waiting for instant 'unknown' to be defined by another thread."
    
            when:
            start {
                thread.blockUntil.unknown
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top