- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 113 for setValue3 (0.08 seconds)
-
compat/maven-embedder/src/test/java/org/apache/maven/cli/props/MavenPropertiesTest.java
Object o22 = properties.get(KEY1); assertEquals(VALUE1, o22); for (Map.Entry<String, String> entry : properties.entrySet()) { entry.setValue(entry.getValue() + "x"); } Object o21 = properties.get(KEY1); assertEquals(VALUE1 + "x", o21); baos = new ByteArrayOutputStream(); properties.save(baos);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 16.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
final String name = attributes.getValue("Name"); labelType = new LabelType(); labelType.setName(name); labelType.setValue(name); labelType.setPermissions(new String[] { "Rguest" }); labelType.setCreatedBy(Constants.SYSTEM_USER); labelType.setCreatedTime(now);
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 21.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
final CrawlingInfoParam entity = new CrawlingInfoParam(); entity.setCrawlingInfoId(crawlingInfo.getId()); entity.setKey(list.get(2)); entity.setValue(list.get(3)); entity.setCreatedTime(formatter.parse(list.get(4)).getTime()); crawlingInfoParamBhv.insert(entity, op -> op.setRefreshPolicy(Constants.TRUE));Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 19.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
final String comment = childNode.getNodeValue().trim(); if (comment.startsWith("googleoff:")) { flag.setValue(false); } else if (comment.startsWith("googleon:")) { flag.setValue(true); } } if (!flag.getValue() && childNode.getNodeType() == Node.TEXT_NODE) {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Dec 12 13:58:40 GMT 2025 - 54.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
final ThumbnailQueue entity = new ThumbnailQueue(); entity.setGenerator(task.getValue1()); entity.setThumbnailId(task.getValue2()); entity.setPath(task.getValue3()); entity.setTarget(target); entity.setCreatedBy(Constants.SYSTEM_USER); entity.setCreatedTime(systemHelper.getCurrentTimeAsLong()); list.add(entity);
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 27K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Synchronized.java
@Override public V getValue() { synchronized (mutex) { return delegate().getValue(); } } @Override public V setValue(V value) { synchronized (mutex) { return delegate().setValue(value); } } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; }Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Aug 08 15:11:10 GMT 2025 - 53K bytes - Click Count (0) -
guava/src/com/google/common/collect/Synchronized.java
@Override public V getValue() { synchronized (mutex) { return delegate().getValue(); } } @Override public V setValue(V value) { synchronized (mutex) { return delegate().setValue(value); } } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; }Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Aug 08 15:11:10 GMT 2025 - 56.9K bytes - Click Count (0) -
impl/maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar
equals(Object); public int hashCode(); } org/codehaus/plexus/util/cli/Commandline$Argument.class package org.codehaus.plexus.util.cli; public synchronized class Commandline$Argument { private String[] parts; public void Commandline$Argument(); public void setValue(String); public void setLine(String); public void setFile(java.io.File); public String[] getParts(); } org/codehaus/plexus/util/cli/Commandline$Marker.class package org.codehaus.plexus.util.cli; public synchronized class Commandline$Marker { private...
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 164.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/TreeRangeMap.java
V newValue = remappingFunction.apply(entry.getValue().getValue(), value); if (newValue == null) { backingItr.remove(); } else { entry.setValue( new RangeMapEntry<K, V>( entry.getValue().getLowerBound(), entry.getValue().getUpperBound(), newValue)); } } entriesByLowerBound.putAll(gaps.build()); }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 26.5K bytes - Click Count (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
protected void setId(final Object target, final String id) { final BeanDesc beanDesc = BeanDescFactory.getBeanDesc(target.getClass()); final PropertyDesc idProp = beanDesc.getPropertyDesc(ID); idProp.setValue(target, id); } /** * Gets the OpenSearch index name. * * @return The index name. */ public String getIndex() { return index; } /**
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 20 08:40:57 GMT 2025 - 34.3K bytes - Click Count (0)