Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1661 - 1670 of 1,778 for minit (0.02 seconds)

  1. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

        }
    
        /**
         * Initializes the document helper after construction.
         * Sets up the TikaExtractor with configuration parameters for text processing.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initializing {}", this.getClass().getSimpleName());
            }
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:27:04 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java

        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            super.tearDown(testInfo);
        }
    
        /**
         * Helper method to initialize defaultSettings without calling init()
         * which requires DI container components
         */
        private Map<String, Object> createDefaultSettings() throws Exception {
            Map<String, Object> defaultSettings = new HashMap<>();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 18.4K bytes
    - Click Count (0)
  3. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/PublishPluginFuncTest.groovy

            )
        }
    
        def "generated pom can be validated"() {
            given:
            // scm info only added for internal builds
            internalBuild()
            buildFile << """
                BuildParams.init { it.setGitOrigin("https://some-repo.com/repo.git") }
    
                apply plugin:'elasticsearch.java'
                apply plugin:'elasticsearch.publish'
    
                version = "1.0"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 19K bytes
    - Click Count (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttpClient.kt

          // Cache the pool in the builder so that it will be shared with other clients
          builder.connectionPool = it
        }
    
      constructor() : this(Builder())
    
      init {
        if (connectionSpecs.none { it.isTls }) {
          this.sslSocketFactoryOrNull = null
          this.certificateChainCleaner = null
          this.x509TrustManager = null
          this.certificatePinner = CertificatePinner.DEFAULT
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 51.5K bytes
    - Click Count (0)
  5. docs/tr/docs/deployment/docker.md

    /// info | Bilgi
    
    Kubernetes kullanıyorsanız, bu muhtemelen bir [Init Container](https://kubernetes.io/docs/concepts/workloads/pods/init-containers/) olur.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 29.6K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

                        return tempFile;
                    } catch (IOException e) {
                        throw new RuntimeException(e);
                    }
                }
            };
            systemHelper.init();
            ComponentUtil.register(systemHelper, "systemHelper");
    
            // Initialize DictionaryManager mock
            dictionaryManager = new DictionaryManager() {
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  7. docs/tr/docs/tutorial/sql-databases.md

    ://sqlmodel.tiangolo.com/) kullanabilir ve *data model* ile *table model* yaklaşımıyla kodu sadeleştirebilirsiniz.
    
    **SQLModel** dokümantasyonunda çok daha fazlasını öğrenebilirsiniz; **FastAPI** ile SQLModel kullanımı için daha uzun bir mini [tutorial](https://sqlmodel.tiangolo.com/tutorial/fastapi/) da bulunuyor. 🚀...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 16.8K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

                }
            };
            ComponentUtil.register(pathMappingHelper, "pathMappingHelper");
    
            duplicateHostHelper = new DuplicateHostHelper() {
                @Override
                public void init() {
                    // Mock implementation
                }
            };
            ComponentUtil.register(duplicateHostHelper, "duplicateHostHelper");
    
            notificationHelper = new NotificationHelper() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 30.8K bytes
    - Click Count (0)
  9. docs/de/docs/deployment/docker.md

    /// info | Info
    
    Wenn Sie Kubernetes verwenden, wäre dies wahrscheinlich ein [Init-Container](https://kubernetes.io/docs/concepts/workloads/pods/init-containers/).
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 32.4K bytes
    - Click Count (0)
  10. fastapi/_compat/v2.py

        "exclude": None,
        "exclude_if": None,
        "discriminator": None,
        "deprecated": None,
        "json_schema_extra": None,
        "frozen": None,
        "validate_default": None,
        "repr": True,
        "init": None,
        "init_var": None,
        "kw_only": None,
    }
    
    
    # TODO: remove when dropping support for Pydantic < v2.12.3
    def asdict(field_info: FieldInfo) -> dict[str, Any]:
        attributes = {}
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 16.7K bytes
    - Click Count (0)
Back to Top