Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,490 for value$ (0.19 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsRoleType.java

            checkSpecifiedProperty("value");
            return convertEmptyToNull(value);
        }
    
        public void setValue(String value) {
            registerModifiedProperty("value");
            this.value = value;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtConstantValueFactory.kt

            is Short -> KaConstantValue.KaShortConstantValue(value, expression)
            is UShort -> KaConstantValue.KaUnsignedShortConstantValue(value, expression)
            is Int -> KaConstantValue.KaIntConstantValue(value, expression)
            is UInt -> KaConstantValue.KaUnsignedIntConstantValue(value, expression)
            is Long -> KaConstantValue.KaLongConstantValue(value, expression)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/StaticValue.java

    import javax.annotation.Nullable;
    
    /**
     * A {@link PropertyValue} backed by a fixed value.
     */
    public class StaticValue implements PropertyValue {
        private final Object value;
    
        public StaticValue(@Nullable Object value) {
            this.value = value;
        }
    
        public static PropertyValue of(@Nullable Object value) {
            return new StaticValue(value);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/OutputStreamBackedEncoder.java

            outputStream.writeFloat(value);
        }
    
        @Override
        public void writeDouble(double value) throws IOException {
            outputStream.writeDouble(value);
        }
    
        @Override
        public void writeBoolean(boolean value) throws IOException {
            outputStream.writeBoolean(value);
        }
    
        @Override
        public void writeString(CharSequence value) throws IOException {
            if (value == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. src/log/slog/attr.go

    }
    
    // Any returns an Attr for the supplied value.
    // See [AnyValue] for how values are treated.
    func Any(key string, value any) Attr {
    	return Attr{key, AnyValue(value)}
    }
    
    // Equal reports whether a and b have equal keys and values.
    func (a Attr) Equal(b Attr) bool {
    	return a.Key == b.Key && a.Value.Equal(b.Value)
    }
    
    func (a Attr) String() string {
    	return a.Key + "=" + a.Value.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 18:23:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/kryo/KryoBackedEncoder.java

        public void writeInt(int value) {
            output.writeInt(value);
        }
    
        @Override
        public void writeSmallInt(int value) {
            output.writeInt(value, true);
        }
    
        @Override
        public void writeShort(short value) throws IOException {
            output.writeShort(value);
        }
    
        @Override
        public void writeFloat(float value) throws IOException {
            output.writeFloat(value);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. clause/where_test.go

    			}},
    			"SELECT * FROM `users` WHERE `users`.`id` = ? OR `name` <> ? AND `age` > ?",
    			[]interface{}{"1", "jinzhu", 18},
    		},
    		{
    			[]clause.Interface{clause.Select{}, clause.From{}, clause.Where{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Apr 25 12:22:53 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. callbacks/update.go

    				}
    			}
    		case reflect.Struct:
    			for _, field := range stmt.Schema.PrimaryFields {
    				if value, isZero := field.ValueOf(stmt.Context, stmt.ReflectValue); !isZero {
    					stmt.AddClause(clause.Where{Exprs: []clause.Expression{clause.Eq{Column: field.DBName, Value: value}}})
    				}
    			}
    		}
    	}
    
    	switch value := updatingValue.Interface().(type) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 05:44:55 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/AbstractMinimalProviderTest.groovy

            e.message == 'Cannot query the value of this provider because it has no value available.'
        }
    
        def "toString() displays nice things"() {
            expect:
            new TestProvider().toString() == "provider(java.lang.String)"
        }
    
        static class TestProvider extends AbstractMinimalProvider {
            @Nullable
            String value
    
            void value(String s) {
                this.value = s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/util/internal/DeferredUtil.java

            }
            Object value = unpackNestableDeferred(deferred);
            if (value instanceof Provider) {
                return providerResolutionStrategy.resolve((Provider<?>) value);
            }
            if (value instanceof Factory) {
                return ((Factory<?>) value).create();
            }
            return value;
        }
    
        public static boolean isDeferred(Object value) {
            return value instanceof Provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top