Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for setId (0.16 sec)

  1. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                    logger.warn("Failed to process a thumbnail generation.", e);
                }
            });
    
            if (!idList.isEmpty()) {
                thumbnailQueueBhv.queryDelete(cb -> {
                    cb.query().setId_InScope(idList);
                });
                thumbnailQueueBhv.refresh();
            }
            return idList.size();
        }
    
        protected void process(final FessConfig fessConfig, final ThumbnailQueue entity) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionQuery.java

        //                                                                        ============
        public class DocMetaCQ {
    
            public void setId_Equal(String id) {
                regQ(QueryBuilders.idsQuery().addIds(id));
            }
        }
    
        @FunctionalInterface
        public interface ConditionOptionCall<OP extends QueryBuilder> {
    
            /**
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionQuery.java

        //                                                                        ============
        public class DocMetaCQ {
    
            public void setId_Equal(String id) {
                regQ(QueryBuilders.idsQuery().addIds(id));
            }
        }
    
        @FunctionalInterface
        public interface ConditionOptionCall<OP extends QueryBuilder> {
    
            /**
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

                @Override
                public OptionalEntity<WebConfig> getWebConfig(final String id) {
                    final WebConfig webConfig = new WebConfig();
                    webConfig.setId(id);
                    return OptionalEntity.of(webConfig);
                }
            }, WebConfigService.class.getCanonicalName());
        }
    
        public void test_sendDocuments() {
            documentSizeByQuery = 0L;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  5. cmd/erasure-sets.go

    			timer.Reset(globalAPIConfig.getStaleUploadsCleanupInterval())
    		}
    	}
    }
    
    type auditObjectOp struct {
    	Name  string   `json:"name"`
    	Pool  int      `json:"poolId"`
    	Set   int      `json:"setId"`
    	Disks []string `json:"disks"`
    }
    
    // Add erasure set information to the current context
    func auditObjectErasureSet(ctx context.Context, object string, set *erasureObjects) {
    	if len(logger.AuditTargets()) == 0 {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 37.7K bytes
    - Viewed (5)
  6. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *     public static Foo create(String a, String b, int c, boolean d) {
       *       return Foo.builder()
       *           .setA(a)
       *           .setB(b)
       *           .setC(c)
       *           .setD(d)
       *           .build();
       *     }
       *   }
       *
       *   public void testEquals() {
       *     new ClassSanityTester()
       *       .forAllPublicStaticMethods(FooFactoryForTest.class)
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 08 17:31:55 GMT 2024
    - 33K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *     public static Foo create(String a, String b, int c, boolean d) {
       *       return Foo.builder()
       *           .setA(a)
       *           .setB(b)
       *           .setC(c)
       *           .setD(d)
       *           .build();
       *     }
       *   }
       *
       *   public void testEquals() {
       *     new ClassSanityTester()
       *       .forAllPublicStaticMethods(FooFactoryForTest.class)
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 08 17:31:55 GMT 2024
    - 33K bytes
    - Viewed (0)
Back to top