Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 738 for Nresources (0.09 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListener.java

        }
    
        @Override
        public void transferProgressed(TransferEvent event) throws TransferCancelledException {
            TransferResource resource = event.getResource();
            transfers.put(
                    new TransferResourceIdentifier(resource),
                    new TransferResourceAndSize(resource, event.getTransferredBytes()));
    
            buffer.append("Progress (").append(transfers.size()).append("): ");
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

        //
        @Resource
        protected DynamicProperties systemProperties;
    
        @Resource
        protected WebConfigService webConfigService;
    
        @Resource
        protected FileConfigService fileConfigService;
    
        @Resource
        protected ProcessHelper processHelper;
    
        @Resource
        protected ScheduledJobService scheduledJobService;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    public class WebConfigService extends FessAppService {
    
        @Resource
        protected WebConfigBhv webConfigBhv;
    
        @Resource
        protected WebAuthenticationBhv webAuthenticationBhv;
    
        @Resource
        protected RequestHeaderBhv requestHeaderBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.13.md

    - The rules for incrementing `metadata.generation` of custom resources changed: ([#69059](https://github.com/kubernetes/kubernetes/pull/69059), [@caesarxuchao](https://github.com/caesarxuchao))
      - If the custom resource participates the spec/status convention, the metadata.generation of the CR increments when there is any change, except for the changes to the metadata or the changes to the status.
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  5. docs_src/events/tutorial003.py

    
    @asynccontextmanager
    async def lifespan(app: FastAPI):
        # Load the ML model
        ml_models["answer_to_everything"] = fake_answer_to_everything_ml_model
        yield
        # Clean up the ML models and release the resources
        ml_models.clear()
    
    
    app = FastAPI(lifespan=lifespan)
    
    
    @app.get("/predict")
    async def predict(x: float):
        result = ml_models["answer_to_everything"](x)
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Mar 07 15:46:00 UTC 2023
    - 569 bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess/sv/stopwords.txt

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/snowball/swedish_stop.txt
    och
    det
    att
    i
    en
    jag
    hon
    som
    han
    på
    den
    med
    var
    sig
    för
    så
    till
    är
    men
    ett
    om
    hade
    de
    av
    icke
    mig
    du
    henne
    då
    sin
    nu
    har
    inte
    hans
    honom
    skulle
    hennes
    där
    min
    man
    ej
    vid
    kunde
    något
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 700 bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess/th/stopwords.txt

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/th/stopwords.txt
    ไว้
    ไม่
    ไป
    ได้
    ให้
    ใน
    โดย
    แห่ง
    แล้ว
    และ
    แรก
    แบบ
    แต่
    เอง
    เห็น
    เลย
    เริ่ม
    เรา
    เมื่อ
    เพื่อ
    เพราะ
    เป็นการ
    เป็น
    เปิดเผย
    เปิด
    เนื่องจาก
    เดียวกัน
    เดียว
    เช่น
    เฉพาะ
    เคย
    เข้า
    เขา
    อีก
    อาจ
    อะไร
    ออก
    อย่าง
    อยู่
    อยาก
    หาก
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java

    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    public class BoostDocumentRuleService extends FessAppService {
    
        @Resource
        protected BoostDocumentRuleBhv boostDocumentRuleBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java

    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    public class RequestHeaderService {
    
        @Resource
        protected RequestHeaderBhv requestHeaderBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<RequestHeader> getRequestHeaderList(final ReqHeaderPager requestHeaderPager) {
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java

    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    public class WebAuthenticationService {
    
        @Resource
        protected WebAuthenticationBhv webAuthenticationBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<WebAuthentication> getWebAuthenticationList(final WebAuthPager webAuthenticationPager) {
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top