- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 1,914 for sources (0.14 sec)
-
ci/official/containers/ml_build/Dockerfile
################################################################################ # Install devtoolset build dependencies COPY setup.sources.sh /setup.sources.sh COPY setup.packages.sh /setup.packages.sh COPY builder.packages.txt /builder.packages.txt RUN /setup.sources.sh && /setup.packages.sh /builder.packages.txt # Install devtoolset-9 in /dt9 with glibc 2.17 and libstdc++ 4.8, for building
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 30 00:07:17 UTC 2024 - 3.8K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/UserGuideTransformTaskTest.groovy
given: String content = TextUtil.normaliseLineSeparators( """ sources { cpp { lib library: "hello" } }""") when: def actual = UserGuideTransformTask.normalise(content) then: actual == """sources { cpp { lib library: "hello" } }""" }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jul 27 19:28:51 UTC 2021 - 1.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java
String VALIDATE = "validate"; String SOURCES = "sources"; String RESOURCES = "resources"; String COMPILE = "compile"; String READY = "ready"; String PACKAGE = "package"; String VERIFY = "verify"; String UNIT_TEST = "unit-test"; String TEST_SOURCES = "test-sources"; String TEST_RESOURCES = "test-resources"; String TEST_COMPILE = "test-compile";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Sep 24 07:54:24 UTC 2024 - 5.3K bytes - Viewed (0) -
okhttp/build.gradle.kts
} val generateIdnaMappingTable by tasks.creating(JavaExec::class.java) { outputs.dir("$buildDir/generated/sources/idnaMappingTable") mainClass.set("okhttp3.internal.idn.GenerateIdnaMappingTableCode") args("$buildDir/generated/sources/idnaMappingTable") classpath = generateIdnaMappingTableConfiguration } kotlin { sourceSets { getByName("main") {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Jan 04 05:32:07 UTC 2024 - 5.6K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/tasks/IncubatingApiReportTask.kt
abstract val releasedVersionsFile: RegularFileProperty @get:Input abstract val title: Property<String> @get:InputFiles @get:PathSensitive(PathSensitivity.RELATIVE) abstract val sources: ConfigurableFileCollection @get:OutputFile abstract val htmlReportFile: RegularFileProperty @get:OutputFile abstract val textReportFile: RegularFileProperty @get:Inject
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jan 30 09:32:11 UTC 2023 - 1.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultTransformerContextBuilder.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.1K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt
/** Returns the unbuffered stream with the value for [index]. */ fun getSource(index: Int): Source = sources[index] /** Returns the byte length of the value for [index]. */ fun getLength(index: Int): Long = lengths[index] override fun close() { for (source in sources) { source.closeQuietly() } } } /** Edits the values for an entry. */
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 34.7K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/SourcesRepository.kt
openKotlinCompilationUnitsByRoot.clear() if (errors.isNotEmpty()) { throw Exception("Sources repository did not close cleanly").apply { errors.forEach(this::addSuppressed) } } } /** * @return the source file and it's source root */ fun sourceFileAndSourceRootFor(sourceFilePath: String): Pair<File, File> =
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:24 UTC 2024 - 4K bytes - Viewed (0) -
manifests/charts/base/Chart.yaml
# This version is never actually shipped. istio/release-builder will replace it at build-time # with the appropriate version version: 1.0.0 appVersion: 1.0.0 description: Helm chart for deploying Istio cluster resources and CRDs keywords: - istio sources: - https://github.com/istio/istio
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon May 20 18:29:34 UTC 2024 - 378 bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java
* Builds the effective settings of the specified settings sources. * * @return the result of the settings building, never {@code null} * @throws SettingsBuilderException if the effective settings could not be built */ @Nonnull default SettingsBuilderResult build( @Nonnull Session session, @Nonnull Source installationSettingsSource, @Nonnull Source userSettingsSource) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 22 14:47:43 UTC 2024 - 5.1K bytes - Viewed (0)