- Sort Score
- Result 10 results
- Languages All
Results 2361 - 2370 of 3,090 for FALSE (0.05 sec)
-
guava/src/com/google/common/graph/AbstractValueGraph.java
} @Override public final boolean equals(@CheckForNull Object obj) { if (obj == this) { return true; } if (!(obj instanceof ValueGraph)) { return false; } ValueGraph<?, ?> other = (ValueGraph<?, ?>) obj; return isDirected() == other.isDirected() && nodes().equals(other.nodes()) && edgeValueMap(this).equals(edgeValueMap(other)); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 17 13:59:28 UTC 2023 - 4.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMapEntrySet.java
if (object instanceof Entry) { Entry<?, ?> entry = (Entry<?, ?>) object; V value = map().get(entry.getKey()); return value != null && value.equals(entry.getValue()); } return false; } @Override boolean isPartialView() { return map().isPartialView(); } @Override @GwtIncompatible // not used in GWT boolean isHashCodeFast() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 4.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/management/DefaultPluginManagementInjector.java
Plugin managedPlugin = managedPlugins.get(key); if (managedPlugin != null) { element = mergePlugin(element, managedPlugin, false, context); } newPlugins.add(element); } return target.withPlugins(newPlugins); } return target; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/MetadataReader.java
* */ public interface MetadataReader { /** * The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code * true}. If {@code false}, unknown elements will be ignored instead of causing a failure. */ String IS_STRICT = "org.apache.maven.artifact.repository.metadata.io.isStrict"; /** * Reads the metadata from the specified file.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.3K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsReader.java
*/ @Deprecated(since = "4.0.0") public interface SettingsReader { /** * The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code * true}. If {@code false}, unknown elements will be ignored instead of causing a failure. */ String IS_STRICT = "org.apache.maven.settings.io.isStrict"; /** * Reads the settings from the specified file. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/ToolchainsReader.java
*/ @Deprecated(since = "4.0.0") public interface ToolchainsReader { /** * The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code * true}. If {@code false}, unknown elements will be ignored instead of causing a failure. */ String IS_STRICT = "org.apache.maven.toolchains.io.isStrict"; /** * Reads the toolchains from the specified file. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0) -
.github/workflows/contributor-pr.yml
permissions: contents: read runs-on: ubuntu-latest needs: build strategy: matrix: bucket: ${{ fromJson(needs.build.outputs.matrix) }} fail-fast: false steps: - name: git clone uses: actions/checkout@v4 - name: setup java uses: actions/setup-java@v4 with: distribution: temurin java-version: 17
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Oct 11 18:32:33 UTC 2024 - 3.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/DocsTest.kt
}) enum class DocsTestType(val ccEnabled: Boolean, val docsTestName: String, val docsTestDesc: String) { CONFIG_CACHE_ENABLED(true, "ConfigCacheDocsTest", "Docs Test With Config Cache Enabled"), CONFIG_CACHE_DISABLED(false, "DocsTest", "Docs Test"), } class DocsTest( model: CIBuildModel, stage: Stage, os: Os, testJava: JvmCategory, index: Int, docsTestType: DocsTestType,
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 25 07:23:49 UTC 2024 - 4.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/PerformanceTest.kt
} } failureConditions { // We have test-retry to handle the crash in tests javaCrash = false // We want to see the flaky tests for flakiness detection supportTestRetry = (performanceTestBuildSpec.type != PerformanceTestType.flakinessDetection) } if (testProjects.isNotEmpty()) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/relatedquery/admin_relatedquery.jsp
</la:info> <la:errors/> </div> <a role="button" data-toggle="collapse" href="#listSearchForm" aria-expanded="false" aria-controls="listSearchForm"><i class="fas fa-search" aria-hidden="true"></i></a>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Mar 31 05:47:05 UTC 2020 - 7.4K bytes - Viewed (0)