- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 41 for Template (0.06 sec)
-
docs/en/docs/advanced/templates.md
/// ## Writing templates { #writing-templates } Then you can write a template at `templates/item.html` with, for example: ```jinja hl_lines="7" {!../../docs_src/templates/templates/item.html!} ``` ### Template Context Values { #template-context-values } In the HTML that contains: {% raw %} ```jinja Item ID: {{ id }} ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 3.5K bytes - Viewed (0) -
docs/en/docs/project-generation.md
## Full Stack FastAPI Template - Technology Stack and Features { #full-stack-fastapi-template-technology-stack-and-features } - ⚡ [**FastAPI**](https://fastapi.tiangolo.com) for the Python backend API. - 🧰 [SQLModel](https://sqlmodel.tiangolo.com) for the Python SQL database interactions (ORM).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java
this.prefix = prefix + ":"; } @Override public Object evaluate(String template, Map<String, Object> paramMap) { this.lastScript = template; this.lastParams = paramMap; return prefix + "processed: " + template; } public String getLastScript() { return lastScript; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineTest.java
public void test_evaluate_withEmptyTemplate() { String template = ""; Map<String, Object> paramMap = new HashMap<>(); paramMap.put("key", "value"); Object result = scriptEngine.evaluate(template, paramMap); assertEquals("", result); } // Test evaluate method with null template public void test_evaluate_withNullTemplate() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java
Object result = testScriptEngine.evaluate("template", null); assertEquals("processed: template with params", result); } // Test evaluate with empty parameters public void test_evaluate_emptyParams() { Map<String, Object> emptyParams = new HashMap<>(); Object result = testScriptEngine.evaluate("template", emptyParams); assertEquals("processed: template with params", result); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.5K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Strings.java
public static String lenientFormat( @Nullable String template, @Nullable Object @Nullable ... args) { template = String.valueOf(template); // null -> "null" if (args == null) { args = new Object[] {"(Object[])null"}; } // start substituting the arguments into the '%s' placeholders StringBuilder builder = new StringBuilder(template.length() + 16 * args.length); int templateStart = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 27 17:53:41 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java
public Object evaluate(String template, Map<String, Object> paramMap) { return "TestEngine[" + identifier + "]: " + template; } } private static class CustomScriptEngine implements ScriptEngine { @Override public Object evaluate(String template, Map<String, Object> paramMap) { return "CustomEngine: " + template; } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/RelationshipTester.java
unrelatedInfo, !equivalence.equivalent(itemInfo.value, unrelatedInfo.value)); } private void assertWithTemplate(String template, Item<T> item, Item<T> other, boolean condition) { if (!condition) { throw new AssertionFailedError( template .replace("$RELATIONSHIP", relationshipName) .replace("$HASH", hashName)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 5.9K bytes - Viewed (0) -
docs/en/data/topic_repos.yml
- name: full-stack-fastapi-template html_url: https://github.com/fastapi/full-stack-fastapi-template stars: 37341 owner_login: fastapi owner_html_url: https://github.com/fastapi - name: Hello-Python html_url: https://github.com/mouredev/Hello-Python stars: 31799 owner_login: mouredev owner_html_url: https://github.com/mouredev - name: serve html_url: https://github.com/jina-ai/serve stars: 21721 owner_login: jina-ai
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 08:57:41 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/util/SMBUtil.java
*/ public static void writeUTime(final long t, final byte[] dst, final int dstIndex) { writeInt4(t / 1000, dst, dstIndex); } /** * SMB1 protocol header template with magic number 0xFF 'SMB' */ public static final byte[] SMB_HEADER = { (byte) 0xFF, (byte) 'S', (byte) 'M', (byte) 'B', (byte) 0x00, (byte) 0x00, (byte) 0x00,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8K bytes - Viewed (0)