- Sort Score
- Result 10 results
- Languages All
Results 4711 - 4720 of 6,031 for AsString (0.06 sec)
-
src/main/java/org/codelibs/fess/script/AbstractScriptEngine.java
public abstract class AbstractScriptEngine implements ScriptEngine { public void register() { ComponentUtil.getScriptEngineFactory().add(getName(), this); } protected abstract String getName();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 920 bytes - Viewed (0) -
clause/group_by_test.go
package clause_test import ( "fmt" "testing" "gorm.io/gorm/clause" ) func TestGroupBy(t *testing.T) { results := []struct { Clauses []clause.Interface Result string Vars []interface{} }{ { []clause.Interface{clause.Select{}, clause.From{}, clause.GroupBy{ Columns: []clause.Column{{Name: "role"}}, Having: []clause.Expression{clause.Eq{"role", "admin"}}, }},
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Jan 06 07:02:53 UTC 2022 - 1.1K bytes - Viewed (0) -
guava/src/com/google/common/io/ByteStreams.java
throw new IllegalStateException(e); } } @Override @CheckForNull public String readLine() { try { return input.readLine(); } catch (IOException e) { throw new IllegalStateException(e); } } @Override public String readUTF() { try { return input.readUTF(); } catch (IOException e) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 29.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/test/net/protocol/xxx2/Handler.java
import java.io.IOException; import java.net.URL; import java.net.URLConnection; import java.net.URLStreamHandler; public class Handler extends URLStreamHandler { public static final String PROTOCOL_TYPE = "file"; @Override protected URLConnection openConnection(URL u) throws IOException { return null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Jun 18 00:44:11 UTC 2024 - 1007 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/EditForm.java
import jakarta.validation.constraints.Size; /** * @author Keiichi Watanabe */ public class EditForm extends CreateForm { @Required @Size(max = 1000) public String id; @Required @ValidateTypeFailure public Integer versionNo;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportParameter.kt
interface IncubatingApiReportParameter : WorkParameters { val srcDirs: ConfigurableFileCollection val htmlReportFile: RegularFileProperty val textReportFile: RegularFileProperty val title: Property<String> val releasedVersionsFile: RegularFileProperty
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.1K bytes - Viewed (0) -
okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt
} internal class LogRecorder( val prefix: Regex = Regex(""), ) : HttpLoggingInterceptor.Logger { private val logs = mutableListOf<String>() private var index = 0 fun assertLogEqual(expected: String) = apply { assertThat(index, "No more messages found") .isLessThan(logs.size) assertThat(logs[index++]).isEqualTo(expected)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 09:14:38 UTC 2024 - 37.6K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Converter.java
* be overridden. * </ul> * * <h3>Example</h3> * * <pre> * return new Converter<Integer, String>() { * protected String doForward(Integer i) { * return Integer.toHexString(i); * } * * protected Integer doBackward(String s) { * return parseUnsignedInt(s, 16); * } * };</pre> * * <p>An alternative using Java 8: * * <pre>{@code
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 15 16:12:13 UTC 2024 - 23K bytes - Viewed (0) -
build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithAnnotation.groovy
package org.gradle.test @Deprecated @JavaAnnotation class GroovyClassWithAnnotation { @Deprecated @JavaAnnotation String annotatedProperty @Deprecated @JavaAnnotation void annotatedMethod() { }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 214 bytes - Viewed (0) -
cmd/erasure-metadata_test.go
} } }) } } func TestTransitionInfoEquals(t *testing.T) { inputs := []struct { tier string remoteObjName string remoteVersionID string status string }{ { tier: "S3TIER-1", remoteObjName: mustGetUUID(), remoteVersionID: mustGetUUID(), status: "complete", }, {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jul 25 21:02:50 UTC 2024 - 13.5K bytes - Viewed (0)