- Sort Score
- Result 10 results
- Languages All
Results 1211 - 1220 of 1,497 for operation2 (0.11 sec)
-
cmd/bucket-policy.go
// Log unhandled errors. if _, ok := err.(BucketPolicyNotFound); !ok { internalLogIf(GlobalContext, err, logger.WarningKind) } // As policy is not available for given bucket name, returns IsOwner i.e. // operation is allowed only for owner. return args.IsOwner } // NewPolicySys - creates new policy system. func NewPolicySys() *PolicySys { return &PolicySys{} }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
queryContext.setDefaultField(null); assertNull(queryContext.getDefaultField()); } // Test complex scenario with multiple operations public void test_complexScenario() { getMockRequest().setAttribute(Constants.FIELD_LOGS, new HashMap<String, List<String>>()); queryContext = new QueryContext("allintitle:search term", true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java
for (int i = 0; i < THREAD_COUNT; i++) { final int index = i; threads[i] = new Thread(() -> { try { // Each thread performs operations on the response byte[] buffer = new byte[100]; response.writeSetupWireFormat(buffer, 0); response.readParametersWireFormat(buffer, 0, 100);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.9K bytes - Viewed (0) -
SECURITY.md
variables as part of those interactions (ex: using a string variable to build a filesystem path), a maliciously created checkpoint might be able to change the targets of those operations, which could result in arbitrary read/write/executions. ### Running a TensorFlow server TensorFlow is a platform for distributed computing, and as such there is a
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Oct 16 16:10:43 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java
// =================================================================================== // Attribute // ========= /** The search helper for performing search operations. */ @Resource protected SearchHelper searchHelper; /** The search engine client for interacting with OpenSearch. */ @Resource protected SearchEngineClient searchEngineClient;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java
// ArrayUtils.addAll handles null gracefully by adding it to the array authenticationManager.addChain(null); // Verify null chain doesn't cause issues during operations User user = createTestUser("testuser"); try { authenticationManager.insert(user); fail("Should throw NullPointerException when processing null chain");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java
} public void test_XContentBuilderCallback_nullBuilder() { XContentBuilderCallback callback = (builder, params) -> { // Test behavior when builder operations might fail if (builder == null) { throw new IOException("Builder is null"); } builder.startObject(); builder.field("null_test", "value");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/util/ServerResponseValidatorTest.java
assertTrue(stats.getIntegerOverflowsPrevented() > 0); } @Test public void testBoundaryValues() throws Exception { // Test boundary values for safe operations assertEquals(Integer.MAX_VALUE, validator.safeAdd(Integer.MAX_VALUE, 0)); assertEquals(Integer.MIN_VALUE, validator.safeAdd(Integer.MIN_VALUE, 0));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/jcifs/pac/ASN1Util.java
import org.bouncycastle.asn1.ASN1Sequence; import org.bouncycastle.asn1.ASN1TaggedObject; import org.bouncycastle.asn1.DLSequence; /** * Utility class for ASN.1 parsing and manipulation operations. * * This class provides helper methods for working with ASN.1 * encoded data structures used in Kerberos PAC processing. */ public final class ASN1Util { private ASN1Util() { } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java
* variables for authentication and endpoint configuration. * </p> */ public class StorageURLConnection extends URLConnection { /** The MinIO client for storage operations */ private MinioClient minioClient; /** The name of the storage bucket */ private String bucketName; /** The name of the storage object */ private String objectName;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.5K bytes - Viewed (0)