Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,692 for Tvalue (0.08 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocWorkAvoidanceIntegrationTest.groovy

            '''
            file('a/src/main/resources/A.properties') << '''
                aprop=avalue
            '''
    
            file('b/src/main/java/B.java') << '''
                public class B {
                    public int truth() { return 0; }
                }
            '''
            file('b/src/main/resources/B.properties') << '''
                bprop=bvalue
            '''
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/OverlayRoutedDataContainers.kt

    
    internal
    class OverlayRoutedValueDataContainer<DValue, DValueFactory : DValue, DLiteral : DValue>(
        private val overlayOriginContainer: OverlayOriginContainer,
        private val underlay: ValueDataContainer<DValue, DValueFactory, DLiteral>,
        private val overlay: ValueDataContainer<DValue, DValueFactory, DLiteral>
    ) : ValueDataContainer<DValue, DValueFactory, DLiteral> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/cbean/cq/bs/BsUserCQ.java

        }
    
        public void setBusinessCategory_GreaterThan(String businessCategory, ConditionOptionCall<RangeQueryBuilder> opLambda) {
            final Object _value = businessCategory;
            RangeQueryBuilder builder = regRangeQ("businessCategory", ConditionKey.CK_GREATER_THAN, _value);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 326.1K bytes
    - Viewed (0)
  4. src/sync/atomic/value.go

    package atomic
    
    import (
    	"unsafe"
    )
    
    // A Value provides an atomic load and store of a consistently typed value.
    // The zero value for a Value returns nil from [Value.Load].
    // Once [Value.Store] has been called, a Value must not be copied.
    //
    // A Value must not be copied after first use.
    type Value struct {
    	v any
    }
    
    // efaceWords is interface{} internal representation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. internal/s3select/sql/value.go

    func FromBool(b bool) *Value {
    	return &Value{value: b}
    }
    
    // FromTimestamp creates a Value from a timestamp
    func FromTimestamp(t time.Time) *Value {
    	return &Value{value: t}
    }
    
    // FromNull creates a Value with Null value
    func FromNull() *Value {
    	return &Value{value: nil}
    }
    
    // FromMissing creates a Value with Missing value
    func FromMissing() *Value {
    	return &Value{value: Missing{}}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 20.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsKeyMatchCQ.java

            setBoost_GreaterThan(boost, null);
        }
    
        public void setBoost_GreaterThan(Float boost, ConditionOptionCall<RangeQueryBuilder> opLambda) {
            final Object _value = boost;
            RangeQueryBuilder builder = regRangeQ("boost", ConditionKey.CK_GREATER_THAN, _value);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setBoost_LessThan(Float boost) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsSearchLogCQ.java

        }
    
        public void setAccessType_GreaterThan(String accessType, ConditionOptionCall<RangeQueryBuilder> opLambda) {
            final Object _value = accessType;
            RangeQueryBuilder builder = regRangeQ("accessType", ConditionKey.CK_GREATER_THAN, _value);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setAccessType_LessThan(String accessType) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 145.4K bytes
    - Viewed (0)
  8. test/arenas/smoke.go

    	"reflect"
    )
    
    func main() {
    	a := arena.NewArena()
    	defer a.Free()
    
    	const iValue = 10
    
    	i := arena.New[int](a)
    	*i = iValue
    
    	if *i != iValue {
    		// This test doesn't reasonably expect this to fail. It's more likely
    		// that *i crashes for some reason. Still, why not check it.
    		log.Fatalf("bad i value: got %d, want %d", *i, iValue)
    	}
    
    	const wantLen = 125
    	const wantCap = 1912
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 16 17:08:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/cbean/cq/bs/BsGroupCQ.java

        }
    
        public void setGidNumber_GreaterThan(Long gidNumber, ConditionOptionCall<RangeQueryBuilder> opLambda) {
            final Object _value = gidNumber;
            RangeQueryBuilder builder = regRangeQ("gidNumber", ConditionKey.CK_GREATER_THAN, _value);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setGidNumber_LessThan(Long gidNumber) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/data/DocumentDataContainers.kt

    
    interface ValueDataContainer<DValue, DValueFactory : DValue, DLiteral : DValue> {
        fun data(value: DeclarativeDocument.ValueNode): DValue = when (value) {
            is DeclarativeDocument.ValueNode.ValueFactoryNode -> data(value)
            is DeclarativeDocument.ValueNode.LiteralValueNode -> data(value)
        }
    
        fun data(value: DeclarativeDocument.ValueNode.ValueFactoryNode): DValueFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top