- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 989 for compile (0.1 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidSocketAdapter.kt
/** * Modern reflection based SocketAdapter for Conscrypt class SSLSockets. * * This is used directly for providers where class name is known e.g. the Google Play Provider * but we can't compile directly against it, or in fact reliably know if it is registered and * on classpath. */ open class AndroidSocketAdapter(private val sslSocketClass: Class<in SSLSocket>) : SocketAdapter {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.6K bytes - Viewed (0) -
android/guava/pom.xml
</plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>gradle-module-metadata</id> <phase>compile</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>target/publish</outputDirectory> <resources>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 18:53:31 UTC 2024 - 9.1K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/11-language-change.yml
validations: required: false - type: input id: perf-costs attributes: label: Performance Costs description: "What is the compile time cost? What is the run time cost? " validations: required: false - type: textarea id: prototype attributes: label: "Prototype"
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 08 19:02:29 UTC 2024 - 4.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/AndroidIncompatible.java
* suite()} method with {@code Suppress}. Would {@code FooTest} itself be suppressed, too? * <li>In at least one case, a use of {@code sun.misc.FpUtils}, the test will not even * <i>compile</i> against Android. Now, this might be an artifact of our build system, one * that we could probably work around. Or we could manually strip the test from open-source
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jul 07 15:40:13 UTC 2023 - 3.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableTable.java
(rowComparator == null) ? 0 : rowComparator.compare(cell1.getRowKey(), cell2.getRowKey()); if (rowCompare != 0) { return rowCompare; } return (columnComparator == null) ? 0 : columnComparator.compare(cell1.getColumnKey(), cell2.getColumnKey()); }; sort(cells, comparator); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 7.1K bytes - Viewed (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
} extensions.create<PluginPublishExtension>("pluginPublish", gradlePlugin) tasks.validatePlugins { enableStricterValidation = true } // Remove gradleApi() and gradleTestKit() as we want to compile/run against Gradle modules // TODO consider splitting `java-gradle-plugin` to provide only what's necessary here configurations.all { withDependencies { remove(project.dependencies.gradleApi())
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 08 14:54:27 UTC 2024 - 6.4K bytes - Viewed (0) -
.github/workflows/contributor-pr.yml
# Enable debug for the `gradle-build-action` cache operations GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true permissions: {} jobs: build: name: "Compile All" permissions: contents: read runs-on: ubuntu-latest steps: - name: git clone uses: actions/checkout@v4 - id: setup-matrix
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Oct 11 18:32:33 UTC 2024 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
if (value == null) { return null; } final StringBuffer tunedText = new StringBuffer(value.length()); final Pattern pattern = Pattern.compile("(\\$\\{([\\w\\.]+)\\})"); final Matcher matcher = pattern.matcher(value); while (matcher.find()) { final String key = matcher.group(2); String replacement = System.getProperty(key);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 08:52:32 UTC 2024 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
} protected void addFessCustomSystemProperties(final List<String> cmdList, final String regex) { if (StringUtil.isNotBlank(regex)) { final Pattern pattern = Pattern.compile(regex); System.getProperties().keySet().stream().filter(k -> k != null && pattern.matcher(k.toString()).matches()) .forEach(k -> addSystemProperty(cmdList, k.toString(), null, null)); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 7.7K bytes - Viewed (0) -
ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc
# See https://docs.bazel.build/versions/main/skylark/performance.html#performance-profiling build --profile=/tf/pkg/profile.json.gz # Use the rebuilt gcc toolchain to compile for manylinux2014 build --crosstool_top="@ml2014_clang_aarch64_config_aarch64//crosstool:toolchain" build --copt="-mtune=generic" --copt="-march=armv8-a" --copt="-O3" # Test-related settings below this point.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Jul 12 20:16:57 UTC 2024 - 6.2K bytes - Viewed (0)