- Sort Score
- Result 10 results
- Languages All
Results 611 - 620 of 2,618 for VALUE (0.09 sec)
-
guava-tests/test/com/google/common/primitives/FloatsTest.java
public void testHashCode() { for (float value : VALUES) { assertThat(Floats.hashCode(value)).isEqualTo(((Float) value).hashCode()); } } public void testIsFinite() { for (float value : NUMBERS) { assertThat(Floats.isFinite(value)) .isEqualTo(!(Float.isInfinite(value) || Float.isNaN(value))); } } public void testCompare() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 30.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformerTest.java
accessResultDataImpl.setData(value.getBytes(Constants.UTF_8)); accessResultDataImpl.setEncoding(Constants.UTF_8); accessResultDataImpl.setTransformerName("xpathTransformer"); final Object obj = xpathTransformer.getData(accessResultDataImpl); assertEquals(value, obj); } public void test_getData_wrongName() throws Exception {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 12.5K bytes - Viewed (0) -
tests/embedded_struct_test.go
type Content struct { Content interface{} `gorm:"type:String"` } func (c Content) Value() (driver.Value, error) { // mssql driver with issue on handling null bytes https://github.com/denisenkom/go-mssqldb/issues/530, b, err := json.Marshal(c) return string(b[:]), err } func (c *Content) Scan(src interface{}) error { var value Content str, ok := src.(string) if !ok { byt, ok := src.([]byte) if !ok {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed May 08 04:07:58 UTC 2024 - 7.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/web.xml
<filter-class>org.codelibs.fess.filter.EncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> <init-param> <param-name>encodingRules</param-name> <param-value>sjis:Shift_JIS,eucjp:EUC-JP</param-value> </init-param> </filter> <filter> <filter-name>corsFilter</filter-name>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 29 02:54:01 UTC 2024 - 7.1K bytes - Viewed (0) -
compat/maven-compat/src/main/mdo/paramdoc.mdo
<name>Paramdoc</name> <description><![CDATA[Documentation on parameter expressions supported by Maven for use in plugins.]]></description> <defaults> <default> <key>package</key> <value>org.apache.maven.usability.plugin</value> </default> </defaults> <classes> <class rootElement="true" xml.tagName="paramdoc"> <version>1.0.0</version> <name>ExpressionDocumentation</name>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype.jsp
<label for="value" class="col-sm-2 text-sm-right col-form-label"><la:message key="labels.labeltype_value"/></label> <div class="col-sm-10"> <la:text styleId="value" property="value" styleClass="form-control"/> </div>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Mar 31 05:47:05 UTC 2020 - 10.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java
* @param value the data to associate with the key, may be {@code null} to remove the mapping */ <T> void set(@Nonnull Key<T> key, @Nullable T value); /** * Associates the specified session data with the given key if the key is currently mapped to the given value. This * method provides an atomic compare-and-update of some key's value. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Feb 28 23:31:09 UTC 2024 - 4.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype_edit.jsp
<label for="value" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.labeltype_value"/></label> <div class="col-sm-9"> <la:errors property="value"/> <la:text styleId="value" property="value" styleClass="form-control"/>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 7.5K bytes - Viewed (0) -
.idea/misc.xml
<type id="web" /> </component> <component name="NullableNotNullManager"> <option name="myDefaultNullable" value="javax.annotation.Nullable" /> <option name="myDefaultNotNull" value="javax.annotation.Nonnull" /> <option name="myNullables"> <value> <list size="16"> <item index="0" class="java.lang.String" itemvalue="android.support.annotation.Nullable" />
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Nov 06 06:19:29 UTC 2024 - 4.7K bytes - Viewed (0) -
tensorflow/c/c_api.h
// If this function succeeds: // * *status is set to an OK value, // * a TF_Operation is added to the graph, // * a non-null value pointing to the added operation is returned -- // this value is valid until the underlying graph is deleted. // Otherwise: // * *status is set to a non-OK value, // * the graph is not modified, // * a null value is returned. // In either case, it deletes `desc`.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0)