Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 223 for combined (0.07 sec)

  1. src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java

                second.setDomain("DOMAIN");
    
                // Combine
                DfsReferralDataInternal combined = first.combine(second);
    
                assertNotNull(combined);
                assertEquals("server2", combined.getServer());
                assertEquals("share2", combined.getShare());
                assertEquals("path2", combined.getPath());
                assertEquals("DOMAIN", combined.getDomain());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 30.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/dtyp/SecurityInfoTest.java

            // Test that flags can be combined using bitwise OR
            int combined = SecurityInfo.OWNER_SECURITY_INFO | SecurityInfo.GROUP_SECURITY_INFO;
            assertEquals(0x3, combined);
    
            combined = SecurityInfo.DACL_SECURITY_INFO | SecurityInfo.SACL_SECURITY_INFO;
            assertEquals(0xC, combined);
    
            // Test all standard security info combined
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java

                        "Signing flags must be distinct");
    
                // Verify they can be combined with bitwise OR
                int combined = Smb2Constants.SMB2_NEGOTIATE_SIGNING_ENABLED | Smb2Constants.SMB2_NEGOTIATE_SIGNING_REQUIRED;
                assertEquals(0x0003, combined, "Combined signing flags should equal 0x0003");
            }
        }
    
        @Nested
        @DisplayName("Dialect Constants")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  4. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlService.java

     *
     * <p>The merger supports two main types of combinations:</p>
     * <ul>
     *   <li>Children combination: Controls how child elements are combined</li>
     *   <li>Self combination: Controls how the element itself is combined</li>
     * </ul>
     *
     * <p>Children combination modes (specified by {@code combine.children} attribute):</p>
     * <ul>
     *   <li>{@code merge} (default): Merges elements with matching names</li>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/FileNotifyInformationTest.java

                assertTrue(isPowerOfTwo(FileNotifyInformation.FILE_NOTIFY_CHANGE_STREAM_WRITE));
            }
    
            @Test
            @DisplayName("Verify no filter flag overlap except for combined flags")
            void testNoFilterFlagOverlap() {
                int[] flags = { FileNotifyInformation.FILE_NOTIFY_CHANGE_FILE_NAME, FileNotifyInformation.FILE_NOTIFY_CHANGE_DIR_NAME,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java

            }
    
            @Test
            @DisplayName("Should combine referral data")
            void testCombine() {
                DfsReferralDataInternal combined = mock(DfsReferralDataInternal.class);
    
                // Test with mock
                when(mockReferralData.combine(mockDfsReferralData)).thenReturn(combined);
                DfsReferralDataInternal result = mockReferralData.combine(mockDfsReferralData);
                assertSame(combined, result);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/TreeConnectResponseTest.java

                setPrivateField(response, "shareFlags", combinedFlags);
                assertEquals(combinedFlags, response.getShareFlags(), "Should handle combined flags");
                assertTrue(response.isShareDfs(), "Should detect DFS in combined flags");
    
                // Test multiple capabilities combined
                int combinedCaps = Smb2TreeConnectResponse.SMB2_SHARE_CAP_DFS | Smb2TreeConnectResponse.SMB2_SHARE_CAP_CONTINUOUS_AVAILABILITY
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/TypeResolver.java

              // There is no contract one way or another as long as isSubtypeOf() works as expected.
              combined.addAll(asList(typeParam.getBounds()));
              if (combined.size() > 1) { // Object is implicit and only useful if it's the only bound.
                combined.remove(Object.class);
              }
              return super.captureAsTypeVariable(combined.toArray(new Type[0]));
            }
          };
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

          long hash1 = lowerEight(bytes);
          long hash2 = upperEight(bytes);
    
          boolean bitsChanged = false;
          long combinedHash = hash1;
          for (int i = 0; i < numHashFunctions; i++) {
            // Make the combined hash positive and indexable
            bitsChanged |= bits.set((combinedHash & Long.MAX_VALUE) % bitSize);
            combinedHash += hash2;
          }
          return bitsChanged;
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. LICENSE

    facilities not covered by this License, and distribute such a combined
    library, provided that the separate distribution of the work based on
    the Library and of the other library facilities is otherwise
    permitted, and provided that you do these two things:
    
        a) Accompany the combined library with a copy of the same work
        based on the Library, uncombined with any other library
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
Back to top