- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 286 for Trace (0.04 sec)
-
docs/en/docs/reference/apirouter.md
- websocket - include_router - get - put - post - delete - options - head - patch - trace
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:53:19 UTC 2024 - 524 bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java
*/ public interface MessageBuilder extends Appendable { /** * Append message content in trace style. * By default, bold magenta * * @param message the message to append * @return the current builder */ @Nonnull default MessageBuilder trace(Object message) { return style("." + Constants.MAVEN_STYLE_TRACE_NAME + ":-" + Constants.MAVEN_STYLE_TRACE_DEFAULT, message);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Nov 02 09:29:52 UTC 2024 - 7.6K bytes - Viewed (0) -
docs/pl/docs/tutorial/first-steps.md
"Operacje" tutaj odnoszą się do jednej z "metod" HTTP. Jedna z: * `POST` * `GET` * `PUT` * `DELETE` ...i te bardziej egzotyczne: * `OPTIONS` * `HEAD` * `PATCH` * `TRACE` W protokole HTTP można komunikować się z każdą ścieżką za pomocą jednej (lub więcej) "metod". --- Podczas tworzenia API zwykle używasz tych metod HTTP do wykonania określonej akcji. Zazwyczaj używasz:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 16:51:30 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
public void release () { long usage = this.usageCount.decrementAndGet(); if ( log.isTraceEnabled() ) { log.trace("Release transport " + usage + " " + this); } if ( usage == 0 ) { if ( log.isTraceEnabled() ) { log.trace("Transport usage dropped to zero " + this); } } else if ( usage < 0 ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 01 18:12:21 UTC 2020 - 24.1K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/Curl.java
} public static CurlRequest connect(final String url) { return new CurlRequest(Method.CONNECT, url); } public enum Method { GET, POST, PUT, DELETE, HEAD, OPTIONS, TRACE, CONNECT; }
Registered: Thu Oct 31 02:32:13 UTC 2024 - Last Modified: Mon Nov 14 21:05:19 UTC 2022 - 1.7K bytes - Viewed (0) -
cmd/utils.go
if err != nil { return nil, err } fn := filepath.Join(dirPath, "trace.out") f, err := Create(fn) if err != nil { return nil, err } err = trace.Start(f) if err != nil { return nil, err } prof.ext = "trace" prof.stopFn = func() ([]byte, error) { trace.Stop() err := f.Close() if err != nil { return nil, err }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 13 22:22:04 UTC 2024 - 31.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileOutputStream.java
if ( log.isDebugEnabled() ) { log.debug("File pointer is at " + this.fp); } } return this.handle; } log.trace("File already open"); return this.handle.acquire(); } protected SmbTreeHandleImpl ensureTreeConnected () throws CIFSException { return this.file.ensureTreeConnected(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:14:04 UTC 2021 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileHandleImpl.java
long usage = this.usageCount.decrementAndGet(); if ( usage == 0 ) { closeInternal(0L, false); } else if ( log.isTraceEnabled() ) { log.trace(String.format("Release %s (%d)", this, usage)); } } /** * {@inheritDoc} * * @see java.lang.Object#finalize() */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.6K bytes - Viewed (1) -
istioctl/pkg/kubeinject/testdata/mesh-config.yaml
# diagnostic information from Envoy. See # https://lyft.github.io/envoy/docs/operations/admin.html # for more details proxyAdminPort: 15000 # # Zipkin trace collector zipkinAddress: "" # # Statsd metrics collector converts statsd metrics into Prometheus metrics. statsdUdpAddress: "" # # Mutual TLS authentication between sidecars and istio control plane.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
* @return tree with increased usage count */ public SmbTreeImpl acquire ( boolean track ) { long usage = this.usageCount.incrementAndGet(); if ( log.isTraceEnabled() ) { log.trace("Acquire tree " + usage + " " + this); } if ( track && this.traceResource ) { synchronized ( this.acquires ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0)