- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 204 for oldu (0.01 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/google/MultisetSetCountUnconditionallyTester.java
public class MultisetSetCountUnconditionallyTester<E> extends AbstractMultisetSetCountTester<E> { @Override void setCountCheckReturnValue(E element, int count) { assertEquals( "multiset.setCount() should return the old count", getMultiset().count(element), setCount(element, count)); } @Override void setCountNoCheckReturnValue(E element, int count) { setCount(element, count); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.popular_word_word_enabled=Popular Word Response labels.supported_search_web=Web labels.supported_search_none=Unavailable labels.purge_search_log_day=Delete old search logs labels.purge_job_log_day=Delete old job logs labels.purge_user_info_day=Delete old user logs labels.purge_by_bots=Bot names to delete logs labels.log_level=Log Level labels.csv_file_encoding=CSV File Encoding labels.notification_to=Notification Mail
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/profile/ProfileForm.java
/** * Form for user profile operations. */ public class ProfileForm { /** * Default constructor. */ public ProfileForm() { // Default constructor } /** The old password. */ @NotBlank public String oldPassword; /** The new password. */ @NotBlank public String newPassword; /** The confirm new password. */ @NotBlank
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
android-test/src/androidTest/java/okhttp/android/test/alpn/AlpnOverrideTest.kt
override fun configureSocket(sslSocket: SSLSocket): SSLSocket { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { val parameters = sslSocket.sslParameters Log.d("CustomSSLSocketFactory", "old applicationProtocols: $parameters.applicationProtocols") parameters.applicationProtocols = arrayOf("x-amzn-http-ca") sslSocket.sslParameters = parameters } return sslSocket } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java
if (oldTransport != null) { try { oldTransport.close(); } catch (Exception e) { log.debug("Error disconnecting old transport", e); } } // Create new transport SmbTransport newTransport = manager.createTransport(channel.getLocalInterface(), channel.getRemoteInterface());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureKeyManager.java
byte[] newKey = deriveKey(currentKey, rotationLabel, String.valueOf(System.currentTimeMillis()).getBytes(), currentKey.length); // Archive old key (keep last version for rollback) String archiveId = sessionId + ".v" + currentVersion; storeSessionKeyInternal(archiveId, currentKey, "AES"); // Store new key
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/BiMapEntrySetTester.java
public void testSetValue_valueAbsent() { for (Entry<K, V> entry : getMap().entrySet()) { if (entry.getKey().equals(k0())) { assertEquals("entry.setValue() should return the old value", v0(), entry.setValue(v3())); } } expectReplacement(entry(k0(), v3())); } @MapFeature.Require(SUPPORTS_PUT) @CollectionSize.Require(SEVERAL) public void testSetValue_valuePresent() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComRename.java
import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * SMB1 COM_RENAME command implementation. * * This command renames a file or directory on the SMB server. * It takes an old filename and new filename and performs the rename operation. */ public class SmbComRename extends ServerMessageBlock { private final int searchAttributes; private final String oldFileName;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashMap.java
if (lastKnownIndex == -1) { put(key, value); return unsafeNull(); // See discussion in getValue(). } else { V old = value(lastKnownIndex); CompactHashMap.this.setValue(lastKnownIndex, value); return old; } } } @Override public int size() { Map<K, V> delegate = delegateOrNull();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/jcifs/util/ResourceManager.java
// Process phantom references to detect leaks Reference<?> ref; while ((ref = referenceQueue.poll()) != null) { handlePhantomReference(ref); } // Check for old unclosed resources long now = System.currentTimeMillis(); for (ResourceHolder holder : activeResources.values()) { if (!holder.closed && holder.getAge() > maxResourceAge) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0)