Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,080 for field5 (0.09 sec)

  1. src/test/java/jcifs/internal/smb1/com/ServerDataTest.java

        }
    
        /**
         * Test all fields are public and accessible
         */
        @Test
        @DisplayName("Test all fields are public")
        public void testAllFieldsArePublic() {
            // Get all declared fields
            Field[] fields = ServerData.class.getDeclaredFields();
    
            // Verify we have the expected number of fields
            assertEquals(19, fields.length);
    
            // Verify all fields are public
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

            // Test executing BoostQuery with a BooleanQuery inside
            BooleanQuery.Builder boolBuilder = new BooleanQuery.Builder();
            boolBuilder.add(new TermQuery(new Term("field1", "value1")), BooleanClause.Occur.MUST);
            boolBuilder.add(new TermQuery(new Term("field2", "value2")), BooleanClause.Occur.SHOULD);
            BooleanQuery boolQuery = boolBuilder.build();
            BoostQuery boostQuery = new BoostQuery(boolQuery, 2.0f);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    # Field name for document ID in the index.
    index.field.doc_id=doc_id
    # Field name for internal ID in the index.
    index.field.id=_id
    # Field name for version in the index.
    index.field.version=_version
    # Field name for sequence number in the index.
    index.field.seq_no=_seq_no
    # Field name for primary term in the index.
    index.field.primary_term=_primary_term
    # Field name for language in the index.
    index.field.lang=lang
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  4. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

          <version>1.0.0+</version>
          <fields>
            <field>
              <name>toolchains</name>
              <version>1.0.0+</version>
              <description>The toolchain instance definition.</description>
              <association xml.itemsStyle="flat">
                <type>ToolchainModel</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
          </fields>
          <codeSegments>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun May 18 09:15:56 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  5. api/maven-api-metadata/src/main/mdo/metadata.mdo

          <name>Metadata</name>
          <version>1.0.0+</version>
          <fields>
            <field xml.attribute="true" xml.tagName="modelVersion">
              <name>modelVersion</name>
              <version>1.1.0+</version>
              <type>String</type>
              <description>The version of the underlying metadata model.</description>
            </field>
            <field>
              <name>groupId</name>
              <version>1.0.0+</version>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/mdo/paramdoc.mdo

          <description>A plugin parameter expression supported by Maven</description>
          <fields>
            <field>
              <version>1.0.0</version>
              <name>syntax</name>
              <description>The syntax of the expression</description>
              <type>String</type>
              <required>true</required>
            </field>
            <field>
              <version>1.0.0</version>
              <name>description</name>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. api/maven-api-cli/src/main/mdo/core-extensions.mdo

          <version>1.0.0+</version>
          <fields>
            <field>
              <name>groupId</name>
              <description>The group ID of the extension's artifact.</description>
              <version>1.0.0+</version>
              <required>true</required>
              <type>String</type>
            </field>
            <field>
              <name>artifactId</name>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun May 18 09:15:56 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

            Field[] fields = FessHtmlPath.class.getDeclaredFields();
            for (Field field : fields) {
                int modifiers = field.getModifiers();
                if (Modifier.isPublic(modifiers) && Modifier.isStatic(modifiers) && Modifier.isFinal(modifiers)) {
                    if (field.getType().equals(HtmlNext.class)) {
                        HtmlNext htmlNext = (HtmlNext) field.get(null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/MsrpcEnumerateAliasesInDomainTest.java

            // Then
            // Verify that the 'sam' field is set correctly
            assertEquals(mockSamArray, msrpc.sam, "The 'sam' field should be initialized with the provided SamrSamArray.");
    
            // Verify that the 'ptype' field is set to 0
            assertEquals(0, msrpc.getPtype(), "The 'ptype' field should be initialized to 0.");
    
            // Verify that the 'flags' field is set to DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb1/com/SmbComLockingAndXTest.java

     * is stored in private fields; tests make use of the same package to
     * access those members directly.
     */
    @ExtendWith(MockitoExtension.class)
    class SmbComLockingAndXTest {
    
        /**
         * Helper for setting a field via reflection.
         */
        private static void setField(Object target, String name, Object value) {
            try {
                Field f = target.getClass().getDeclaredField(name);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.1K bytes
    - Viewed (0)
Back to top