- Sort Score
- Result 10 results
- Languages All
Results 441 - 450 of 6,057 for cstring (0.17 sec)
-
tests/preload_suits_test.go
t.Error(err) } if string(toJSONString(got)) != string(toJSONString(want)) { t.Errorf("got %s; want %s", toJSONString(got), toJSONString(want)) } } type LevelA1 struct { ID uint Value string } type LevelA2 struct { ID uint Value string LevelA3s []*LevelA3 `json:",omitempty"` } type LevelA3 struct {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Fri Mar 18 05:38:46 UTC 2022 - 30.3K bytes - Viewed (0) -
schema/constraint.go
package schema import ( "regexp" "strings" "gorm.io/gorm/clause" ) // reg match english letters and midline var regEnLetterAndMidline = regexp.MustCompile(`^[\w-]+$`) type CheckConstraint struct { Name string Constraint string // length(phone) >= 10 *Field } func (chk *CheckConstraint) GetName() string { return chk.Name } func (chk *CheckConstraint) Build() (sql string, vars []interface{}) {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Mar 18 07:33:54 UTC 2024 - 1.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
private Path topDirectory; private List<String> goals; private boolean useReactor = false; private boolean recursive = true; private File pom; private String reactorFailureBehavior = REACTOR_FAIL_FAST; private boolean resume = false; private String resumeFrom; private String makeBehavior; private Properties systemProperties;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 31.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
public void removePathMappingList(final String sessionId) { pathMappingMap.remove(sessionId); } public List<PathMapping> getPathMappingList(final String sessionId) { if (sessionId == null) { return null; } return pathMappingMap.get(sessionId); } public String replaceUrl(final String sessionId, final String url) { // for crawling
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.6K bytes - Viewed (0) -
cni/pkg/config/config.go
// init container termination message and exit code. SidecarAnnotation string InitContainerName string InitTerminationMsg string InitExitCode int // Label and field selectors to select pods managed by race repair. LabelSelectors string FieldSelectors string } func (c InstallConfig) String() string { var b strings.Builder b.WriteString("MountedCNINetDir: " + c.MountedCNINetDir + "\n")
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 5.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
// groupId -> (artifactId -> (version -> project))) private Map<String, Map<String, Map<String, MavenProject>>> projects; private Map<String, Map<String, Map<String, MavenProject>>> allProjects; private Path projectLocalRepository; // projectId -> Deque<lifecycle> private final Map<String, Deque<String>> lifecycles = new ConcurrentHashMap<>(); @Inject ReactorReader(MavenSession session) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.3K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/base/StringsRepeatBenchmark.java
String x = oldRepeat(originalString, count); if (x.length() != (originalString.length() * count)) { throw new RuntimeException("Wrong length: " + x); } } } private static String oldRepeat(String string, int count) { // If this multiplication overflows, a NegativeArraySizeException or // OutOfMemoryError is not far behind final int len = string.length();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Sep 17 20:24:24 UTC 2021 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
protected JobExecutor jobExecutor; protected String sessionId; protected boolean useLocalFesen = true; protected String logFilePath; protected String logLevel; protected String logSuffix = StringUtil.EMPTY; protected List<String> jvmOptions = new ArrayList<>(); protected String lastaEnv; protected int timeout = -1; // sec
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/Config.java
*/ public static String getProperty( String key, String def ) { return prp.getProperty( key, def ); } /** * Retrieve a <code>String</code>. If the property is not found, <code>null</code> is returned. */ public static String getProperty( String key ) { return prp.getProperty( key ); } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/AnalyzerConverter.java
protected final String lang; protected LangAnayzerConverter(final String lang) { this.lang = lang; } @Override public void init() throws IOException { // nothing } @Override public List<String> convert(final String text, final String field, final String... dummy) throws IOException {
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 4.8K bytes - Viewed (0)