- Sort Score
- Result 10 results
- Languages All
Results 2211 - 2220 of 2,957 for name4 (0.02 sec)
-
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FailureUrlDbm.java
import org.dbflute.Entity; import org.dbflute.dbmeta.AbstractDBMeta; import org.dbflute.dbmeta.info.ColumnInfo; import org.dbflute.dbmeta.info.UniqueInfo; import org.dbflute.dbmeta.name.TableSqlName; import org.dbflute.dbmeta.property.PropertyGateway; import org.dbflute.dbway.DBDef; import org.dbflute.util.DfTypeUtil; /** * @author ESFlute (using FreeGen) */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.2K bytes - Viewed (0) -
disabled-Jenkinsfile
try { echo "Checkout ITs from branch: ${ITS_BRANCH}" checkout([$class: 'GitSCM', branches: [[name: ITS_BRANCH]], extensions: [[$class: 'CloneOption', depth: 1, noTags: true, shallow: true]],
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Sep 30 14:11:55 UTC 2024 - 8.4K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataService.java
setNumberOfShards(crawlerConfig.getDataShards()); setNumberOfReplicas(crawlerConfig.getDataReplicas()); } public OpenSearchDataService(final String name, final String type) { index = name + "." + type; } @PostConstruct public void init() { fesenClient.addOnConnectListener(() -> createMapping("data")); } @Override
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 8.5K bytes - Viewed (0) -
guava/src/com/google/common/base/Ascii.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 02 13:50:22 UTC 2024 - 21.7K bytes - Viewed (0) -
docs_src/schema_extra_example/tutorial002.py
from typing import Union from fastapi import FastAPI from pydantic import BaseModel, Field app = FastAPI() class Item(BaseModel): name: str = Field(examples=["Foo"]) description: Union[str, None] = Field(default=None, examples=["A very nice Item"]) price: float = Field(examples=[35.4]) tax: Union[float, None] = Field(default=None, examples=[3.2]) @app.put("/items/{item_id}")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 517 bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
* need to do so using the {@link org.apache.maven.api.services.ProjectManager * ProjectManager} service. * <p> * Projects are created using the {@code ProjectBuilder} from a POM file * (usually named {@code pom.xml}) on the file system. * The {@link #getPomPath()} will point to the POM file and the * {@link #getBasedir()} to the directory parent containing the * POM file. * </p> * * @since 4.0.0
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 7.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.exception; import javax.inject.Named; import javax.inject.Singleton; import java.io.IOException; import java.net.ConnectException; import java.net.UnknownHostException; import java.util.ArrayList; import java.util.Collections;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.9K bytes - Viewed (0) -
internal/kms/conn.go
// used to generate the ciphertext. Decrypt(context.Context, *DecryptRequest) ([]byte, error) // MAC generates the checksum of the given req.Message using the key // with the req.Name at the KMS. MAC(context.Context, *MACRequest) ([]byte, error) } var ( // compiler checks _ conn = (*kmsConn)(nil) _ conn = (*kesConn)(nil) _ conn = secretKey{} ) // Supported KMS types const (
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Aug 18 06:43:03 UTC 2024 - 5K bytes - Viewed (0) -
compat/maven-embedder/pom.xml
<artifactId>maven</artifactId> <version>4.0.0-beta-6-SNAPSHOT</version> <relativePath>../../</relativePath> </parent> <artifactId>maven-embedder</artifactId> <name>Maven Embedder</name> <description>Maven embeddable component, with CLI and logging support.</description> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-cli</artifactId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlExtractor.java
cachedXPathAPI = new XPathAPI(); xpathAPI.set(cachedXPathAPI); } return cachedXPathAPI; } public void addMetadata(final String name, final String xpath) { metadataXpathMap.put(name, xpath); } /* * (non-Javadoc) * * @see * org.codelibs.fess.crawler.extractor.impl.AbstractXmlExtractor#getEncodingPattern() */
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 6.9K bytes - Viewed (0)