- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 420 for instantiate (0.06 sec)
-
src/test/java/jcifs/util/StringsTest.java
assertEquals(original, uniRoundTrip, "UNI round-trip should preserve content: " + original); } } @Test @DisplayName("Strings utility class should not be instantiable") void testUtilityClassNotInstantiable() { // Given - Strings is a utility class with private constructor // When & Then - verify constructor is private by reflection
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
doc/go_spec.html
func (*GPoint[P]) Draw(P) { … } // illegal: alias must not be generic func (HPoint) Draw(P) { … } // illegal: alias must not denote instantiated type GPoint[int] func (*IPair) Second() int { … } // illegal: alias must not denote instantiated type Pair[int, int] </pre> <h2 id="Expressions">Expressions</h2> <p> An expression specifies the computation of a value by applying
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue May 06 19:12:15 UTC 2025 - 286.2K bytes - Viewed (0) -
cmd/bucket-lifecycle.go
ctx: ctx, killCh: make(chan struct{}), lastDayStats: make(map[string]*lastDayTierStats), } } // Init initializes t with given objAPI and instantiates the configured number // of transition workers. func (t *transitionState) Init(objAPI ObjectLayer) { n := globalAPIConfig.getTransitionWorkers() // Prefer ilm.transition_workers over now deprecated api.transition_workers
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 33.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/PredicatesTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 32.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
* </ul> */ public class Constants extends CoreLibConstants { /** * Private constructor to prevent instantiation of this utility class. * This class contains only static constants and should not be instantiated. */ private Constants() { // Utility class - no instantiation } // ============================================================ // System and UI Constants
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
android/guava/src/com/google/common/math/Quantiles.java
* N in both cases. * * @author Pete Gillin * @since 20.0 */ @J2ktIncompatible @GwtIncompatible public final class Quantiles { /** * Constructor for a type that is not meant to be instantiated. * * @deprecated Use the static factory methods of the class. There is no reason to create an * instance of {@link Quantiles}. */ @Deprecated public Quantiles() {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 30.1K bytes - Viewed (0) -
docs/en/docs/release-notes.md
### Refactors * ♻ Remove `media_type` from `ORJSONResponse` as it's inherited from the parent class. PR [#5805](https://github.com/tiangolo/fastapi/pull/5805) by [@Kludex](https://github.com/Kludex). * ♻ Instantiate `HTTPException` only when needed, optimization refactor. PR [#5356](https://github.com/tiangolo/fastapi/pull/5356) by [@pawamoy](https://github.com/pawamoy). ### Docs
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 12:48:45 UTC 2025 - 544.1K bytes - Viewed (0) -
src/main/resources/fess_label_fr.properties
labels.index_form_option_btn=Options labels.index_help=Aide labels.search_options=Options de recherche labels.search_options_close=Fermer labels.search_options_clear=Effacer labels.search_cache_msg=Ceci est un cache de {0}. C'est un instantané de la page telle qu'elle est apparue le {1}. labels.search_unknown=Inconnu labels.footer_back_to_top=Retour en haut labels.header_brand_name=Fess labels.header_form_option_btn=Options
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.6K bytes - Viewed (0) -
cmd/test-utils_test.go
initAllSubsystems(ctx) return newErasureServerPools(ctx, endpointServerPools) } // initObjectLayer - Instantiates object layer and returns it. func initObjectLayer(ctx context.Context, endpointServerPools EndpointServerPools) (ObjectLayer, []StorageAPI, error) { objLayer, err := newTestObjectLayer(ctx, endpointServerPools)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 77K bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
BSD-style // license that can be found in the LICENSE file. package drbg import ( "bytes" "crypto/internal/fips140" _ "crypto/internal/fips140/check" "errors" ) func init() { // Per IG 10.3.A, Resolution 7: "A KAT of a DRBG may be performed by: // Instantiate with known data, Reseed with other known data, Generate and // then compare the result to a pre-computed value." fips140.CAST("CTR_DRBG", func() error { entropy := &[SeedSize]byte{ 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)