- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 2,695 for FALSE (0.02 sec)
-
compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/FileSizeFormat.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.5K bytes - Viewed (0) -
internal/lsync/lrwmutex.go
func (lm *LRWMutex) RLock() { const isWriteLock = false lm.lockLoop(context.Background(), lm.id, lm.source, 1<<63-1, isWriteLock) } // GetRLock tries to get a read lock on lm before the timeout occurs. func (lm *LRWMutex) GetRLock(ctx context.Context, id string, source string, timeout time.Duration) (locked bool) { const isWriteLock = false return lm.lockLoop(ctx, id, source, timeout, isWriteLock) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jan 02 17:15:06 UTC 2022 - 4.8K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/StringUtilTest.java
assertEquals("3", false, StringUtil.isBlank("a")); assertEquals("4", false, StringUtil.isBlank(" a ")); } /** * @throws Exception */ @Test public void testIsNotBlank() throws Exception { assertEquals("1", false, StringUtil.isNotBlank(" ")); assertEquals("2", false, StringUtil.isNotBlank(""));
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 12K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
} else { boolean isBatchMode = !mavenOptions.forceInteractive().orElse(false) && mavenOptions.nonInteractive().orElse(false); if (isBatchMode || mavenOptions.logFile().isPresent()) { context.coloredOutput = false; } } context.loggerFactory = LoggerFactory.getILoggerFactory();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38K bytes - Viewed (0) -
internal/crypto/header_test.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 13 14:52:15 UTC 2022 - 21.4K bytes - Viewed (0) -
src/main/assemblies/common-bin.xml
<excludes> <exclude>*</exclude> </excludes> <filtered>false</filtered> </fileSet> <!-- temp --> <fileSet> <directory>src/main/assemblies/files</directory> <outputDirectory>fess-${project.version}/temp</outputDirectory> <excludes> <exclude>*</exclude> </excludes> <filtered>false</filtered> </fileSet> <!-- es/modules --> <fileSet>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Mar 17 02:29:43 UTC 2022 - 3.7K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/MapContainsValueTester.java
} public void testContains_no() { assertFalse("containsValue(notPresent) should return false", getMap().containsValue(v3())); } @MapFeature.Require(ALLOWS_NULL_VALUE_QUERIES) public void testContains_nullNotContainedButAllowed() { assertFalse("containsValue(null) should return false", getMap().containsValue(null)); } @MapFeature.Require(absent = ALLOWS_NULL_VALUE_QUERIES)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 20:12:35 UTC 2024 - 3.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/UnmodifiableRowSortedTableRowTest.java
import java.util.Map; @GwtCompatible @ElementTypesAreNonnullByDefault public class UnmodifiableRowSortedTableRowTest extends RowTests { public UnmodifiableRowSortedTableRowTest() { super(false, false, false, false, false); } @Override Table<Character, String, Integer> makeTable() { RowSortedTable<Character, String, Integer> table = TreeBasedTable.create(); return unmodifiableRowSortedTable(table); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 1.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/UnmodifiableTableColumnTest.java
import java.util.Map; @GwtCompatible @ElementTypesAreNonnullByDefault public class UnmodifiableTableColumnTest extends ColumnTests { public UnmodifiableTableColumnTest() { super(false, false, false, false, false); } @Override Table<String, Character, Integer> makeTable() { Table<String, Character, Integer> table = HashBasedTable.create(); return unmodifiableTable(table); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 1.5K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/http2/FrameLogTest.kt
@Test fun exampleStream() { assertThat(frameLog(false, 0, 5, TYPE_SETTINGS, FLAG_NONE)) .isEqualTo(">> 0x00000000 5 SETTINGS ") assertThat(frameLog(false, 3, 100, TYPE_HEADERS, FLAG_END_HEADERS)) .isEqualTo(">> 0x00000003 100 HEADERS END_HEADERS") assertThat(frameLog(false, 3, 0, TYPE_DATA, FLAG_END_STREAM)) .isEqualTo(">> 0x00000003 0 DATA END_STREAM")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 5.9K bytes - Viewed (0)