Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 332 for inherits (0.4 sec)

  1. docs/bucket/retention/README.md

    - Once object lock configuration is set to a bucket
      - New objects inherit the retention settings of the bucket object lock configuration automatically
      - Retention headers can be optionally set while uploading objects
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 4K bytes
    - Viewed (0)
  2. api/maven-api-core/src/test/java/org/apache/maven/api/services/RequestTraceTest.java

            assertEquals("root", root.context());
            assertEquals("level1", level1.context());
            assertEquals("level2", level2.context());
            assertEquals("level2", level3.context()); // Inherited from parent
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbAuthExceptionTest.java

    import org.junit.jupiter.params.provider.MethodSource;
    import org.mockito.Mock;
    import org.mockito.Mockito;
    import org.mockito.junit.jupiter.MockitoExtension;
    
    /**
     * Tests for SmbAuthException covering all constructors and inherited behavior.
     */
    @ExtendWith(MockitoExtension.class)
    public class SmbAuthExceptionTest {
    
        /**
         * Provide representative error codes for the int constructor.
         * - NT status code (high bits set)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

        @Nonnull
        Path getBasedir();
    
        /**
         * {@return the project direct dependencies (directly specified or inherited)}.
         */
        @Nonnull
        List<DependencyCoordinates> getDependencies();
    
        /**
         * {@return the project managed dependencies (directly specified or inherited)}.
         */
        @Nonnull
        List<DependencyCoordinates> getManagedDependencies();
    
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Feb 27 11:07:03 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/dtyp/ACETest.java

            // Hexdump.toHexString produces uppercase hex
            assertTrue(result.toLowerCase().contains("0x001f01ff"));
            // ACE.toString() outputs "Inherited " with 1 space
            assertTrue(result.contains("Inherited"));
            assertTrue(result.contains("This folder, subfolders and files"));
        }
    
        @Test
        @DisplayName("Test appendCol helper method")
        void testAppendCol() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

        /**
         * Default constructor for AuthenticationManager.
         */
        public AuthenticationManager() {
            // Default constructor
        }
    
        /**
         * Inserts a new user across all authentication chains.
         * @param user The user to insert.
         */
        public void insert(final User user) {
            chains().of(stream -> stream.forEach(c -> c.update(user)));
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java

            assertSame(firstCall, secondCall);
            assertEquals(type, firstCall);
        }
    
        public void test_inheritanceFromFessSystemException() {
            // Test that InvalidAccessTokenException is properly inherited from FessSystemException
            String type = "SessionToken";
            String message = "Session expired";
            InvalidAccessTokenException exception = new InvalidAccessTokenException(type, message);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  8. internal/lru/lru.go

    	e.prev = at
    	e.next = at.next
    	e.prev.next = e
    	e.next.prev = e
    }
    
    // PushFront inserts a new element e with value v at the front of list l and returns e.
    func (l *LruList[K, V]) PushFront(k K, v V) *Entry[K, V] {
    	l.lazyInit()
    	return l.insertValue(k, v, time.Time{}, &l.root)
    }
    
    // PushFrontExpirable inserts a new expirable element e with Value v at the front of list l and returns e.
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Fri Apr 25 08:22:26 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java

            String message = "Serialization test";
            LdapConfigurationException exception = new LdapConfigurationException(message);
    
            // Test that serialVersionUID is accessible (inherited from parent)
            assertNotNull(exception);
    
            // Create a new instance to verify it can be created multiple times
            LdapConfigurationException exception2 = new LdapConfigurationException(message);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java

              parentBuilder) {
        List<TestSuite> derivedSuites = new ArrayList<>(super.createDerivedSuites(parentBuilder));
    
        if (!parentBuilder.getFeatures().contains(SUBSET_VIEW)) {
          // Other combinations are inherited from SortedSetTestSuiteBuilder.
          derivedSuites.add(createSubsetSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
          derivedSuites.add(createSubsetSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top