- Sort Score
- Result 10 results
- Languages All
Results 3991 - 4000 of 6,150 for string (0.08 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/relatedquery/SearchForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.relatedquery; /** * @author shinsuke */ public class SearchForm { public String term; public String queries;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 786 bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
@Override public void setProperty(Project project, String key, String value) { Properties properties = getMavenProject(project).getProperties(); if (value == null) { properties.remove(key); } else { properties.setProperty(key, value); } } @Override public Map<String, String> getProperties(Project project) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.3K bytes - Viewed (0) -
cni/pkg/nodeagent/informers.go
if getModeLabel(oldNs.Labels) != getModeLabel(newNs.Labels) { log.Debugf("Namespace %s updated", newNs.Name) s.enqueueNamespace(newNs) } } return nil } func getModeLabel(m map[string]string) string { if m == nil { return "" } return m[label.IoIstioDataplaneMode.Name] } func (s *InformerHandlers) reconcilePod(input any) error { event := input.(controllers.Event)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 11.7K bytes - Viewed (0) -
cni/pkg/nodeagent/cni-watcher_test.go
Status: corev1.PodStatus{ PodIP: fakePodIP, }, } podOutOfAmbient := &corev1.Pod{ ObjectMeta: metav1.ObjectMeta{ Name: "pod-noambient", Namespace: "funkyns", Labels: map[string]string{ label.IoIstioDataplaneMode.Name: constants.DataplaneModeNone, }, }, Spec: corev1.PodSpec{ NodeName: NodeName, }, Status: corev1.PodStatus{ PodIP: fakePodIP, }, }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 7.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt
val buckets: List<FunctionalTestBucket> ) data class FunctionalTestBucket( val subprojects: List<String>, val parallelizationMethod: ParallelizationMethod ) { constructor(jsonObject: JSONObject) : this( jsonObject.getJSONArray("subprojects").map { it.toString() }, ParallelizationMethod.fromJson(jsonObject) )
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 29 11:04:49 UTC 2024 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java
} } protected FailureUrl storeFailureUrl(final CrawlerContext crawlerContext, final UrlQueue<?> urlQueue, final String errorName, final Throwable e) { final CrawlingConfig crawlingConfig = getCrawlingConfig(crawlerContext.getSessionId()); final String url = urlQueue.getUrl(); final FailureUrlService failureUrlService = ComponentUtil.getComponent(FailureUrlService.class);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Handler.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransWaitNamedPipe.java
} @Override protected int readDataWireFormat ( byte[] buffer, int bufferIndex, int len ) { return 0; } @Override public String toString () { return new String("TransWaitNamedPipe[" + super.toString() + ",pipeName=" + this.name + "]"); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.4K bytes - Viewed (0) -
tests/non_std_test.go
package tests_test import ( "testing" "time" ) type Animal struct { Counter uint64 `gorm:"primary_key:yes"` Name string `gorm:"DEFAULT:'galeone'"` From string // test reserved sql keyword as field name Age *time.Time unexported string // unexported value CreatedAt time.Time UpdatedAt time.Time } func TestNonStdPrimaryKeyAndDefaultValues(t *testing.T) { DB.Migrator().DropTable(&Animal{})
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed May 08 04:07:58 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/validation/CustomSizeValidator.java
private String message; @Override public void initialize(final CustomSize constraintAnnotation) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String minKey = constraintAnnotation.minKey(); if (StringUtil.isNotBlank(minKey)) { min = Integer.parseInt(fessConfig.get(minKey)); } final String maxKey = constraintAnnotation.maxKey();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.8K bytes - Viewed (0)