Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 967 for field5 (0.03 sec)

  1. src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java

            });
        }
    
        @Test
        void testInheritedFields() throws Exception {
            // Verify inherited fields are properly set
            assertEquals(0x10, msrpcShareGetInfo.getOpnum());
    
            // Test that the info field is properly initialized
            Field infoField = msrpcShareGetInfo.getClass().getSuperclass().getDeclaredField("info");
            infoField.setAccessible(true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/TermRangeQueryCommand.java

                return buildDefaultQueryBuilder(fessConfig, context, (f, b) -> QueryBuilders.matchPhraseQuery(f, origQuery).boost(b));
            }
    
            context.addFieldLog(field, termRangeQuery.toString(field));
            final RangeQueryBuilder rangeQuery = QueryBuilders.rangeQuery(field);
            final BytesRef min = termRangeQuery.getLowerTerm();
            if (min != null) {
                if (termRangeQuery.includesLower()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractFutureState.java

                  thrownAtomicReferenceFieldUpdaterFailure);
        }
      }
    
      // TODO(lukes): Investigate using a @Contended annotation on these fields once one is available.
    
      /*
       * The following fields are package-private, even though we intend never to use them outside this
       * file. If they were instead private, then we wouldn't be able to access them reflectively from
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/SmbComCloseTest.java

     * <p>
     * All tests are written in the same package as the class under test so
     * that package-private fields and constants can be accessed directly.
     */
    @ExtendWith(MockitoExtension.class)
    class SmbComCloseTest {
    
        /**
         * Ensure the constructor sets the {@code command} field of the
         * {@link ServerMessageBlock} superclass to {@link ServerMessageBlock#SMB_COM_CLOSE}.
         */
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

                if (ComponentUtil.hasComponent("ingestFactory")) {
                    try {
                        java.lang.reflect.Field field = IndexUpdateCallbackImpl.class.getDeclaredField("ingestFactory");
                        field.setAccessible(true);
                        field.set(this, ComponentUtil.getComponent("ingestFactory"));
                    } catch (Exception e) {
                        // Ignore for tests
                    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/dcerpc/msrpc/MsrpcSamrOpenAliasTest.java

            try {
                java.lang.reflect.Field ptypeField = jcifs.dcerpc.DcerpcMessage.class.getDeclaredField("ptype");
                ptypeField.setAccessible(true);
                assertEquals(0, ptypeField.get(msrpcSamrOpenAlias), "ptype should be initialized to 0");
    
                java.lang.reflect.Field flagsField = jcifs.dcerpc.DcerpcMessage.class.getDeclaredField("flags");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/entity/QueryContext.java

        }
    
        /**
         * Adds a field and text pair to the field log for tracking query terms.
         * @param field The field name.
         * @param text The query text for this field.
         */
        public void addFieldLog(final String field, final String text) {
            if (fieldLogMap == null) {
                return;
            }
    
            List<String> list = fieldLogMap.get(field);
            if (list == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

                  thrownAtomicReferenceFieldUpdaterFailure);
        }
      }
    
      // TODO(lukes): Investigate using a @Contended annotation on these fields once one is available.
    
      /*
       * The following fields are package-private, even though we intend never to use them outside this
       * file. If they were instead private, then we wouldn't be able to access them reflectively from
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java

            facetQueryView.addQuery("label1", "field1:value1");
            facetQueryView.addQuery("label2", "field2:value2");
    
            facetQueryView.init();
    
            // Should not modify query map when no filetype queries present
            assertEquals(2, facetQueryView.getQueryMap().size());
            assertEquals("field1:value1", facetQueryView.getQueryMap().get("label1"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/user/EditForm.java

            super();
        }
    
        /**
         * The unique identifier of the user being edited.
         * This is a required field for identifying which user to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The version number of the user for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
         * by ensuring the user hasn't been modified by another process.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
Back to top