- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 59 for uninitialized (0.1 sec)
-
istioctl/pkg/writer/compare/sds/util.go
if err != nil { return nil, fmt.Errorf("failed building warming secret %s: %v", activeSecret.Name, err) } for _, secret := range secrets { if activeSecret.VersionInfo == "uninitialized" { secret.State = "UNINITIALIZED" } } proxySecretItems = append(proxySecretItems, secrets...) } return proxySecretItems, nil }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Oct 28 19:52:53 UTC 2024 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/KatakanaConverter.java
public class KatakanaConverter implements ReadingConverter { protected final Transliterator transliterator = Transliterator.getInstance("Hiragana-Katakana"); protected volatile boolean initialized = false; protected TokenizerFactory tokenizerFactory = null; public KatakanaConverter() { // nothing } public KatakanaConverter(final TokenizerFactory tokenizerFactory) {
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 4.7K bytes - Viewed (0) -
architecture/tests/integration.md
- **Setup Requirements**: Requires the Istio control plane to be initialized with Pilot. ### Ambient Tests - **Component Focus**: Primarily focuses on Ambient mode components, including `ztunnel`. - **Setup Requirements**: Requires the Istio control plane to be initialized with `ztunnel` and other ambient components. ### Telemetry Tests
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 00:57:44 UTC 2024 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/factory/BeanDescFactory.java
synchronized (BeanDescFactory.class) { if (!initialized) { DisposableUtil.add(BeanDescFactory::clear); initialized = true; } } } /** * キャッシュをクリアします。 */ public static void clear() { beanDescCache.clear(); initialized = false; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/message/MessageFormatter.java
} /** * 初期化します。 */ protected static synchronized void initialize() { if (!initialized) { DisposableUtil.add(() -> { ResourceBundle.clearCache(); initialized = false; }); initialized = true; } }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.6K bytes - Viewed (0) -
cmd/healthcheck-handler.go
writeResponse(w, http.StatusServiceUnavailable, nil, mimeNone) return nil } if !globalBucketMetadataSys.Initialized() { w.Header().Set(xhttp.MinIOServerStatus, "bucket-metadata-offline") writeResponse(w, http.StatusServiceUnavailable, nil, mimeNone) return nil } if !globalIAMSys.Initialized() { w.Header().Set(xhttp.MinIOServerStatus, "iam-offline") writeResponse(w, http.StatusServiceUnavailable, nil, mimeNone)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jun 26 07:44:34 UTC 2024 - 6.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/InterpolatorException.java
* detail message. The cause is not initialized, and may subsequently be * initialized by a call to {@link #initCause}. */ public InterpolatorException() {} /** * Constructs a new InterpolatorException with the specified detail message. * The cause is not initialized, and may subsequently be initialized by * a call to {@link #initCause}. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/core/message/MessageFormatterTest.java
DisposableUtil.dispose(); assertThat(MessageFormatter.initialized, is(not(true))); MessageFormatter.getMessage("EMSG0000"); assertThat(MessageFormatter.initialized, is(true)); DisposableUtil.dispose(); assertThat(MessageFormatter.initialized, is(not(true))); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/context/SingletonContext.java
* @throws CIFSException */ public static synchronized final void init ( Properties props ) throws CIFSException { if ( INSTANCE != null ) { throw new CIFSException("Singleton context is already initialized"); } Properties p = new Properties(); try { String filename = System.getProperty("jcifs.properties"); if ( filename != null && filename.length() > 1 ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 01 08:53:08 UTC 2019 - 4.2K bytes - Viewed (0) -
cmd/typed-errors.go
// When upload object size is less than what was expected. var errDataTooSmall = errors.New("Object size smaller than expected") // errServerNotInitialized - server not initialized. var errServerNotInitialized = errors.New("Server not initialized, please try again") // errRPCAPIVersionUnsupported - unsupported rpc API version. var errRPCAPIVersionUnsupported = errors.New("Unsupported rpc API version")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue May 28 17:14:16 UTC 2024 - 5.8K bytes - Viewed (0)