- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 485 for Configured (0.1 sec)
-
configure.py
# At most 1 GPU platform can be configured. gpu_platform_count = 0 if environ_cp.get('TF_NEED_ROCM') == '1': gpu_platform_count += 1 if environ_cp.get('TF_NEED_CUDA') == '1': gpu_platform_count += 1 if gpu_platform_count >= 2: raise UserInputError('CUDA / ROCm are mututally exclusive. ' 'At most 1 GPU platform can be configured.') set_cc_opt_flags(environ_cp)
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Apr 30 15:18:54 UTC 2025 - 48.3K 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) -
cmd/metrics-v2.go
} maps.Copy(metric.StaticLabels, m.StaticLabels) maps.Copy(metric.VariableLabels, m.VariableLabels) maps.Copy(metric.Histogram, m.Histogram) return metric } // Get - returns cached value always upton the configured TTL, // once the TTL expires "read()" registered function is called // to return the new values and updated. func (g *MetricsGroupV2) Get() (metrics []MetricV2) { m, _ := g.metricsCache.Get() if len(m) == 0 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 133.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
/** * HTML tag-based thumbnail generator that creates thumbnails from image content * referenced in HTML documents. This generator extracts images from HTML content * and processes them to create thumbnail images based on configured dimensions * and format settings. * * <p>The generator validates image MIME types, processes image data through * ImageIO operations, and applies scaling and cropping to generate thumbnails
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
api/maven-api-toolchain/src/main/mdo/toolchains.mdo
<p>The <a href="/plugins/maven-toolchains-plugin/">toolchains-plugin</a> can read available toolchains on the user's computer and match them against the toolchain requirements of the project (as configured in {@code pom.xml}): if match is found, the toolchain instance is made available to other Maven plugins.</p> <p>With {@code jdk} toolchain, for example, instead of being stuck with the JDK used to run Maven, all plugins can use
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
} } /** * Creates a timeout task for this job execution. * If timeout is not set or is <= 0, returns null. * * @return the timeout task, or null if no timeout is configured */ protected TimeoutTask createTimeoutTask() { if (timeout <= 0) { return null; } return TimeoutManager.getInstance().addTimeoutTarget(() -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleReconnector.java
return false; } /** * Create a reconnection request for the given handle * @param info the handle information * @return the create request configured for reconnection */ protected Smb2CreateRequest createReconnectionRequest(HandleInfo info) { // This would need access to the Configuration and proper setup // For now, we provide the structure
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/jcifs/ACETest.java
ACE ace = mock(ACE.class); when(ace.getSID()).thenReturn(null); SID result = ace.getSID(); assertNull(result, "getSID() should return null when configured"); verify(ace).getSID(); } @Test @DisplayName("Should handle zero access mask") void shouldHandleZeroAccessMask() { ACE ace = mock(ACE.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
*/ public ProtocolHelper() { // Default constructor } /** * Initializes the protocol helper by loading configured protocols from FessConfig * and scanning for available protocol handlers in the classpath. * This method is called automatically after bean construction. */ @PostConstruct public void init() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SSPContextTest.java
return this.established && this.integrity; } } @Nested @DisplayName("Happy path behavior") class HappyPath { @Test @DisplayName("All getters return configured values and MIC roundtrips") void testAllMethodsHappyPath() throws Exception { // Arrange ASN1ObjectIdentifier mech1 = new ASN1ObjectIdentifier("1.2.840.113554.1.2.2"); // Kerberos V5
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.2K bytes - Viewed (0)