- Sort Score
- Result 10 results
- Languages All
Results 1131 - 1140 of 1,156 for done (0.05 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
* * @param artifact the artifact for which to get a local path * @return local path associated to the given artifact, or {@code null} if none * * @see org.apache.maven.api.services.LocalRepositoryManager#getPathForLocalArtifact(Session, LocalRepository, Artifact) */ Path getPathForLocalArtifact(@Nonnull Artifact artifact); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 16:43:07 UTC 2024 - 36.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/asm.go
switch { case arch.IsARM64STLXR(op): // ARM64 instructions with one input and two outputs. prog.From = a[0] prog.To = a[1] if a[2].Type != obj.TYPE_REG { p.errorf("invalid addressing modes for third operand to %s instruction, must be register", op) return } prog.RegTo2 = a[2].Reg case arch.IsARM64TBL(op): // one of its inputs does not fit into prog.Reg. prog.From = a[0]
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 21 14:11:44 UTC 2024 - 25.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
assertFalse(responseData.isNoFollow()); } public void test_processMetaRobots_none() throws Exception { final String data = "<meta name=\"robots\" content=\"none\" />"; final Document document = getDocument(data); final FessXpathTransformer transformer = new FessXpathTransformer() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 41.3K bytes - Viewed (0) -
src/main/resources/fess_label_fr.properties
labels.crawler_title_edit = Paramétrage général labels.schedule = Planificateur labels.enabled = Activé labels.day_for_cleanup = Supprimer les documents avant labels.day = Jour(s) labels.crawl_button_update = Mise à jour labels.none = Aucun labels.crawling_thread_count = Configuration simultanée du robot d'exploration labels.incremental_crawling = Vérifier la dernière modification labels.search_log_enabled = Journalisation de la recherche
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 46.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
interface WeakValueReference<K, V, E extends InternalEntry<K, V, E>> { /** * Returns the current value being referenced, or {@code null} if there is none (e.g. because * either it got collected, or {@link #clear} was called, or it wasn't set in the first place). */ @CheckForNull V get();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 90.8K bytes - Viewed (0) -
docs/ja/docs/deployment/docker.md
from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: Union[str, None] = None): return {"item_id": item_id, "q": q} ``` ### Dockerfile 同じプロジェクト・ディレクトリに`Dockerfile`というファイルを作成します: ```{ .dockerfile .annotate } # (1) FROM python:3.9 # (2)
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 44.3K bytes - Viewed (0) -
api/go1.txt
pkg net/rpc, method (*Server) ServeRequest(ServerCodec) error pkg net/rpc, method (ServerError) Error() string pkg net/rpc, type Call struct pkg net/rpc, type Call struct, Args interface{} pkg net/rpc, type Call struct, Done chan *Call pkg net/rpc, type Call struct, Error error pkg net/rpc, type Call struct, Reply interface{} pkg net/rpc, type Call struct, ServiceMethod string pkg net/rpc, type Client struct
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0) -
cmd/xl-storage-format-v2_test.go
var xl xlMetaV2 if err = xl.LoadOrConvert(data); err != nil { b.Fatal(err) } vers := make([][]xlMetaV2ShallowVersion, 16) for i := range vers { vers[i] = xl.versions } b.Run("requested-none", func(b *testing.B) { b.ReportAllocs() b.ResetTimer() b.SetBytes(855) // number of versions... for i := 0; i < b.N; i++ { mergeXLV2Versions(8, false, 0, vers...) } })
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Mar 08 17:50:48 UTC 2024 - 36.4K bytes - Viewed (0) -
guava/src/com/google/common/cache/CacheBuilder.java
* to thread contention. But overestimates and underestimates within an order of magnitude do not * usually have much noticeable impact. A value of one permits only one thread to modify the cache * at a time, but since read operations and cache loading computations can proceed concurrently, * this still yields higher concurrency than full synchronization. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 51.6K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt
assertThat(readFileOrNull(getCleanFile("a", 1))).isEqualTo(afterRemoveFileContents) // After the edit is completed, its entry is still gone. a.setString(1, "a1") a.commit() assertAbsent("a") assertThat(cache.size()).isEqualTo(0) } @ParameterizedTest @ArgumentsSource(FileSystemParamProvider::class)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 14:55:09 UTC 2024 - 75.8K bytes - Viewed (0)