Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 361 for track (0.03 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

            public ModelBuilderRequestBuilder session(Session session) {
                this.session = session;
                return this;
            }
    
            public ModelBuilderRequestBuilder trace(RequestTrace trace) {
                this.trace = trace;
                return this;
            }
    
            public ModelBuilderRequestBuilder requestType(RequestType requestType) {
                this.requestType = requestType;
                return this;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Mar 26 20:54:22 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java

            sb.append(",").append(appTypeSupplier.supply()).append(",").append(resource.getModuleName());
            final String trace = sb.toString();
            final int columnSize = 200;
            return trace.length() > columnSize ? trace.substring(0, columnSize) : trace;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/Request.java

         */
        @Nonnull
        S getSession();
    
        /**
         * Returns the trace information associated with this request, if any.
         * The trace provides context about the request's position in the operation
         * hierarchy and can carry additional diagnostic information.
         *
         * @return the request trace, or {@code null} if no trace information is available
         */
        @Nullable
        RequestTrace getTrace();
    
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 4K bytes
    - Viewed (0)
  4. tests/lru_test.go

    	l := lru.NewLRU[int64, int64](8192, nil, 0)
    
    	trace := make([]int64, b.N*2)
    	for i := 0; i < b.N*2; i++ {
    		if i%2 == 0 {
    			trace[i] = getRand(b) % 16384
    		} else {
    			trace[i] = getRand(b) % 32768
    		}
    	}
    
    	b.ResetTimer()
    
    	for i := 0; i < b.N; i++ {
    		l.Add(trace[i], trace[i])
    	}
    	var hit, miss int
    	for i := 0; i < b.N; i++ {
    		if _, ok := l.Get(trace[i]); ok {
    			hit++
    		} else {
    			miss++
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sun May 25 07:40:40 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientExceptionTest.java

        public void test_stackTrace() {
            // Test that stack trace is properly captured
            String message = "Stack trace test";
            SearchEngineClientException exception = new SearchEngineClientException(message);
    
            assertNotNull(exception.getStackTrace());
            assertTrue(exception.getStackTrace().length > 0);
    
            // Verify the stack trace contains this test method
            boolean foundTestMethod = false;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstallerRequest.java

                this.session = session;
                return this;
            }
    
            @Nonnull
            public ArtifactInstallerRequestBuilder trace(RequestTrace trace) {
                this.trace = trace;
                return this;
            }
    
            @Nonnull
            public ArtifactInstallerRequestBuilder artifacts(@Nullable Collection<ProducedArtifact> artifacts) {
                this.artifacts = artifacts != null ? artifacts : Collections.emptyList();
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  7. api/maven-api-core/src/test/java/org/apache/maven/api/services/RequestTraceTest.java

            assertEquals("bootstrap", RequestTrace.CONTEXT_BOOTSTRAP);
        }
    
        @Test
        void testNullValues() {
            RequestTrace trace = new RequestTrace(null, null, null);
            assertNull(trace.context());
            assertNull(trace.parent());
            assertNull(trace.data());
        }
    
        @Test
        void testChainedTraces() {
            RequestTrace root = new RequestTrace("root", null, "root-data");
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  8. docs/debugging/README.md

    ## HTTP Trace
    
    HTTP tracing can be enabled by using [`mc admin trace`](https://docs.min.io/community/minio-object-store/reference/minio-mc-admin/mc-admin-trace.html) command.
    
    Example:
    
    ```sh
    minio server /data
    ```
    
    Default trace is succinct only to indicate the API operations being called and the HTTP response status.
    
    ```sh
    mc admin trace myminio
    ```
    
    To trace entire HTTP request
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java

        public void test_stackTrace() {
            // Test that stack trace is properly captured
            LdapOperationException exception = new LdapOperationException("Stack trace test");
            StackTraceElement[] stackTrace = exception.getStackTrace();
    
            assertNotNull(stackTrace);
            assertTrue(stackTrace.length > 0);
            // Verify that current test method appears in stack trace
            boolean foundTestMethod = false;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java

        }
    
        public void test_stackTrace() {
            // Test that stack trace is properly captured
            ThemeException exception = new ThemeException("Stack trace test");
    
            assertNotNull(exception.getStackTrace());
            assertTrue(exception.getStackTrace().length > 0);
    
            // Verify that this test method appears in the stack trace
            boolean foundTestMethod = false;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.2K bytes
    - Viewed (0)
Back to top