- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 200 for getErr (0.09 sec)
-
compat/maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java
source.setUrl( "SOURCE" ); modelMerger.merge( target, source, true, null ); assertThat( target.getUrl(), is( "SOURCE" ) ); target.setUrl( "TARGET" );; modelMerger.merge( target, source, false, null ); assertThat( target.getUrl(), is( "TARGET" ) ); } @Test public void mergeVersion() { Model target = new Model();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/RemoteRepository.java
* @see ModelBase#getRepositories() * @see ModelBase#getPluginRepositories() */ @Experimental @Immutable public interface RemoteRepository extends Repository { @Nonnull String getUrl(); @Nonnull String getProtocol();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsFailureUrl.java
return convertEmptyToNull(threadName); } public void setThreadName(String value) { registerModifiedProperty("threadName"); this.threadName = value; } public String getUrl() { checkSpecifiedProperty("url"); return convertEmptyToNull(url); } public void setUrl(String value) { registerModifiedProperty("url"); this.url = value; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.6K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java
String pathOfRemoteRepositoryMetadata(ArtifactMetadata artifactMetadata); String pathOfLocalRepositoryMetadata(ArtifactMetadata metadata, ArtifactRepository repository); String getUrl(); void setUrl(String url); String getBasedir(); String getProtocol(); String getId(); void setId(String id); ArtifactRepositoryPolicy getSnapshots();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (1) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
propertyDescCache.remove(name); } invalidPropertyNames.clear(); } /** * getterメソッドを準備します。 * * @param readMethod * getterメソッド * @param propertyName * プロパティ名 */ protected void setupReadMethod(final Method readMethod, final String propertyName) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 26.1K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
throw new OpenSearchAccessException("Failed to refresh.", e); } } protected IndexResponse insert(final Object target, final OpType opType) { final String url = getUrl(target); if (url == null) { throw new OpenSearchAccessException("url is null."); } final String id = getId(getSessionId(target), url);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 23.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsentity/BsClickLog.java
return requestedAt; } public void setRequestedAt(LocalDateTime value) { registerModifiedProperty("requestedAt"); this.requestedAt = value; } public String getUrl() { checkSpecifiedProperty("url"); return convertEmptyToNull(url); } public void setUrl(String value) { registerModifiedProperty("url"); this.url = value; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7K bytes - Viewed (0) -
istioctl/pkg/waypoint/waypoint_test.go
if len(expectedOut) == 0 { t.Fatal("expected output is empty") } var out bytes.Buffer rootCmd := Cmd(ctx) rootCmd.SetArgs(tt.args) rootCmd.SetOut(&out) rootCmd.SetErr(&out) fErr := rootCmd.Execute() if fErr != nil { t.Fatal(fErr) } output := out.String() if output != expectedOut { t.Fatalf("expected %s, got %s", expectedOut, output) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Apr 04 15:53:09 UTC 2024 - 4.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPluginXmlFactory.java
@Override public PluginDescriptor read(@Nonnull XmlReaderRequest request) throws XmlReaderException { nonNull(request, "request"); Path path = request.getPath(); URL url = request.getURL(); Reader reader = request.getReader(); InputStream inputStream = request.getInputStream(); if (path == null && url == null && reader == null && inputStream == null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/tests/NamingTest.java
} assertArrayEquals(expect, found); // check that the name can be resolved via URL URL purl = d.getURL(); for ( String name : names ) { URL u = new URL(purl, name); try ( SmbResource tf = new SmbFile(u, d.getContext()) ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 06 10:48:05 UTC 2020 - 7K bytes - Viewed (0)