- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 272 for inherits (0.04 sec)
-
src/test/java/jcifs/ACETest.java
assertTrue((bothInherit & ACE.FLAGS_CONTAINER_INHERIT) != 0, "Should include container inherit"); // Inherit only (no direct access) int inheritOnly = ACE.FLAGS_INHERIT_ONLY | ACE.FLAGS_OBJECT_INHERIT; assertTrue((inheritOnly & ACE.FLAGS_INHERIT_ONLY) != 0, "Should include inherit only flag"); // No propagation
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/AllocInfoTest.java
} @Test @DisplayName("Should inherit getFileSystemInformationClass from FileSystemInformation") void shouldInheritGetFileSystemInformationClass() throws NoSuchMethodException { // Verify method is inherited assertNotNull(AllocInfo.class.getMethod("getFileSystemInformationClass"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrConnect2Test.java
} @Test @DisplayName("should inherit getOpnum method") void testGetOpnumMethod() { // Arrange SamrPolicyHandle ph = createMockPolicyHandle(); MsrpcSamrConnect2 msg = new MsrpcSamrConnect2("\\\\server", 0x000F0000, ph); // Act & Assert - getOpnum is inherited from SamrConnect2 assertDoesNotThrow(() -> msg.getOpnum());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Aug 07 14:32:16 UTC 2025 - 132.7K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java
Monitor monitor = this.monitor; monitor.enter(); try { return count; } finally { monitor.leave(); } } // this doc comment is a modified copy of the inherited doc comment, // without the reference to unlimited queues. /** * Returns the number of additional elements that this queue can ideally (in the absence of memory
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 22.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/NullPointerTester.java
* "inherited" from superclasses of the same package. */ public void testAllPublicStaticMethods(Class<?> c) { testStaticMethods(c, Visibility.PUBLIC); } /** * Runs {@link #testMethod} on every instance method of the class of {@code instance} with at * least {@code minimalVisibility}, including those inherited from superclasses of the same * package. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/CreateBody.java
*/ package org.codelibs.fess.app.web.api.admin.reqheader; import org.codelibs.fess.app.web.admin.reqheader.CreateForm; /** * Request body for creating request header via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm { /** * Creates a new CreateBody instance. */ public CreateBody() { }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1011 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/CreateBody.java
package org.codelibs.fess.app.web.api.admin.dict.protwords; import org.codelibs.fess.app.web.admin.dict.protwords.CreateForm; /** * Request body for creating protected words dictionary via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm { /** * Creates a new CreateBody instance. */ public CreateBody() { }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/annotation/Secured.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Java 5 annotation for describing service layer security attributes. * * <p>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/general/EditBody.java
import org.codelibs.fess.app.web.admin.general.EditForm; /** * Request body class for general settings edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for general settings management operations. */ public class EditBody extends EditForm { /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0)