Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,165 for ulong (0.04 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ProblemProgressEventCrossVersionTest.groovy

            }
    
            where:
            detailsConfig              | expectedDetails | documentationConfig                         | expecteDocumentation
            '.details("long message")' | "long message"  | '.documentedAt("https://docs.example.org")' | 'https://docs.example.org'
            ''                         | null            | ''                                          | null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/propertyInit_Long.txt

    expression: 42
    constant: 42
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 52 bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/problems/DefaultProblemLocationAnalyzerTest.groovy

                indexOfStackFrame(_, _) >> { start, predicate -> stack.findIndexOf(start) { predicate.test(it, StackTraceRelevance.USER_CODE) } }
            }
            def longDisplayName = Describables.of("<long source>")
            def shortDisplayName = Describables.of("<short source>")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. architecture/runtimes.md

    - CLI client. This is the `gradle` or `gradlew` command, and is responsible for locating, starting and interacting with the Gradle daemon, potentially downloading the Gradle distribution. 
    - Tooling API client. This a library that is embedded into applications, such as IDEs or CI agents, that allows them to act as a Gradle client.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfo.java

         */
        int getNumberOfBuilds();
    
        /**
         * @return The time (milliseconds) since epoch at which the daemon was started
         */
        long getStartedAt();
    
        /**
         * @return The idle timeout (milliseconds) of the daemon
         */
        long getIdleTimeout();
    
        /**
         * @return The number of running daemons
         */
        int getNumberOfRunningDaemons();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/RunBuildAction.java

        private final long startTime;
        private final BuildActionParameters buildActionParameters;
        private final ServiceRegistry sharedServices;
        private final Stoppable stoppable;
    
        public RunBuildAction(
            BuildActionExecutor<BuildActionParameters, ClientBuildRequestContext> executor, StartParameterInternal startParameter, GradleLauncherMetaData clientMetaData, long startTime,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/cache/DefaultCacheConfigurations.java

            private final String name;
            private final Property<Long> removeUnusedEntriesOlderThan;
    
            @Inject
            public DefaultCacheResourceConfiguration(PropertyHost propertyHost, String name) {
                this.name = name;
                this.removeUnusedEntriesOlderThan = new ContextualErrorMessageProperty<>(propertyHost, Long.class, "removeUnusedEntriesOlderThan");
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/AbstractDaemonFixture.groovy

            logContains(0, searchString)
        }
    
        @Override
        boolean logContains(long fromLine, String searchString) {
            daemonLog.lines().withCloseable { lines ->
                lines.skip(fromLine).anyMatch { it.contains(searchString) }
            }
        }
    
        @Override
        long getLogLineCount() {
            return daemonLog.lines().withCloseable { lines -> lines.count() }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                undefined()
    
            override fun readBinary(): ByteArray =
                undefined()
    
            override fun skipBytes(count: Long): Unit =
                undefined()
    
            override fun readLong(): Long =
                undefined()
    
            override fun readSmallLong(): Long =
                undefined()
    
            override fun getInputStream(): InputStream =
                undefined()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        @Deprecated("Use 'int' instead.", replaceWith = ReplaceWith("int"))
        public val INT: KaType
            get() = int
    
        public abstract val long: KaType
    
        @Deprecated("Use 'long' instead.", replaceWith = ReplaceWith("long"))
        public val LONG: KaType
            get() = long
    
        public abstract val short: KaType
    
        @Deprecated("Use 'short' instead.", replaceWith = ReplaceWith("short"))
        public val SHORT: KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top