Search Options

Results per page
Sort
Preferred Languages
Advance

Results 501 - 510 of 859 for Multiple (0.04 sec)

  1. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

            assertEquals("custom_field", queryContext.getDefaultField());
    
            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)
  2. src/main/java/jcifs/smb/SmbOperationException.java

         */
        public SmbOperationException withContext(String key, Object value) {
            this.context.put(key, value);
            return this;
        }
    
        /**
         * Add multiple context values
         *
         * @param contextMap the context map to add
         * @return this exception for chaining
         */
        public SmbOperationException withContext(Map<String, Object> contextMap) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponseTest.java

            result = createInfoMethod.invoke(response);
            assertNull(result);
        }
    
        @Test
        void testMultipleReadDataWireFormat() throws Exception {
            // Test multiple calls to readDataWireFormat
            response = new Trans2QueryFSInformationResponse(config, FileSystemInformation.SMB_INFO_ALLOCATION);
    
            // Prepare buffer
            byte[] buffer = prepareAllocationInfoBuffer();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.9K bytes
    - Viewed (0)
  4. cmd/admin-handlers-idp-config.go

    	}
    
    	cfgName := mux.Vars(r)["name"]
    	cfgTarget := madmin.Default
    	if cfgName != "" {
    		cfgTarget = cfgName
    		if idpCfgType == madmin.LDAPIDPCfg && cfgName != madmin.Default {
    			// LDAP does not support multiple configurations. So cfgName must be
    			// empty or `madmin.Default`.
    			writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminConfigLDAPNonDefaultConfigName), r.URL)
    			return
    		}
    	}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Feb 18 16:25:55 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  5. cmd/postpolicyform_test.go

    		},
    		{
    			name:    "many bucket values",
    			fv:      defaultFormVals.Clone().Add("Bucket", "anotherbucket"),
    			wantErr: "Invalid according to Policy: Policy Condition failed: [eq, $bucket, testbucket]. FormValues have multiple values: [testbucket, anotherbucket]",
    		},
    		{
    			name: "XAmzSignature does not have to appear in policy",
    			fv:   defaultFormVals.Clone().Set(xhttp.AmzSignature, "my-signature"),
    		},
    		{
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.15.md

    - Multiple Kubernetes clusters can now share the same resource group
        - When upgrading from previous releases, issues will arise with public IPs if multiple clusters share the same resource group. To solve these problems, make the following changes to the cluster:
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/script/ScriptEngineTest.java

            String template = "Template content";
    
            Object result = scriptEngine.evaluate(template, null);
            assertEquals("Template content", result);
        }
    
        // Test evaluate method with multiple parameters
        public void test_evaluate_withMultipleParams() {
            String template = "${greeting} ${name}, you are ${age} years old";
            Map<String, Object> paramMap = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java

            // Test empty event type
            EmptySearchLogEvent emptyEvent = new EmptySearchLogEvent();
            assertEquals("", emptyEvent.getEventType());
        }
    
        // Test multiple implementations
        public void test_multipleImplementations() {
            // Create different implementations
            SearchLogEvent event1 = new TestSearchLogEvent("id1", 1L, "type1");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponseTest.java

            byte[] secondGuid = response.getServerGuid();
            assertSame(returnedGuid, secondGuid, "getServerGuid() returns the same array reference");
        }
    
        @Test
        @DisplayName("Test multiple decode calls on same instance")
        void testMultipleDecodeCalls() throws SMBProtocolDecodingException {
            // First decode
            byte[] buffer1 = new byte[50];
            SMBUtil.writeInt4(0x11111111, buffer1, 0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb1/trans2/Trans2FindNext2Test.java

            String actualFilename = readString(buffer, 12, written - 12);
            assertEquals(filename, actualFilename);
        }
    
        @Test
        void testResetMultipleTimes() {
            // Test multiple resets to ensure state is properly maintained
            trans2FindNext2 = new Trans2FindNext2(config, TEST_SID, TEST_RESUME_KEY, TEST_FILENAME, TEST_BATCH_COUNT, TEST_BATCH_SIZE);
    
            for (int i = 1; i <= 5; i++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.2K bytes
    - Viewed (0)
Back to top