- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 455 for masking (3.45 sec)
-
guava/src/com/google/common/collect/FluentIterable.java
public Iterator<T> iterator() { return Iterators.concat(Iterators.transform(inputs.iterator(), Iterable::iterator)); } }; } /** Concatenates a varargs array of iterables without making a defensive copy of the array. */ private static <T extends @Nullable Object> FluentIterable<T> concatNoDefensiveCopy( Iterable<? extends T>... inputs) { for (Iterable<? extends T> input : inputs) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
/** The key of the message: Failed to download a mapping file. */ public static final String ERRORS_failed_to_download_mapping_file = "{errors.failed_to_download_mapping_file}"; /** The key of the message: Failed to upload a mapping file. */ public static final String ERRORS_failed_to_upload_mapping_file = "{errors.failed_to_upload_mapping_file}";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 119.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
}).orElseGet(() -> null); } /** * SPNEGO filter configuration implementation. * * This inner class provides configuration parameters for the SPNEGO filter, * mapping system properties to SPNEGO configuration values. It handles * various authentication settings including Kerberos configuration, * authentication modules, and security options. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 17.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java
// Since these are protected fields, we can't access them directly // But we can verify the object is created successfully with these values } @Test @DisplayName("Test information level mapping edge cases") void testInformationLevelMappingEdgeCases() { // Test with SMB_INFO_ALLOCATION (-1 as byte) trans2QueryFSInfo = new Trans2QueryFSInformation(config, FileSystemInformation.SMB_INFO_ALLOCATION);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.9K bytes - Viewed (0) -
guava/src/com/google/common/math/LongMath.java
* since casting to double is nondecreasing. * Note that the right-hand inequality is no longer strict. * Math.sqrt(k * k) <= Math.sqrt(x) <= Math.sqrt((k + 1) * (k + 1)) * since Math.sqrt is monotonic. * (long) Math.sqrt(k * k) <= (long) Math.sqrt(x) <= (long) Math.sqrt((k + 1) * (k + 1)) * since casting to long is monotonic
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Aug 29 16:20:07 UTC 2025 - 46.8K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
// Schedule reconnection attempt scheduleReconnection(1000); // 1 second delay } private void handleClientMove(WitnessNotification notification) { // Server is asking client to move to different node log.info("Client move requested for resource: {}", notification.getResourceName()); List<WitnessNotification.WitnessIPAddress> newAddresses = notification.getNewIPAddresses();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
cmd/iam-etcd-store.go
// a large number of policy mappings r, err := ies.client.Get(cctx, basePrefix, etcd.WithPrefix()) if err != nil { return err } // Parse all policies mapping to create the proper data model for _, kv := range r.Kvs { if err = getMappedPolicy(kv, m, basePrefix); err != nil && !errors.Is(err, errNoSuchPolicy) { return err } } return nil }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 13.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Multiset.java
* {@code " x "} (space, letter x, space), followed by the count. */ @Override String toString(); } // Comparison and hashing /** * Compares the specified object with this multiset for equality. Returns {@code true} if the * given object is also a multiset and contains equal elements with equal counts, regardless of * order.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/TraversalUtil.java
} /** An empty array of {@link Traverser}. */ protected static final Traverser[] EMPTY_ARRAY = new Traverser[0]; private static final Logger logger = Logger.getLogger(TraversalUtil.class); /** Mapping from URL protocol (as key) to {@link TraverserFactory} (as value). */ protected static final ConcurrentMap<String, TraverserFactory> traverserFactories = newConcurrentHashMap(); static {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 18.6K bytes - Viewed (0) -
docs/es/docs/advanced/security/oauth2-scopes.md
Para OAuth2 son solo strings. /// ## Vista global Primero, echemos un vistazo rĂ¡pido a las partes que cambian desde los ejemplos en el **Tutorial - User Guide** principal para [OAuth2 con Password (y hashing), Bearer con tokens JWT](../../tutorial/security/oauth2-jwt.md){.internal-link target=_blank}. Ahora usando scopes de OAuth2: {* ../../docs_src/security/tutorial005_an_py310.py hl[5,9,13,47,65,106,108:116,122:125,129:135,140,156] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 13.8K bytes - Viewed (0)