- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 468 for regnum (0.08 sec)
-
src/cmd/cgo/gcc.go
// struct_foo becomes "struct foo", and similarly for // union and enum. func cname(s string) string { if t, ok := nameToC[s]; ok { return t } if t, ok := strings.CutPrefix(s, "struct_"); ok { return "struct " + t } if t, ok := strings.CutPrefix(s, "union_"); ok { return "union " + t } if t, ok := strings.CutPrefix(s, "enum_"); ok { return "enum " + t } if t, ok := strings.CutPrefix(s, "sizeof_"); ok {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ArrayTable.java
return new ArrayTable<>(rowKeys, columnKeys); } /* * TODO(jlevy): Add factory methods taking an Enum class, instead of an * iterable, to specify the allowed row keys and/or column keys. Note that * custom serialization logic is needed to support different enum sizes during * serialization and deserialization. */ /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 26.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsThumbnailQueueCA.java
setCreatedTime_Sum("createdTime", opLambda); } public void setCreatedTime_Sum(String name, ConditionOptionCall<SumAggregationBuilder> opLambda) { SumAggregationBuilder builder = regSumA(name, "createdTime"); if (opLambda != null) { opLambda.callback(builder); } } public void setCreatedTime_ExtendedStats() { setCreatedTime_ExtendedStats(null);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 38.6K bytes - Viewed (0) -
build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java
* * Usage: java build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java */ public class KillLeakingJavaProcesses { enum ExecutionMode { /** * Run at the beginning of each build. Kill potentially leaked processes in previous builds. * Only kill local Gradle processes (classpath in checkout directory).
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java
public boolean set(T t) { return super.set(t); } @CanIgnoreReturnValue @Override public boolean setException(Throwable t) { return super.setException(t); } } enum Impl { NEW { @Override <T> Facade<T> newFacade() { return new NewAbstractFutureFacade<T>(); } }, OLD { @Override <T> Facade<T> newFacade() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:42:09 UTC 2024 - 13.6K bytes - Viewed (0) -
src/cmd/cgo/doc.go
<preamble> __typeof__(t1) *__cgo__1; __typeof__(v2) *__cgo__2; __typeof__(v3) *__cgo__3; __typeof__(i4) *__cgo__4; enum { __cgo_enum__4 = i4 }; __typeof__(i5) *__cgo__5; enum { __cgo_enum__5 = i5 }; __typeof__(u6) *__cgo__6; enum { __cgo_enum__6 = u6 }; __typeof__(f7) *__cgo__7; __typeof__(f8) *__cgo__8; __typeof__(s9) *__cgo__9; __typeof__(s10) *__cgo__10;
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Oct 01 22:52:54 UTC 2024 - 44K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java
builder.append("CANCELLED"); } catch (RuntimeException e) { builder.append("UNKNOWN, cause=[").append(e.getClass()).append(" thrown from get()]"); } } private enum State { PENDING { @Override boolean isDone() { return false; } @Override void maybeThrowOnGet(@Nullable Throwable cause) throws ExecutionException {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jan 22 19:37:41 UTC 2024 - 12.3K bytes - Viewed (0) -
docs/ja/docs/tutorial/query-params.md
``` この場合、3つのクエリパラメータがあります。: * `needy`、必須の `str` 。 * `skip`、デフォルト値を `0` とする `int` 。 * `limit`、オプショナルな `int` 。 /// tip | "豆知識" [パスパラメータ](path-params.md#_8){.internal-link target=_blank}と同様に `Enum` を使用できます。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/extensions.kt
/** * Align with build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java */ enum class KillProcessMode { KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS, KILL_PROCESSES_STARTED_BY_GRADLE, KILL_ALL_GRADLE_PROCESSES }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 10 03:25:26 UTC 2024 - 13.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java
* which case the root node of the resulting graph has no associated dependency. * * @since 4.0.0 */ @Experimental @Immutable public interface DependencyResolverRequest { enum RequestType { COLLECT, FLATTEN, RESOLVE } @Nonnull Session getSession(); @Nonnull RequestType getRequestType(); @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 16 14:15:37 UTC 2024 - 17.9K bytes - Viewed (0)