- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 703 for compiled (0.08 sec)
-
guava-tests/test/com/google/common/base/StandardSystemPropertyTest.java
for (StandardSystemProperty property : StandardSystemProperty.values()) { // Even though the contract in System.getProperties() specifies that a value will exist for // all of the listed keys, for some reason the "java.compiler" key returns null in some JVMs. if (property == JAVA_COMPILER) { continue; } // Removed in Java 9:
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 10 08:40:05 UTC 2023 - 2.4K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractSuperClassChangesRule.groovy
super(params) final List<String> publicApiPatterns = (List<String>)params['publicApiPatterns']; this.publicApiPatterns = publicApiPatterns.collect { Pattern.compile(it) } } Violation maybeViolation(final JApiCompatibility member) { if (!(member instanceof JApiClass)) { return null } if (!changed(member)) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 06 19:15:15 UTC 2022 - 2.2K bytes - Viewed (0) -
fess-crawler-lasta/pom.xml
<artifactId>fess-crawler-parent</artifactId> <version>15.0.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Mon Jul 29 03:48:55 UTC 2024 - 2.9K bytes - Viewed (0) -
.github/bot_config.yml
# limitations under the License. # ============================================================================ # A list of assignees assignees: - tilakrayal - Venkat6871 # A list of assignees for compiler folder compiler_assignees: - joker-eph - sanjoy # filesystem path filesystem_path: - tensorflow/c/experimental/filesystem # security path security_path: - tensorflow/security # words checklist
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Jul 15 05:00:54 UTC 2024 - 4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/MultilineMessageHelper.java
*/ public class MultilineMessageHelper { private static final int DEFAULT_MAX_SIZE = 65; private static final char BOX_CHAR = '*'; private static final Pattern S_FILTER = Pattern.compile("\\s+"); public static String separatorLine() { StringBuilder sb = new StringBuilder(DEFAULT_MAX_SIZE); repeat(sb, '*', DEFAULT_MAX_SIZE); return sb.toString(); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeResolver.java
// There is no contract one way or another as long as isSubtypeOf() works as expected. combined.addAll(asList(typeParam.getBounds())); if (combined.size() > 1) { // Object is implicit and only useful if it's the only bound. combined.remove(Object.class); } return super.captureAsTypeVariable(combined.toArray(new Type[0])); } }; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 10 19:45:10 UTC 2022 - 24.2K bytes - Viewed (0) -
ci/official/utilities/code_check_full.bats
# grep patterns for packages whose dependencies can be ignored cat > $BATS_TEST_TMPDIR/ignore_deps_for_these_packages <<EOF //tensorflow/lite //tensorflow/compiler/mlir/lite //tensorflow/compiler/mlir/tfrt //tensorflow/core/runtime_fallback //tensorflow/core/tfrt //tensorflow/python/kernel_tests/signal //tensorflow/examples //tensorflow/tools/android //tensorflow/python/eager/benchmarks
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 23 18:48:35 UTC 2024 - 13.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java
return directive; } } return null; } public void addDirective(final Directive directive) { directiveMap.put(Pattern.compile(directive.getUserAgent().replace("*", ".*"), Pattern.CASE_INSENSITIVE), directive); } public void addSitemap(final String url) { sitemapList.add(url); } public String[] getSitemaps() {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 4.8K bytes - Viewed (0) -
build-logic-commons/build-platform/build.gradle.kts
api("me.champeau.jmh:jmh-gradle-plugin:0.7.2") api("org.asciidoctor:asciidoctor-gradle-jvm:4.0.2") api("org.jetbrains.kotlin:kotlin-gradle-plugin") { version { strictly(kotlinVersion) } } api(kotlin("compiler-embeddable")) { version { strictly(kotlinVersion) } } api("org.jlleitschuh.gradle:ktlint-gradle:10.3.0") api("com.autonomousapps:dependency-analysis-gradle-plugin:1.33.0")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 21:53:00 UTC 2024 - 4.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Dependency.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 2.8K bytes - Viewed (0)