- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 2,254 for setX (0.12 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
} /** * Sets the character set used for SMB operations. * @param charset the charset to set */ public void setCharset(final String charset) { this.charset = charset; } /** * Sets the SMB authentication holder. * * @param smbAuthenticationHolder the SMB authentication holder to set */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 22.5K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AggregateFutureState.java
* See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.util.concurrent; import static com.google.common.collect.Sets.newHashSet; import java.util.Set; import org.jspecify.annotations.Nullable; /** Emulation of AggregateFutureState. */ abstract class AggregateFutureState<OutputT extends @Nullable Object>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 1.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
return useEPSVwithIPv4; } /** * Sets whether EPSV command should be used with IPv4. * * @param useEPSVwithIPv4 True to enable EPSV with IPv4, false to disable */ public void setUseEPSVwithIPv4(final boolean useEPSVwithIPv4) { this.useEPSVwithIPv4 = useEPSVwithIPv4; } /** * Sets the FTP authentication holder.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 39.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
} return value; } /** * Sets a setting value. * @param key The key of the setting. * @param value The value to set. */ public void set(final String key, final Object value) { if (logger.isDebugEnabled()) { logger.debug("Set suggest settings. {} key: {} value: {}", settingsIndexName, key, value); } try {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 18.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableSortedSet.java
* of their natural ordering. */ public static <E extends Comparable<?>> Builder<E> reverseOrder() { return new Builder<>(Collections.reverseOrder()); } /** * Returns a builder that creates immutable sorted sets whose elements are ordered by their
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36.8K bytes - Viewed (0) -
tensorflow/c/c_api.h
// `max_func`. In usual usage, max_func should be set to the result of // TF_GraphNumFunctions(g). In this case, all the functions registered in // `g` will be returned. Else, an unspecified subset. // // If successful, returns the number of TF_Function* successfully set in // `funcs` and sets status to OK. The caller takes ownership of
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
misc/cgo/gmp/gmp.go
func (z *Int) Len() int { z.doinit() return int(C.mpz_sizeinbase(&z.i[0], 2)) } // Set sets z = x and returns z. func (z *Int) Set(x *Int) *Int { z.doinit() C.mpz_set(&z.i[0], &x.i[0]) return z } // SetBytes interprets b as the bytes of a big-endian integer // and sets z to that value. func (z *Int) SetBytes(b []byte) *Int { z.doinit() if len(b) == 0 { z.SetInt64(0)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Apr 11 16:34:30 UTC 2022 - 9.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
* * @return the feature map */ public Map<String, String> getFeatureMap() { return featureMap; } /** * Sets the map of parser features. * * @param featureMap the feature map to set */ public void setFeatureMap(final Map<String, String> featureMap) { this.featureMap = featureMap; } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 28.5K bytes - Viewed (0) -
cmd/erasure-server-pool.go
} errs := make([]error, len(erasureSet.sets)) wk, _ := workers.New(3) for idx, set := range erasureSet.sets { if opts.Set != nil && *opts.Set != idx { continue } wk.Take() go func(idx int, set *erasureObjects) { defer wk.Give() errs[idx] = set.listAndHeal(ctx, bucket, prefix, opts.Recursive, opts.ScanMode, healEntry) }(idx, set) } wk.Wait()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 89.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingSet.java
import com.google.common.annotations.GwtCompatible; import java.util.Collection; import java.util.Set; import org.jspecify.annotations.Nullable; /** * A set which forwards all its method calls to another set. Subclasses should override one or more * methods to modify the behavior of the backing set as desired per the <a * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.7K bytes - Viewed (0)