- Sort Score
- Num 10 results
- Language All
Results 141 - 150 of 414 for probar (0.03 seconds)
-
src/main/java/org/codelibs/core/crypto/CachedCipher.java
* </p> * <p> * <strong>Key Features:</strong> * </p> * <ul> * <li>Thread-safe cipher pooling using {@link ConcurrentLinkedQueue}</li> * <li>Configurable encryption algorithms (default: Blowfish)</li> * <li>Proper charset handling for key generation (UTF-8 by default)</li> * <li>Base64 encoding for text operations</li> * </ul> * <p> * <strong>Security Considerations:</strong> * </p> * <ul>
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 15.9K bytes - Click Count (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
assertEquals("8", request.commandLine.getOptionValue(CLIManager.THREADS)); // override from command line request = new CliRequest(new String[] {"--builder", "foobar"}, null); cli.cli(request); assertEquals("foobar", request.commandLine.getOptionValue("builder")); } @Test void testMavenConfigInvalid() throws Exception { System.setProperty(
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 30.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/multichannel/ChannelManagerTest.java
try { channelManager.initializeMultiChannel(); // Should not throw exception even if initialization fails } catch (Exception e) { // Expected in test environment without proper server setup } assertDoesNotThrow(() -> channelManager.shutdown()); } @Test void testConcurrentAccess() throws InterruptedException { // Test thread safetyCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 7.6K bytes - Click Count (0) -
internal/mountinfo/mountinfo_linux.go
if !filepath.IsAbs(path) { return fmt.Errorf("Invalid argument, path (%s) is expected to be absolute", path) } var crossMounts mountInfos for _, mount := range mts { // Add a separator to indicate that this is a proper mount-point. // This is to avoid a situation where prefix is '/tmp/fsmount' // and mount path is /tmp/fs. In such a scenario we need to check for // `/tmp/fs/` to be a common prefix amount other mounts.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Feb 18 16:25:55 GMT 2025 - 4.7K bytes - Click Count (0) -
cmd/server-rlimit.go
"github.com/minio/minio/internal/logger" "github.com/minio/pkg/v3/sys" ) func oldLinux() bool { currentKernel, err := kernel.CurrentVersion() if err != nil { // Could not probe the kernel version return false } if currentKernel == 0 { // We could not get any valid value return false return false } // legacy linux indicator for printing warnings
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Jul 02 15:09:36 GMT 2024 - 2.8K bytes - Click Count (0) -
src/main/webapp/WEB-INF/fe.tld
<function-class>org.codelibs.fess.taglib.FessFunctions</function-class> <function-signature>java.lang.String getMessage(java.lang.String, java.lang.String)</function-signature> <example>${fe:message("labels.foobar", "default value")}</example> </function> <function> <description>Check if user has a permission.</description> <name>permission</name>
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Jan 18 11:38:54 GMT 2025 - 10.3K bytes - Click Count (0) -
docs/es/docs/tutorial/body.md
También recibirás chequeos de errores para operaciones de tipo incorrecto: <img src="/img/tutorial/body/image04.png"> No es por casualidad, todo el framework fue construido alrededor de ese diseño. Y fue rigurosamente probado en la fase de diseño, antes de cualquier implementación, para garantizar que funcionaría con todos los editores. Incluso se hicieron algunos cambios en Pydantic para admitir esto.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 7.6K bytes - Click Count (0) -
cmd/iam-etcd-store.go
// a large number of users r, err := ies.client.Get(cctx, basePrefix, etcd.WithPrefix()) if err != nil { return err } // Parse all users values to create the proper data model for _, userKv := range r.Kvs { if err = ies.getUserKV(ctx, userKv, userType, m, basePrefix); err != nil && err != errNoSuchUser { return err } } return nil }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 13.9K bytes - Click Count (0) -
apache-maven/src/assembly/maven/bin/JvmConfigParser.java
return; } try { String result = parseJvmConfig(jvmConfigPath, mavenProjectBasedir); if (outputFile != null) { // Write directly to file - this ensures proper file handle cleanup on Windows // Add newline at end for Windows 'for /f' command compatibility try (Writer writer = Files.newBufferedWriter(outputFile, StandardCharsets.UTF_8)) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Dec 10 16:40:06 GMT 2025 - 6.4K bytes - Click Count (0) -
src/main/java/jcifs/SmbException.java
package jcifs; import java.util.HashMap; import java.util.Map; /** * Base exception class for all SMB-related exceptions * * This class provides a consistent exception handling mechanism * with proper error context and recovery information. */ public class SmbException extends CIFSException { private static final long serialVersionUID = 1L; /** * Error severity levels */Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 6.4K bytes - Click Count (0)