Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 242 for combined (0.06 sec)

  1. 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)
  2. 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)
  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/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)
  6. 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)
  7. 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)
  8. docs/debugging/xl-meta/main.go

    		},
    		cli.BoolFlag{
    			Usage: "combine inline data",
    			Name:  "combine",
    		},
    		cli.BoolFlag{
    			Usage: "combine inline data across versions when size matches",
    			Name:  "xver",
    		},
    	}
    
    	app.Action = func(c *cli.Context) error {
    		ndjson := c.Bool("ndjson")
    		if c.Bool("data") && c.Bool("combine") {
    			return errors.New("cannot combine --data and --combine")
    		}
    		// file / version / file
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 40.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbNamedPipe.java

        private final int pipeType;
    
        /**
         * Open the Named Pipe resource specified by the url
         * parameter. The pipeType parameter should be at least one of
         * the <code>PIPE_TYPE</code> flags combined with the bitwise OR
         * operator <code>|</code>. See the examples listed above.
         *
         * @param url the SMB URL for the named pipe
         * @param pipeType the type of the pipe
         * @param unshared
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  10. 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)
Back to top