- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 37 for isNative (0.17 sec)
-
android/guava/src/com/google/common/reflect/Invokable.java
public final boolean isAbstract() { return Modifier.isAbstract(getModifiers()); } /** Returns true if the element is native. */ public final boolean isNative() { return Modifier.isNative(getModifiers()); } /** Returns true if the method is synchronized. */ public final boolean isSynchronized() { return Modifier.isSynchronized(getModifiers()); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 18.4K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/Platform.java
T[] result = newArray(arrayOfType, to - from); System.arraycopy(source, from, result, 0, to - from); return result; } // TODO(user): Move this logic to a utility class. @JsType(isNative = true, name = "Array", namespace = JsPackage.GLOBAL) private interface NativeArray { @JsProperty void setLength(int length); } static MapMaker tryWeakKeys(MapMaker mapMaker) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jun 10 15:17:16 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NodeStatusResponse.java
this.queryAddress.nodeType = ownerNodeType; this.queryAddress.isBeingDeleted = isBeingDeleted; this.queryAddress.isInConflict = isInConflict; this.queryAddress.isActive = isActive; this.queryAddress.isPermanent = isPermanent; this.queryAddress.macAddress = this.macAddress; this.queryAddress.isDataFromNodeStatus = true;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java
queryAddress.nodeType = ownerNodeType; queryAddress.isBeingDeleted = isBeingDeleted; queryAddress.isInConflict = isInConflict; queryAddress.isActive = isActive; queryAddress.isPermanent = isPermanent; queryAddress.macAddress = macAddress; queryAddress.isDataFromNodeStatus = true; addrFound = true;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreTest.java
final AtomicBoolean isActive = new AtomicBoolean(false); dataStore = new DataStore() { @Override public void store(DataConfig config, IndexUpdateCallback callback, DataStoreParams initParamMap) { storeCalled.set(true); isActive.set(true); } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
this.address = address; this.groupName = groupName; this.nodeType = nodeType; this.isBeingDeleted = isBeingDeleted; this.isInConflict = isInConflict; this.isActive = isActive; this.isPermanent = isPermanent; this.macAddress = macAddress; this.isDataFromNodeStatus = true; } /** * {@inheritDoc} *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java
return directoryFile; } /** * Checks if directory change monitoring is currently active * @return true if watching is active */ public boolean isActive() { return active; } /** * Set active status * * @param active true to activate */ public void setActive(boolean active) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.7K bytes - Viewed (0) -
src/main/java/jcifs/util/ResourceManager.java
this.creationTime = System.currentTimeMillis(); this.allocationStackTrace = Thread.currentThread().getStackTrace(); this.closed = false; } boolean isAlive() { return resourceRef.get() != null && !closed; } long getAge() { return System.currentTimeMillis() - creationTime; } } private ResourceManager() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtAddressTest.java
assertEquals(NbtAddress.B_NODE, nbtAddress.getNodeType(mockContext)); assertTrue(nbtAddress.isBeingDeleted(mockContext)); assertTrue(nbtAddress.isInConflict(mockContext)); assertFalse(nbtAddress.isActive(mockContext)); assertTrue(nbtAddress.isPermanent(mockContext)); assertArrayEquals(testMacAddress, nbtAddress.getMacAddress(mockContext)); } @Test void testUnwrap() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.4K bytes - Viewed (0)