Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for Billie (0.2 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryWalkerTest.groovy

                    details.directory == detailsFromJdk7Walker.directory &&
                    (details.directory || details.size == detailsFromJdk7Walker.size)
            }
        }
    
        private static long millisToSeconds(long millis) {
            millis / 1000L
        }
    
        private static generateFilesAndSubDirectories(TestFile parentDir, int fileCount, int dirCount, int maxDepth, int currentDepth, AtomicInteger fileIdGenerator) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

        // 20 percent difference is something where we should always fail
        private static final double HIGH_RELATIVE_MEDIAN_DIFFERENCE = 0.2
        private static final Amount<Duration> MINIMUM_DIFFERENCE_WE_CAN_MEASURE = Duration.millis(10)
    
        final String version
        final MeasuredOperationList results = new MeasuredOperationList()
    
        BaselineVersion(String version) {
            this.version = version
            results.name = "Gradle $version"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/Clock.java

    /**
     * A device for obtaining the current time.
     *
     * @see Time#clock()
     */
    @ServiceScope(Scope.Global.class)
    public interface Clock {
    
        /**
         * The current time in millis.
         */
        long getCurrentTime();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 974 bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java

        }
    
        public void awaitTermination() {
            awaitTermination(0);
        }
    
        public void awaitTermination(final long millis) {
            if (parentThread != null) {
                try {
                    parentThread.join(millis);
                } catch (final InterruptedException e) {
                    logger.warn("Interrupted job at {}", parentThread.getName());
                }
            }
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. testing/performance/docs/performance-bisect.md

    //        "medium"  | 'source file change'    | millis(300)                | 'modules/project5/src/src100_c.c' | this.&changeCSource
            "medium"  | 'header file change'    | millis(140)                | 'modules/project1/src/src50_h.h'  | this.&changeHeader
    //        "medium"  | 'recompile all sources' | millis(1500)               | 'common.gradle'                   | this.&changeArgs
        }
    ...
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. pkg/scheduler/util/pod_resources.go

    const (
    	// DefaultMilliCPURequest defines default milli cpu request number.
    	DefaultMilliCPURequest int64 = 100 // 0.1 core
    	// DefaultMemoryRequest defines default memory request size.
    	DefaultMemoryRequest int64 = 200 * 1024 * 1024 // 200 MB
    )
    
    // GetNonzeroRequests returns the default cpu in milli-cpu and memory in bytes resource requests if none is found or
    // what is provided on the request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 01 06:25:30 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/Operation.java

     */
    package org.gradle.profile;
    
    import java.util.Comparator;
    
    /**
     * A general operation.
     */
    public abstract class Operation {
        /**
         * Returns the total elapsed execution time of this operation in millis.
         */
        abstract long getElapsedTime();
    
        abstract String getDescription();
    
        /**
         * @return comparator that compares operations, slowest first, then alphabetically
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/helpers_linux.go

    	// quota needs to be a minimum of 1ms.
    	if quota < minQuotaPeriod {
    		quota = minQuotaPeriod
    	}
    
    	return
    }
    
    // sharesToMilliCPU converts CpuShares (cpu.shares) to milli-CPU value
    // TODO(vinaykul,InPlacePodVerticalScaling): Address issue that sets min req/limit to 2m/10m before beta
    // See: https://github.com/kubernetes/kubernetes/pull/102884#discussion_r662552642
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/ZipCopyAction.java

         * Moreover, only even seconds can be stored in the zip file. Java 8 uses the upper half of
         * some other long to store the remaining millis while Java 7 doesn't do that. So make sure
         * that your seconds are even.
         * Moreover, parsing happens via `new Date(millis)` in {@link java.util.zip.ZipUtils}#javaToDosTime() so we
         * must use default timezone and locale.
         *
         * The date is 1980 February 1st CET.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 08 14:16:53 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpDebugLogging.kt

        ConsoleHandler().apply {
          level = Level.FINE
          formatter =
            object : SimpleFormatter() {
              override fun format(record: LogRecord) = String.format("[%1\$tF %1\$tT] %2\$s %n", record.millis, record.message)
            }
        }
    
      fun enable(
        loggerClass: String,
        handler: Handler = logHandler(),
      ): Closeable {
        val logger = Logger.getLogger(loggerClass)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top