- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 440 for probar (0.26 seconds)
-
guava-tests/test/com/google/common/base/AsciiTest.java
assertThat(Ascii.truncate("foobar", 10, "...")).isEqualTo("foobar"); assertThat(Ascii.truncate("foobar", 5, "...")).isEqualTo("fo..."); assertThat(Ascii.truncate("foobar", 6, "...")).isEqualTo("foobar"); assertThat(Ascii.truncate("foobar", 3, "...")).isEqualTo("..."); assertThat(Ascii.truncate("foobar", 10, "…")).isEqualTo("foobar"); assertThat(Ascii.truncate("foobar", 4, "…")).isEqualTo("foo…");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 5.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
} } /** * Initializes OpenSearch monitoring probes. * Forces the loading of process, OS, and JVM monitoring probes * to ensure they are available for system monitoring during crawling. */ static void initializeProbes() { // Force probes to be loaded ProcessProbe.getInstance(); OsProbe.getInstance(); JvmInfo.jvmInfo();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 32.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/CaseFormatTest.java
assertThat(LOWER_CAMEL.to(LOWER_CAMEL, "foo")).isEqualTo("foo"); assertThat(LOWER_CAMEL.to(LOWER_CAMEL, "fooBar")).isEqualTo("fooBar"); } public void testLowerCamelToUpperCamel() { assertThat(LOWER_CAMEL.to(UPPER_CAMEL, "foo")).isEqualTo("Foo"); assertThat(LOWER_CAMEL.to(UPPER_CAMEL, "fooBar")).isEqualTo("FooBar"); assertThat(LOWER_CAMEL.to(UPPER_CAMEL, "hTTP")).isEqualTo("HTTP"); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 9.5K bytes - Click Count (0) -
tests/test_security_http_base.py
def test_security_http_base(): response = client.get("/users/me", headers={"Authorization": "Other foobar"}) assert response.status_code == 200, response.text assert response.json() == {"scheme": "Other", "credentials": "foobar"} def test_security_http_base_with_whitespaces(): response = client.get("/users/me", headers={"Authorization": "Other foobar "}) assert response.status_code == 200, response.text
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Feb 08 10:18:38 GMT 2026 - 2.2K bytes - Click Count (0) -
tests/test_path.py
def test_path_foobar(): response = client.get("/path/foobar") assert response.status_code == 200 assert response.json() == "foobar" def test_path_str_foobar(): response = client.get("/path/str/foobar") assert response.status_code == 200 assert response.json() == "foobar" def test_path_str_42(): response = client.get("/path/str/42")
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Dec 27 18:19:10 GMT 2025 - 20.5K bytes - Click Count (2) -
docs/sts/assume-role.md
``` [foobar] region = us-east-1 aws_access_key_id = foobar aws_secret_access_key = foo12345 ``` > NOTE: In the following commands `--role-arn` and `--role-session-name` are not meaningful for MinIO and can be set to any value satisfying the command line requirements. ```
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 7.2K bytes - Click Count (0) -
buildscripts/disable-root.sh
export MC_HOST_siteb=http://minioadmin:minioadmin@127.0.0.1:9004 ./mc ready sitea ./mc ready siteb ./mc admin replicate add sitea siteb ./mc admin user add sitea foobar foo12345 ./mc admin policy attach sitea/ consoleAdmin --user=foobar ./mc admin user info siteb foobar killall -9 minio echo "turning off root access, however site replication must continue" export MINIO_API_ROOT_ACCESS=off
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed May 22 23:07:14 GMT 2024 - 3.5K bytes - Click Count (0) -
docs/site-replication/run-multi-site-minio-idp.sh
echo "expected both peers to have same information" exit_1 } ./mc admin user add minio1 foobar foo12345 ## add foobar-g group with foobar ./mc admin group add minio2 foobar-g foobar ./mc admin policy attach minio1 consoleAdmin --user=foobar sleep 5 ./mc admin user info minio2 foobar ./mc admin group info minio1 foobar-g ./mc admin policy create minio1 rw ./docs/site-replication/rw.json sleep 5
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Sep 24 08:03:58 GMT 2024 - 12.1K bytes - Click Count (0) -
android/guava-testlib/test/com/google/common/testing/EqualsTesterTest.java
/** * Test EqualsTester with no equals or not equals objects. This checks proper handling of null, * incompatible class and reflexive tests */ public void testTestEqualsEmptyLists() { equalsTester.addEqualityGroup(reference); equalsTester.testEquals(); } /** * Test EqualsTester after populating equalObjects. This checks proper handling of equality and * verifies hashCode for valid objects */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed May 14 19:40:47 GMT 2025 - 13.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/PhaseExecutionPoint.java
public enum PhaseExecutionPoint { /** * Execution must occur before any executions of the phase proper. Failure of any {@code #BEFORE} dynamic phase * execution will prevent the {@link #AT} phase but will not prevent any {@link #AFTER} dynamic phases. */ BEFORE("before:"), /** * Execution is the execution of the phase proper. Failure of any {@code #AT} dynamic phase execution will failCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.8K bytes - Click Count (0)