- Sort Score
- Result 10 results
- Languages All
Results 911 - 920 of 5,836 for Public (0.03 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java
private boolean noFollow = false; /** * Creates a new ResponseData instance. */ public ResponseData() { super(); } /** * Gets the HTTP status code of the response. * * @return the HTTP status code */ public int getHttpStatusCode() { return httpStatusCode; } /** * Sets the HTTP status code of the response.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ScheduledJobDbm.java
public ColumnInfo columnCronExpression() { return _columnCronExpression; } public ColumnInfo columnJobLogging() { return _columnJobLogging; } public ColumnInfo columnName() { return _columnName; } public ColumnInfo columnScriptData() { return _columnScriptData; } public ColumnInfo columnScriptType() { return _columnScriptType;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java
* Can be subclassed to specify tests that should be suppressed. * * @author Kevin Bourrillion */ @GwtIncompatible public class TestsForSetsInJavaUtil { public static Test suite() { return new TestsForSetsInJavaUtil().allTests(); } public Test allTests() { TestSuite suite = new TestSuite("java.util Sets"); suite.addTest(testsForEmptySet()); suite.addTest(testsForSingletonSet());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
/** The ID of the key match. */ public String id; /** The term of the key match. */ public String term; /** The query of the key match. */ public String query; /** The max size of the key match. */ public String maxSize; /** The boost of the key match. */ public String boost; /** The creator of the key match. */ public String createdBy;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/SingletonImmutableTableTest.java
assertEquals(ImmutableMap.of(), testTable.row('A')); assertEquals(ImmutableMap.of(1, "blah"), testTable.row('a')); } public void testRowKeySet() { assertEquals(ImmutableSet.of('a'), testTable.rowKeySet()); } public void testRowMap() { assertEquals(ImmutableMap.of('a', ImmutableMap.of(1, "blah")), testTable.rowMap()); } public void testEqualsObject() { new EqualsTester()
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 4K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableMap.java
@Override public final void clear() { throw new UnsupportedOperationException(); } @Override public boolean isEmpty() { return size() == 0; } @Override public boolean containsKey(@Nullable Object key) { return get(key) != null; } @Override public boolean containsValue(@Nullable Object value) { return values().contains(value); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 16.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileConfigDbm.java
public ColumnInfo columnCreatedTime() { return _columnCreatedTime; } public ColumnInfo columnDepth() { return _columnDepth; } public ColumnInfo columnDescription() { return _columnDescription; } public ColumnInfo columnExcludedDocPaths() { return _columnExcludedDocPaths; } public ColumnInfo columnExcludedPaths() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsWebAuthenticationBhv.java
@Override public String asTableDbName() { return asEsIndexType(); } @Override protected String asEsIndex() { return "fess_config.web_authentication"; } @Override public String asEsIndexType() { return "web_authentication"; } @Override public String asEsSearchType() { return "web_authentication";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractTable.java
} @Override public void clear() { AbstractTable.this.clear(); } @Override public Iterator<Table.Cell<R, C, V>> iterator() { return cellIterator(); } @Override public Spliterator<Cell<R, C, V>> spliterator() { return cellSpliterator(); } @Override public int size() { return AbstractTable.this.size();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 6.4K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
## 3. Lease Types and States ### 3.1 Lease State Flags ```java public class Smb2LeaseState { // Lease state flags (can be combined) public static final int SMB2_LEASE_NONE = 0x00; public static final int SMB2_LEASE_READ_CACHING = 0x01; // R - Read caching public static final int SMB2_LEASE_HANDLE_CACHING = 0x02; // H - Handle caching public static final int SMB2_LEASE_WRITE_CACHING = 0x04; // W - Write caching
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0)