- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 90 for xxxx (0.01 seconds)
-
cmd/format-meta.go
) const ( // Version of the formatMetaV1 formatMetaVersionV1 = "1" ) // format.json currently has the format: // { // "version": "1", // "format": "XXXXX", // "XXXXX": { // // } // } // Here "XXXXX" depends on the backend, currently we have "fs" and "xl" implementations. // formatMetaV1 should be inherited by backend format structs. Please look at format-fs.go // and format-xl.go for details.Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Apr 23 18:58:53 GMT 2021 - 1.7K bytes - Click Count (0) -
misc/cgo/gmp/gmp.go
additional context for the C file. Here it is just a single #include but it could contain arbitrary C definitions to be imported and used. Cgo recognizes any use of a qualified identifier C.xxx and uses gcc to find the definition of xxx. If xxx is a type, cgo replaces C.xxx with a Go translation. C arithmetic types translate to precisely-sized Go arithmetic types. A C struct translates to a Go struct, field by
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Apr 11 16:34:30 GMT 2022 - 9.5K bytes - Click Count (0) -
api/maven-api-settings/src/test/java/org/apache/maven/api/settings/SettingsTest.java
class SettingsTest { @Test void testSetLocalRepository() { Settings s = Settings.newInstance(); s = s.withLocalRepository("xxx"); assertEquals("xxx", s.getLocalRepository()); s = s.withLocalRepository("yyy"); assertEquals("yyy", s.getLocalRepository()); s = s.withLocalRepository(null);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 15 17:24:20 GMT 2023 - 1.4K bytes - Click Count (0) -
src/test/java/org/codelibs/core/exception/ConverterRuntimeExceptionTest.java
@Test public void test() throws Exception { final ConverterRuntimeException e = new ConverterRuntimeException("hoge", "xxx", new RuntimeException("cause")); System.out.println(e.getMessage()); assertThat(e.getPropertyName(), is("hoge")); assertThat(e.getValue(), is((Object) "xxx")); assertThat(e.getCause().getMessage(), is("cause")); }Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 1.2K bytes - Click Count (0) -
dbflute_fess/dfprop/documentMap.dfprop
# ; isDbCommentOnAliasBasis = true # ; isEntityJavaDocDbCommentValid = true # ; isEntityDBMetaDbCommentValid = true # ; schemaHtmlFileName = xxx.html # ; isSuppressSchemaHtmlOutsideSql = false # ; isSuppressSchemaHtmlProcedure = false # ; historyHtmlFileName = xxx.html # ; isCheckColumnDefOrderDiff = true # ; isCheckDbCommentDiff = true # ; isCheckProcedureDiff = true # ; loadDataReverseMap = map:{Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Oct 31 23:35:14 GMT 2015 - 9.4K bytes - Click Count (0) -
fess-crawler/src/test/resources/ajax/index.html
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Oct 11 02:16:55 GMT 2015 - 1.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/html/HtmlEscapersTest.java
* * @author David Beaumont */ @GwtCompatible @NullUnmarked public class HtmlEscapersTest extends TestCase { public void testHtmlEscaper() throws Exception { assertEquals("xxx", htmlEscaper().escape("xxx")); assertEquals(""test"", htmlEscaper().escape("\"test\"")); assertEquals("'test'", htmlEscaper().escape("'test'"));Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 05 22:03:28 GMT 2025 - 2.3K bytes - Click Count (0) -
src/test/java/org/codelibs/core/TestUtil.java
*/ public abstract class TestUtil { /** * 実際の値が期待する{@literal clazz}と等しいかを検証する{@link Matcher}を返します。 * * <pre>assertThat(clazz, is(Xxx.class));</pre> * <p> * と書くと{@link CoreMatchers#is(Class)}が適用されて{@literal clazz}が {@literal Xxx} * のインスタンスかを検証されてしまうのでこれが必要。 * * @param clazz * 期待するクラス * @return クラスをチェックする{@link Matcher} */Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 1.4K bytes - Click Count (0) -
src/test/java/org/codelibs/core/beans/util/BeanMapTest.java
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 1.7K bytes - Click Count (0) -
cmd/batch-expire_test.go
# retainVersions: 5 # keep the latest 5 versions of the object including delete markers. notify: endpoint: https://notify.endpoint # notification endpoint to receive job completion status token: Bearer xxxxx # optional authentication token for the notification endpoint retry: attempts: 10 # number of retries for the job before giving up delay: 500ms # least amount of delay between each retry `Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Aug 01 12:53:30 GMT 2024 - 5.5K bytes - Click Count (0)