- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 109 for Discard (0.09 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
return p.getGroupId() + ":" + p.getArtifactId() + ":" + p.getVersion(); } /** * Post-processes the effective configuration for the specified mojo execution. This step discards all parameters * from the configuration that are not applicable to the mojo and injects the default values for any missing * parameters. *
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0) -
docs/ko/docs/help-fastapi.md
이 두 작업이 **가장 많은 시간을 소모**하는 일입니다. 그것이 FastAPI 유지 관리의 주요 작업입니다. 이 작업을 도와주신다면, **FastAPI 유지 관리에 도움을 주는 것**이며 그것이 **더 빠르고 더 잘 발전하는 것**을 보장하는 것입니다. 🚀 ## 채팅에 참여하십시오 👥 <a href="https://discord.gg/VQjSZaeJmf" class="external-link" target="_blank">디스코드 채팅 서버</a> 👥 에 가입하고 FastAPI 커뮤니티에서 다른 사람들과 어울리세요. /// tip
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 16.3K bytes - Viewed (0) -
docs/en/docs/release-notes.md
## 0.39.0 * Allow path parameters to have default values (e.g. `None`) and discard them instead of raising an error.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 19:06:15 UTC 2025 - 586.7K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
p.symDefRef(w, word, operands) } return p.errorCount == 0 } // nextToken returns the next non-build-comment token from the lexer. // It reports misplaced //go:build comments but otherwise discards them. func (p *Parser) nextToken() lex.ScanToken { for { tok := p.lex.Next() if tok == lex.BuildComment { if p.sawCode { p.errorf("misplaced //go:build comment") } continue }
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Wed Nov 12 03:59:40 UTC 2025 - 37.3K bytes - Viewed (0) -
tensorflow/c/c_api.h
TF_CAPI_EXPORT extern void TF_CloseSession(TF_Session*, TF_Status* status); // Destroy a session object. // // Even if error information is recorded in *status, this call discards all // local resources associated with the session. The session may not be used // during or after this call (and the session drops its reference to the // corresponding graph).
Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
api/go1.1.txt
pkg syscall (darwin-386), const TIOCUCNTL = 2147775590 pkg syscall (darwin-386), const TOSTOP = 4194304 pkg syscall (darwin-386), const TOSTOP ideal-int pkg syscall (darwin-386), const VDISCARD = 15 pkg syscall (darwin-386), const VDISCARD ideal-int pkg syscall (darwin-386), const VDSUSP = 11 pkg syscall (darwin-386), const VDSUSP ideal-int pkg syscall (darwin-386), const VEOF = 0 pkg syscall (darwin-386), const VEOF ideal-int
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Mar 31 20:37:15 UTC 2022 - 2.6M bytes - Viewed (0) -
api/go1.txt
pkg io/ioutil, func TempDir(string, string) (string, error) pkg io/ioutil, func TempFile(string, string) (*os.File, error) pkg io/ioutil, func WriteFile(string, []uint8, os.FileMode) error pkg io/ioutil, var Discard io.Writer pkg log, const Ldate ideal-int pkg log, const Llongfile ideal-int pkg log, const Lmicroseconds ideal-int pkg log, const Lshortfile ideal-int pkg log, const LstdFlags ideal-int
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0) -
api/go1.2.txt
pkg syscall (freebsd-386-cgo), const TIOCTIMESTAMP ideal-int pkg syscall (freebsd-386-cgo), const TIOCUCNTL ideal-int pkg syscall (freebsd-386-cgo), const TOSTOP ideal-int pkg syscall (freebsd-386-cgo), const VDISCARD ideal-int pkg syscall (freebsd-386-cgo), const VDSUSP ideal-int pkg syscall (freebsd-386-cgo), const VEOF ideal-int pkg syscall (freebsd-386-cgo), const VEOL ideal-int pkg syscall (freebsd-386-cgo), const VEOL2 ideal-int
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Fri Oct 18 04:36:59 UTC 2013 - 1.9M bytes - Viewed (1) -
api/go1.13.txt
pkg syscall (netbsd-arm64-cgo), const TOSTOP = 4194304 pkg syscall (netbsd-arm64-cgo), const TOSTOP ideal-int pkg syscall (netbsd-arm64-cgo), const VDISCARD = 15 pkg syscall (netbsd-arm64-cgo), const VDISCARD ideal-int pkg syscall (netbsd-arm64-cgo), const VDSUSP = 11 pkg syscall (netbsd-arm64-cgo), const VDSUSP ideal-int pkg syscall (netbsd-arm64-cgo), const VEOF = 0
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Aug 08 18:44:16 UTC 2019 - 452.6K bytes - Viewed (0) -
guava/src/com/google/common/cache/LocalCache.java
return 0; } @Override public Iterator<Object> iterator() { return ImmutableSet.of().iterator(); } }; /** Queue that discards all elements. */ @SuppressWarnings("unchecked") // impl never uses a parameter or returns any non-null value static <E> Queue<E> discardingQueue() { return (Queue) DISCARDING_QUEUE; } /*Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Sep 11 19:35:11 UTC 2025 - 148.9K bytes - Viewed (0)