Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 647 for nulled (0.03 sec)

  1. src/test/java/jcifs/dcerpc/UUIDTest.java

                assertEquals(CLOCK_SEQ_LOW, uuid.clock_seq_low, "clock_seq_low should be parsed correctly");
                // Node array will be partially filled
                assertEquals((byte) 0xAA, uuid.node[0]);
                assertEquals((byte) 0xBB, uuid.node[1]);
                assertEquals((byte) 0xCC, uuid.node[2]);
                assertEquals((byte) 0xDD, uuid.node[3]);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/SMBSigningDigestTest.java

        @Test
        @DisplayName("Test sign method with null request and response")
        void testSignWithNullMessages() {
            // Arrange
            int offset = 0;
            int length = testData.length;
    
            // Act
            signingDigest.sign(testData, offset, length, null, null);
    
            // Assert
            verify(signingDigest, times(1)).sign(testData, offset, length, null, null);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/util/LogStreamTest.java

        }
    
        private void resetLogStreamInstance() throws Exception {
            // Use reflection to reset the static instance field to null
            Field instanceField = LogStream.class.getDeclaredField("inst");
            instanceField.setAccessible(true);
            instanceField.set(null, null);
        }
    
        @Test
        void testConstructor() {
            // Test constructor creates a LogStream that extends PrintStream
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

        }
    
        public void test_inherited_methods_from_monitor_target() throws Exception {
            // Test that inherited methods are accessible
            Method appendMethod = null;
            Method appendTimestampMethod = null;
            Method appendExceptionMethod = null;
    
            // These are protected methods in MonitorTarget
            Method[] methods = MonitorTarget.class.getDeclaredMethods();
            for (Method method : methods) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  5. cmd/untar.go

    }
    
    type untarOptions struct {
    	ignoreDirs bool
    	ignoreErrs bool
    	prefixAll  string
    }
    
    // disconnectReader will ensure that no reads can take place on
    // the upstream reader after close has been called.
    type disconnectReader struct {
    	r  io.Reader
    	mu sync.Mutex
    }
    
    func (d *disconnectReader) Read(p []byte) (n int, err error) {
    	d.mu.Lock()
    	defer d.mu.Unlock()
    	if d.r != nil {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Feb 18 16:25:55 UTC 2025
    - 6K bytes
    - Viewed (2)
  6. android/guava/src/com/google/common/collect/Iterables.java

       * until necessary.
       *
       * <p>The returned iterable's iterator supports {@code remove()} when the corresponding input
       * iterator supports it.
       *
       * <p><b>Java 8+ users:</b> The {@code Stream} equivalent of this method is {@code
       * Streams.concat(...)}.
       *
       * @throws NullPointerException if any of the provided iterables is null
       */
      @SafeVarargs
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 43.6K bytes
    - Viewed (0)
  7. LICENSE

    users of that server.  Therefore, public use of a modified version, on
    a publicly accessible server, gives the public access to the source
    code of the modified version.
    
      An older license, called the Affero General Public License and
    published by Affero, was designed to accomplish similar goals.  This is
    a different license, not a version of the Affero GPL, but Affero has
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb1/dcerpc/msrpc/LsaPolicyHandleTest.java

                MsrpcLsarClose rpc = invocation.getArgument(0);
                rpc.retval = 0; // Simulate success
                return null;
            }).when(mockDcerpcHandle).sendrecv(any(MsrpcLsarClose.class));
    
            // Act
            handle.close();
    
            // Assert
            // Verify sendrecv was called once for open and once for close
            verify(mockDcerpcHandle, times(1)).sendrecv(any(MsrpcLsarOpenPolicy2.class));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/DosErrorTest.java

            assertEquals(-1, actual);
        }
    
        @Test
        @DisplayName("Structure: DOS_ERROR_CODES is non-null with [code,status] pairs")
        void dosErrorCodesStructureIsValid() {
            // Arrange & Act
            int[][] table = DosError.DOS_ERROR_CODES;
    
            // Assert
            assertNotNull(table, "DOS_ERROR_CODES must not be null");
            assertTrue(table.length > 0, "DOS_ERROR_CODES must not be empty");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/security/index.md

        * `bearer`: a header `Authorization` with a value of `Bearer ` plus a token. This is inherited from OAuth2.
        * HTTP Basic authentication.
        * HTTP Digest, etc.
    * `oauth2`: all the OAuth2 ways to handle security (called "flows").
        * Several of these flows are appropriate for building an OAuth 2.0 authentication provider (like Google, Facebook, X (Twitter), GitHub, etc):
            * `implicit`
            * `clientCredentials`
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 4.4K bytes
    - Viewed (0)
Back to top