- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 760 for formos (0.05 sec)
-
guava-tests/test/com/google/common/util/concurrent/StripedTest.java
- for (int i = 0; i < objectsNum; i++) {
- objects.add(new Object());
- }
- Iterable<?> locks = striped.bulkGet(objects);
- assertTrue(Ordering.natural().onResultOf(Functions.forMap(indexByLock)).isOrdered(locks));
- // check idempotency
- Iterable<?> locks2 = striped.bulkGet(objects);
- assertEquals(Lists.newArrayList(locks), Lists.newArrayList(locks2));
- }
- }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jun 26 12:58:35 UTC 2024 - 8.4K bytes - Viewed (0) -
licenses/github.com/klauspost/compress/LICENSE
- exercising permissions granted by this License.
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Nov 30 19:13:15 UTC 2021 - 16.3K bytes - Viewed (0) -
architecture/security/istio-agent.md
- the ca client to use certificates written to the same directory we have configured them to be written to.
- ## Authentication
- The agent supports two forms of authentication with the CA/discovery servers: mTLS and JWT. Varying deployment
- topologies mix and match these two.
- For a standard Kubernetes deployment, both CA and discovery will use JWT authentication, with a token automatically
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jul 18 23:11:18 UTC 2024 - 7.2K bytes - Viewed (0) -
android/guava/src/com/google/common/base/CaseFormat.java
- /**
- * Converts the specified {@code String str} from this format to the specified {@code format}. A
- * "best effort" approach is taken; if {@code str} does not conform to the assumed format, then
- * the behavior of this method is undefined but we make a reasonable effort at converting anyway.
- */
- public final String to(CaseFormat format, String str) {
- checkNotNull(format);
- checkNotNull(str);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 19 20:20:14 UTC 2022 - 6.3K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/TimeConversionUtilTest.java
- final Date date = toDate("11:49");
- assertThat(new SimpleDateFormat("HH:mm:ss").format(date), is("11:49:00"));
- }
- /**
- * @throws Exception
- */
- @Test
- public void testToDate_MediumStyle() throws Exception {
- final Date date = toDate("11:49:10");
- assertThat(new SimpleDateFormat("HH:mm:ss").format(date), is("11:49:10"));
- }
- /**
- * @throws Exception
- */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 9.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java
- *
- * @param formal the formal parameter type to which the actual
- * parameter type should be convertible
- * @param actual the actual parameter type.
- * @return true if either formal type is assignable from actual type,
- * or formal and actual are both primitive types and actual can be
- * subject to widening conversion to formal.
- */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 14.2K bytes - Viewed (0) -
docs/pt/docs/tutorial/request-files.md
- {* ../../docs_src/request_files/tutorial001_an_py39.py hl[3] *}
- ## Definir Parâmetros `File`
- Crie parâmetros de arquivo da mesma forma que você faria para `Body` ou `Form`:
- {* ../../docs_src/request_files/tutorial001_an_py39.py hl[9] *}
- /// info | Informação
- `File` é uma classe que herda diretamente de `Form`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 30 19:52:32 UTC 2024 - 7.8K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/TimestampConversionUtilTest.java
- assertThat(new SimpleDateFormat("yyyy/MM/dd HH:mm:ss").format(date), is("2010/09/07 11:49:00"));
- }
- /**
- * @throws Exception
- */
- @Test
- public void testToDate_MediumStyle() throws Exception {
- final Date date = toDate("2010/9/7 11:49:10", Locale.JAPAN);
- assertThat(new SimpleDateFormat("yyyy/MM/dd HH:mm:ss").format(date), is("2010/09/07 11:49:10"));
- }
- /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 11.4K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/AbstractMapTester.java
- i.set(newEntry);
- return;
- }
- }
- throw new IllegalArgumentException(
- Platform.format("key %s not found in entries %s", newEntry.getKey(), expected));
- }
- /**
- * Wrapper for {@link Map#get(Object)} that forces the caller to pass in a key of the same type as
- * the map. Besides being slightly shorter than code that uses {@link #getMap()}, it also ensures
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 7.6K bytes - Viewed (0) -
cmd/fmt-gen.go
- }
- zipFile, err := os.Create("format.json.zip")
- if err != nil {
- log.Fatalf("failed to create format.json.zip: %v", err)
- }
- defer zipFile.Close()
- fmtZipW := zip.NewWriter(zipFile)
- defer fmtZipW.Close()
- for _, pool := range pools { // for each pool
- setCount, setDriveCount := pool.SetCount, pool.DrivesPerSet
- format := newFormatErasureV3(setCount, setDriveCount)
- format.ID = deploymentID
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 13 22:22:04 UTC 2024 - 3.7K bytes - Viewed (0)