- Sort Score
- Result 10 results
- Languages All
Results 3241 - 3250 of 3,426 for overwrite (0.1 sec)
-
internal/grid/types.go
package grid import ( "bytes" "encoding/json" "errors" "math" "net/url" "sort" "strings" "sync" "github.com/tinylib/msgp/msgp" ) // Recycler will override the internal reuse in typed handlers. // When this is supported, the handler will not do internal pooling of objects, // call Recycle() when the object is no longer needed. // The recycler should handle nil pointers.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 15.5K bytes - Viewed (0) -
docs/config/README.md
## Environment only settings (not in config) ### Browser Enable or disable access to console web UI. By default it is set to `on`. You may override this field with `MINIO_BROWSER` environment variable. Example: ```sh export MINIO_BROWSER=off minio server /data ``` ### Domain
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 16 08:43:49 UTC 2024 - 17.9K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
.maximumSize(userInfoCacheSize)// .expireAfterWrite(userCheckInterval, TimeUnit.MILLISECONDS)// .build(new CacheLoader<String, UserInfo>() { @Override public UserInfo load(final String key) throws Exception { return storeUserInfo(key); } });
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 22 02:07:37 UTC 2024 - 21.7K bytes - Viewed (0) -
internal/config/identity/plugin/config.go
serviceMetrics *metrics } // Enabled returns if AuthNPlugin is enabled. func Enabled(kvs config.KVS) bool { return kvs.Get(URL) != "" } // LookupConfig lookup AuthNPlugin from config, override with any ENVs. func LookupConfig(kv config.KVS, transport *http.Transport, closeRespFn func(io.ReadCloser), serverRegion string) (Args, error) { args := Args{}
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 13.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java
continue; } handler.processResource(entryName.substring(pos), new FilterInputStream(zipInputStream) { @Override public void close() throws IOException { ZipInputStreamUtil.closeEntry(zipInputStream); } }); } } }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 10.5K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
(*lens)[i] = v[i].size(); } } class CApiColocationTest : public ::testing::Test { protected: CApiColocationTest() : s_(TF_NewStatus()), graph_(TF_NewGraph()) {} void SetUp() override { feed1_ = Placeholder(graph_, s_, "feed1"); ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_); feed2_ = Placeholder(graph_, s_, "feed2"); ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 97K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
/** The key of the message: Failed to download the Stemmer Override file. */ public static final String ERRORS_failed_to_download_stemmeroverride_file = "{errors.failed_to_download_stemmeroverride_file}"; /** The key of the message: Failed to upload the Stemmer Override file. */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 119.9K bytes - Viewed (0) -
configure.py
check_success=os.path.exists, resolve_symlinks=True, error_msg=( 'Invalid clang path. %s cannot be found. Note that TensorFlow now' ' requires clang to compile. You may override this behavior by' ' setting TF_NEED_CLANG=0' ), ) write_action_env_to_bazelrc('CLANG_COMPILER_PATH', clang_compiler_path) write_to_bazelrc('build --repo_env=CC=%s' % clang_compiler_path)
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 48.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java
} } finally { latch.countDown(); Thread.currentThread().setContextClassLoader(old); } } } @Override public void dispose() { if (executor instanceof ExecutorService) { ((ExecutorService) executor).shutdownNow(); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 24.8K bytes - Viewed (0) -
istioctl/pkg/describe/describe_test.go
Namespace: c.namespace, IstioNamespace: c.istioNamespace, Results: c.configDumps, }) client, err := ctx.CLIClient() assert.NoError(t, err) // Override the Istio config factory for i := range c.istioConfigs { switch t := c.istioConfigs[i].(type) { case *clientnetworking.DestinationRule:
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 20:04:20 UTC 2024 - 30.8K bytes - Viewed (0)