Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,797 for assist (0.12 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java

        }
    
        // ===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
        protected JsonResponse<ApiResult> asJson(final ApiResult bean) {
            return new JsonResponse<>(bean);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

        InputStream openStream() throws IOException;
    
        /**
         * Provides a user-friendly hint about the location of the source.
         * This could be a local file path, a URI or just an empty string.
         * The intention is to assist users during error reporting.
         *
         * @return a user-friendly hint about the location of the source, never {@code null}
         */
        @Nonnull
        String getLocation();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractEntity.java

            return toString();
        }
    
        // ===================================================================================
        //                                                                        Assist Class
        //                                                                        ============
        public class DocMeta implements Serializable {
    
            private static final long serialVersionUID = 1L;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java

        @Resource
        protected FessConfig fessConfig;
    
        // ===================================================================================
        //                                                                              Assist
        //                                                                              ======
        @Override
        protected void prepareAssistDirection(final FwAssistDirection direction) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. src/cmd/trace/goroutinegen.go

    		// (i.e. the G has been blocked in a syscall).
    		gs.syscallBegin(start, goID, ev.Stack())
    	}
    
    	// Note down the goroutine transition.
    	_, inMarkAssist := gs.activeRanges["GC mark assist"]
    	ctx.GoroutineTransition(ctx.elapsed(ev.Time()), viewerGState(from, inMarkAssist), viewerGState(to, inMarkAssist))
    }
    
    func (g *goroutineGenerator) ProcRange(ctx *traceContext, ev *trace.Event) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractEntity.java

            return toString();
        }
    
        // ===================================================================================
        //                                                                        Assist Class
        //                                                                        ============
        public class DocMeta implements Serializable {
    
            private static final long serialVersionUID = 1L;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

            return redirect(getClass());
        }
    
        // ===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java

            });
        }
    
        // ===================================================================================
        //                                                                        Assist Logic
        //                                                                        ============
    
        protected void registerEnvItems(final RenderData data) {
            RenderDataUtil.register(data, "envItems", getEnvItems());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractEntity.java

            return toString();
        }
    
        // ===================================================================================
        //                                                                        Assist Class
        //                                                                        ============
        public class DocMeta implements Serializable {
    
            private static final long serialVersionUID = 1L;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. src/internal/trace/summary_test.go

    			hasSyncBlockTime = true
    		}
    		if dt, ok := summary.RangeTime["GC mark assist"]; ok && dt > 0 {
    			hasGCMarkAssistTime = true
    		}
    	}
    	if !hasSchedWaitTime {
    		t.Error("missing sched wait time")
    	}
    	if !hasSyncBlockTime {
    		t.Error("missing sync block time")
    	}
    	if !hasGCMarkAssistTime {
    		t.Error("missing GC mark assist time")
    	}
    }
    
    func TestSummarizeGoroutinesRegionsTrace(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top