- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 563 for jack (0.02 seconds)
-
internal/lru/lru.go
c.mu.Lock() defer c.mu.Unlock() if ent := c.evictList.Back(); ent != nil { c.removeElement(ent) return ent.Key, ent.Value, true } return } // GetOldest returns the oldest entry func (c *LRU[K, V]) GetOldest() (key K, value V, ok bool) { c.mu.Lock() defer c.mu.Unlock() if ent := c.evictList.Back(); ent != nil { return ent.Key, ent.Value, true } return }
Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Fri Apr 25 08:22:26 GMT 2025 - 12.5K bytes - Click Count (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
return new RdmaTransport(context, address, provider); } catch (IOException e) { log.warn("Failed to create RDMA transport, falling back to TCP", e); } } } // Fall back to TCP return new SmbTransport(context, address.getAddress(), address.getPort()); } private RdmaProvider selectRdmaProvider() { // Try providers in order of preference
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 35.9K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/ConsoleIcon.java
this.asciiFallback = asciiFallback; } /** * Returns the appropriate icon representation for the given terminal. * Tests if the terminal's charset can encode the Unicode character, * falling back to ASCII if not. * * @param terminal the terminal to get the icon for * @return the Unicode character if supported, otherwise the ASCII fallback */ public String getIcon(Terminal terminal) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Jul 15 09:35:08 GMT 2025 - 3.1K bytes - Click Count (0) -
cmd/erasure-common.go
mu.Unlock() }() } wg.Wait() return newDisks } func (er erasureObjects) getOnlineLocalDisks() (newDisks []StorageAPI) { disks := er.getOnlineDisks() // Based on the random shuffling return back randomized disks. r := rand.New(rand.NewSource(time.Now().UnixNano())) for _, i := range r.Perm(len(disks)) { if disks[i] != nil && disks[i].IsLocal() { newDisks = append(newDisks, disks[i]) } }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 2.3K bytes - Click Count (0) -
.devcontainer/devcontainer.json
} }, "customizations": { "vscode": { "settings": { "java.server.launchMode": "Standard" }, "extensions": [ "vscjava.vscode-java-pack", "vscjava.vscode-gradle" ] } }
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sat May 18 23:34:57 GMT 2024 - 429 bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/ProjectBuildingExceptionTest.java
String message = exception.getMessage(); assertEquals( "Some problems were encountered while processing the POMs", message, "Empty results should fall back to generic message"); } @Test void testExceptionMessageWithNullResults() { ProjectBuildingException exception = new ProjectBuildingException((List<ProjectBuildingResult>) null);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Jul 26 19:15:57 GMT 2025 - 6.7K bytes - Click Count (0) -
tests/test_response_by_alias.py
class ModelNoAlias(BaseModel): name: str model_config = ConfigDict( json_schema_extra={ "description": ( "response_model_by_alias=False is basically a quick hack, to support " "proper OpenAPI use another model with the correct field names" ) } ) @app.get("/dict", response_model=Model, response_model_by_alias=False) def read_dict():
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Dec 20 15:55:38 GMT 2025 - 10.7K bytes - Click Count (0) -
internal/grid/muxserver.go
} // Acknowledge Mux created. // Send async. var wg sync.WaitGroup wg.Add(1) go func() { defer wg.Done() var ack message ack.Op = OpAckMux ack.Flags = m.BaseFlags ack.MuxID = m.ID m.send(ack) if debugPrint { fmt.Println("connected stream mux:", ack.MuxID) } }() // Data inbound to the handler var handlerIn chan []byte if inboundCap > 0 {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue May 27 15:19:03 GMT 2025 - 9.7K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java
* creator of the problem, the general expectation is that the hint provides sufficient information to the user to * track the problem back to its origin. A concrete example for such a source hint can be the file path or URL from * which a POM was read. * * @return The hint about the source of the problem or an empty string if unknown, never {@code null}.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 4K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.2.md
* “kubectl rollout undo” (i.e. rollback) will hang on paused deployments, because paused deployments can’t be rolled back (this is expected), and the command waits for rollback events to return the result. Users should use “kubectl rollout resume” to resume a deployment before rolling back. * “kubectl edit <list>” will open the editor multiple times, once for each resource in the list.
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Fri Dec 04 06:36:19 GMT 2020 - 41.4K bytes - Click Count (0)