- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 655 for ExtensionB (0.07 sec)
-
src/main/java/org/codelibs/core/io/ResourceUtil.java
* パス。{@literal null}であってはいけません * @param extension * 拡張子 * @return リソースパス */ public static String getResourcePath(final String path, final String extension) { assertArgumentNotNull("path", path); if (extension == null) { return path; } final String ext = "." + extension; if (path.endsWith(ext)) { return path;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 15.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinates.java
*/ @Nonnull VersionConstraint getVersionConstraint(); /** * Returns the file extension of the artifact. * The dot separator is not included in the returned string. * * @return the file extension or an empty string if none, never {@code null} */ @Nonnull String getExtension(); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 2.8K bytes - Viewed (0) -
okhttp-testing-support/src/test/kotlin/okhttp3/OkHttpClientTestRuleTest.kt
import assertk.assertThat import assertk.assertions.hasMessage import kotlin.test.assertFailsWith import org.junit.jupiter.api.Test import org.junit.jupiter.api.extension.BeforeEachCallback import org.junit.jupiter.api.extension.ExtensionContext import org.junit.jupiter.api.extension.RegisterExtension class OkHttpClientTestRuleTest { lateinit var extensionContext: ExtensionContext @RegisterExtension @JvmField
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.7K bytes - Viewed (0) -
tests/postgres_test.go
CreatedAt time.Time `gorm:"type:TIMESTAMP WITHOUT TIME ZONE"` UpdatedAt time.Time `gorm:"type:TIMESTAMP WITHOUT TIME ZONE;default:current_timestamp"` } if err := DB.Exec("CREATE EXTENSION IF NOT EXISTS pgcrypto;").Error; err != nil { t.Errorf("Failed to create extension pgcrypto, got error %v", err) } DB.Migrator().DropTable(&Yasuo{}) if err := DB.AutoMigrate(&Yasuo{}); err != nil {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sat Oct 08 09:16:32 UTC 2022 - 6.4K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerMock.java
public class ArtifactHandlerMock implements ArtifactHandler { private String extension, directory, classifier, packaging, language; private boolean includesDependencies, addedToClasspath; public void setExtension(String extension) { this.extension = extension; } @Override public String getExtension() { return extension; } public void setDirectory(String directory) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
pom.xml
<group>${packaging.fess.group}</group> </mapper> </data> <!-- Add extensions --> <data> <type>directory</type> <src>${project.basedir}/src/main/assemblies/extension</src> <mapper> <type>perm</type> <prefix>${packaging.fess.extension.dir}</prefix> <user>${packaging.fess.user}</user> <group>${packaging.fess.group}</group>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 02:16:03 UTC 2024 - 49.1K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerReader.kt
private val typeHintStack = mutableListOf<Any?>() /** * The type hint for the current object. Used to pick adapters based on other fields, such as * in extensions which have different types depending on their extension ID. */ var typeHint: Any? get() = typeHintStack.lastOrNull() set(value) { typeHintStack[typeHintStack.size - 1] = value }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 10.5K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java
* <li>Information on how to use the artifact as a dependency: whether to add it to the classpath, whether to load its * dependencies transitively</li> * </ul> * */ public interface ArtifactHandler { @Deprecated String ROLE = ArtifactHandler.class.getName(); /** * Returns the file name extension of the artifact;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.yaml
ecdsFilters: - ecdsFilter: '@type': type.googleapis.com/envoy.config.core.v3.TypedExtensionConfig name: default.httpbin-rate-limiting typedConfig: '@type': type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm config: configuration: {} name: default.httpbin-rate-limiting vmConfig: code: local:
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sun Dec 24 08:16:26 UTC 2023 - 2.5K bytes - Viewed (0) -
istioctl/pkg/authz/listener.go
rbacpb "github.com/envoyproxy/go-control-plane/envoy/config/rbac/v3" rbachttp "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/rbac/v3" hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3" rbactcp "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/rbac/v3" "google.golang.org/protobuf/proto" "istio.io/istio/pkg/log" "istio.io/istio/pkg/wellknown" )
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Sep 11 15:29:30 UTC 2023 - 6K bytes - Viewed (0)