- Sort Score
- Result 10 results
- Languages All
Results 551 - 560 of 7,002 for recur2 (0.09 sec)
-
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
} } } } return itemList; } protected boolean matchLocale(final Locale requestLocale, final Locale targetLocale) { if (targetLocale.equals(requestLocale) || targetLocale.equals(Locale.ROOT)) { return true; } if (requestLocale == null || !requestLocale.getLanguage().equals(targetLocale.getLanguage())
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 11.7K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java
return new Xpp3Dom(XmlNodeBuilder.build(parser)); } if (Properties.class.isAssignableFrom(rawType)) { return parseProperties(parser); } if (Map.class.isAssignableFrom(rawType)) { return parseMap(parser, TypeArguments.get(toType.getSupertype(Map.class), 1)); } if (Collection.class.isAssignableFrom(rawType)) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/SmbNegotiation.java
} /** * @return the request */ public SmbNegotiationRequest getRequest () { return this.request; } /** * @return the response */ public SmbNegotiationResponse getResponse () { return this.response; } /** * @return the negoReqBuffer */ public byte[] getRequestRaw () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java
return delegate; } public final Bound getTo() { return to; } public final Bound getFrom() { return from; } @Override public SampleElements<E> samples() { return delegate.samples(); } @Override public E[] createArray(int length) { return delegate.createArray(length); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 18.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java
} public String getNewInput() { return newInput; } public void setNewInput(final String newInput) { this.newInput = newInput; } public String getInput() { return input; } public String getInputValue() { if (input == null) { return StringUtil.EMPTY; } return input; } public boolean isUpdated() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.4K bytes - Viewed (0) -
internal/crypto/header.go
func (ssecCopy) IsRequested(h http.Header) bool { if _, ok := h[xhttp.AmzServerSideEncryptionCopyCustomerAlgorithm]; ok { return true } if _, ok := h[xhttp.AmzServerSideEncryptionCopyCustomerKey]; ok { return true } if _, ok := h[xhttp.AmzServerSideEncryptionCopyCustomerKeyMD5]; ok { return true } return false } // ParseHTTP parses the SSE-C copy headers and returns the SSE-C client key
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Feb 22 06:26:06 UTC 2024 - 2.9K bytes - Viewed (0) -
cni/pkg/plugin/testdata/custom-uid-tproxy.txt.golden
-A ISTIO_INBOUND -p tcp --dport 15020 -j RETURN -A ISTIO_INBOUND -p tcp --dport 15021 -j RETURN -A ISTIO_INBOUND -p tcp --dport 15090 -j RETURN -A ISTIO_INBOUND -p tcp -m conntrack --ctstate RELATED,ESTABLISHED -j ISTIO_DIVERT -A ISTIO_INBOUND -p tcp -j ISTIO_TPROXY -A PREROUTING -p tcp -m mark --mark 1337 -j CONNMARK --save-mark -A OUTPUT -p tcp -o lo -m mark --mark 1337 -j RETURN
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Apr 26 16:39:28 UTC 2023 - 2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcBinding.java
*/ public String getEndpoint () { return this.endpoint; } /** * @return the uuid */ UUID getUuid () { return this.uuid; } /** * @return the major */ int getMajor () { return this.major; } /** * @return the minor */ int getMinor () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AbstractMultiset.java
} return result; } @WeakOuter class EntrySet extends Multisets.EntrySet<E> { @Override Multiset<E> multiset() { return AbstractMultiset.this; } @Override public Iterator<Entry<E>> iterator() { return entryIterator(); } @Override public int size() { return distinctElements(); } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 01 22:07:10 UTC 2021 - 6K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableBiMap.java
return buildOrThrow(); } @Override public ImmutableBiMap<K, V> buildOrThrow() { ImmutableMap<K, V> map = super.buildOrThrow(); if (map.isEmpty()) { return of(); } return new RegularImmutableBiMap<K, V>(super.buildOrThrow()); } @Override ImmutableBiMap<K, V> buildJdkBacked() { return build(); } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jan 23 18:43:40 UTC 2024 - 7.1K bytes - Viewed (0)