- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 104 for Prompt (0.06 seconds)
-
docs/en/docs/js/custom.js
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 17:59:48 GMT 2026 - 7.7K bytes - Click Count (2) -
Vagrantfile
extra ) end # Sets up a consistent prompt for all users. Or tries to. The VM might # contain overrides for root and vagrant but this attempts to work around # them by re-source-ing the standard prompt file. def sh_set_prompt(config, name) config.vm.provision 'set prompt', type: 'shell', inline: <<-SHELL cat \<\<PROMPT > /etc/profile.d/elasticsearch_prompt.sh export PS1='#{name}:\\w$ ' PROMPT
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Feb 17 17:41:23 GMT 2021 - 14.9K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/ConsolePasswordPrompt.java
public static final String NAME = "console-prompt"; private final Prompter prompter; @Inject public ConsolePasswordPrompt(Prompter prompter) { this.prompter = prompter; } @Override public String description() { return "Secure console password prompt"; } @Override public Optional<String> configTemplate() {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Nov 16 13:55:43 GMT 2024 - 2.7K bytes - Click Count (0) -
scripts/translate.py
) langs = get_langs() language_name = langs[language] lang_path = Path(f"docs/{language}") lang_path.mkdir(exist_ok=True) lang_prompt_path = lang_path / "llm-prompt.md" assert lang_prompt_path.exists(), f"Prompt file not found: {lang_prompt_path}" lang_prompt_content = lang_prompt_path.read_text(encoding="utf-8") en_docs_path = Path("docs/en/docs")Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:37:41 GMT 2026 - 15.8K bytes - Click Count (0) -
src/main/java/jcifs/smb/NtlmAuthenticator.java
* * @param url the URL that requires authentication * @param sae the authentication exception that was thrown * @return credentials returned by prompt */ public static NtlmPasswordAuthenticator requestNtlmPasswordAuthentication(final String url, final SmbAuthException sae) { return requestNtlmPasswordAuthentication(auth, url, sae); } /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.4K bytes - Click Count (0) -
docs_src/vibe/tutorial001_py310.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Apr 01 16:16:24 GMT 2026 - 204 bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/LlmChatRequestTest.java
final LlmChatRequest result = request.addSystemMessage("System prompt"); assertSame(request, result); assertEquals(1, request.getMessages().size()); assertEquals(LlmMessage.ROLE_SYSTEM, request.getMessages().get(0).getRole()); assertEquals("System prompt", request.getMessages().get(0).getContent()); } @Test public void test_addUserMessage() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 5.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/LlmMessageTest.java
} @Test public void test_systemFactory() { final LlmMessage message = LlmMessage.system("System prompt"); assertEquals(LlmMessage.ROLE_SYSTEM, message.getRole()); assertEquals("System prompt", message.getContent()); } @Test public void test_userFactory() { final LlmMessage message = LlmMessage.user("User question");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 3.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java
void setTestIntentDetectionPrompt(final String prompt) { this.testIntentDetectionPrompt = prompt; } void setTestSystemPrompt(final String prompt) { this.testSystemPrompt = prompt; } void setTestSummarySystemPrompt(final String prompt) { this.testSummarySystemPrompt = prompt; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 53K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/RecordingAuthenticator.kt
override fun getPasswordAuthentication(): PasswordAuthentication? { calls.add( "host=$requestingHost port=$requestingPort site=${requestingSite.hostName} " + "url=$requestingURL type=$requestorType prompt=$requestingPrompt " + "protocol=$requestingProtocol scheme=$requestingScheme", ) return authentication } companion object { /** base64("username:password") */
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Dec 27 13:39:56 GMT 2024 - 1.4K bytes - Click Count (0)