Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for greaterThan (0.18 sec)

  1. dbflute_fess/dfprop/conditionBeanMap.dfprop

    #
    # Example:
    # map:{
    #     # This means that String includes GreaterThan at MEMBER.MEMBER_ACCOUNT only
    #     # and LessThan at PRODUCT.PRODUCT_NAME and PRODUCT.PRODUCT_HANDLE_CODE,
    #     # and InScope for LONGVARCHAR(e.g. text type) is excluded.
    #     ; String = map:{
    #         ; GreaterThan = map:{ MEMBER = list:{ MEMBER_ACCOUNT } }
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 4K bytes
    - Viewed (1)
  2. cmd/batch-job-common-types.go

    			msg:  err.Error(),
    		}
    	}
    	return nil
    }
    
    // BatchJobSizeFilter supports size based filters - LesserThan and GreaterThan
    type BatchJobSizeFilter struct {
    	line, col  int
    	UpperBound BatchJobSize `yaml:"lessThan" json:"lessThan"`
    	LowerBound BatchJobSize `yaml:"greaterThan" json:"greaterThan"`
    }
    
    // UnmarshalYAML - BatchJobSizeFilter extends unmarshal to extract line, column information
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 01 21:53:26 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  3. cmd/batch-expire_test.go

              value: image/* # match objects with 'content-type', all values starting with 'image/'
          size:
            lessThan: "10MiB" # match objects with size less than this value (e.g. 10MiB)
            greaterThan: 1MiB # match objects with size greater than this value (e.g. 1MiB)
          purge:
              # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

            return scheduledJobBhv.selectPage(cb -> {
                cb.fetchFirst(fessConfig.getPageScheduledJobMaxFetchSizeAsInteger());
                cb.query().setAvailable_Equal(Boolean.TRUE);
                cb.query().setUpdatedTime_GreaterThan(updateTime);
            });
        }
    
        public OptionalEntity<ScheduledJob> getScheduledJob(final String id) {
            return scheduledJobBhv.selectByPK(id);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  5. internal/bucket/lifecycle/filter.go

    // Validate - validates the filter element
    func (f Filter) Validate() error {
    	if f.IsEmpty() {
    		return errXMLNotWellFormed
    	}
    	// A Filter must have exactly one of Prefix, Tag,
    	// ObjectSize{LessThan,GreaterThan} or And specified.
    	type predType uint8
    	const (
    		nonePred predType = iota
    		prefixPred
    		andPred
    		tagPred
    		sizeLtPred
    		sizeGtPred
    	)
    	var predCount int
    	var pType predType
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Feb 27 00:01:20 GMT 2024
    - 6.2K bytes
    - Viewed (0)
Back to top