- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 724 for lookup (0.05 sec)
-
src/main/java/jcifs/smb/SmbTreeConnection.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0) -
internal/config/identity/plugin/config.go
shutdownCtx context.Context serviceMetrics *metrics } // Enabled returns if AuthNPlugin is enabled. func Enabled(kvs config.KVS) bool { return kvs.Get(URL) != "" } // LookupConfig lookup AuthNPlugin from config, override with any ENVs. func LookupConfig(kv config.KVS, transport *http.Transport, closeRespFn func(io.ReadCloser), serverRegion string) (Args, error) { args := Args{}
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 13.3K bytes - Viewed (0) -
cmd/tier.go
func (config *TierConfigMgr) getDriver(ctx context.Context, tierName string) (d WarmBackend, err error) { config.Lock() defer config.Unlock() var ok bool // Lookup in-memory drivercache d, ok = config.drivercache[tierName] if ok { return d, nil } // Initialize driver from tier config matching tierName t, ok := config.Tiers[tierName] if !ok {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 20:44:05 UTC 2024 - 15.7K bytes - Viewed (0) -
api/go1.8.txt
pkg net, method (*Resolver) LookupHost(context.Context, string) ([]string, error) pkg net, method (*Resolver) LookupIPAddr(context.Context, string) ([]IPAddr, error) pkg net, method (*Resolver) LookupMX(context.Context, string) ([]*MX, error) pkg net, method (*Resolver) LookupNS(context.Context, string) ([]*NS, error) pkg net, method (*Resolver) LookupPort(context.Context, string, string) (int, error)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Dec 21 05:25:57 UTC 2016 - 16.3K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
/** "always" execution strategy */ public static final String MULTI_PASS_EXEC_STRATEGY = "always"; private static final String DEFAULT_INSTANTIATION_STRATEGY = "per-lookup"; private static final String DEFAULT_LANGUAGE = "java"; private final ArrayList<Parameter> parameters; /** By default, the execution strategy is "once-per-session" */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 21.7K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
*/ boolean isDfsStrictView (); /** * * Property <tt>jcifs.smb.client.dfs.disabled</tt> (boolean, default false) * * @return whether DFS lookup is disabled */ boolean isDfsDisabled (); /** * Enable hack to make kerberos auth work with DFS sending short names *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0) -
api/go1.12.txt
pkg debug/pe, const IMAGE_FILE_MACHINE_ARMNT ideal-int pkg expvar, method (*Map) Delete(string) pkg go/doc, const PreserveAST = 4 pkg go/doc, const PreserveAST Mode pkg go/importer, func ForCompiler(*token.FileSet, string, Lookup) types.Importer pkg go/token, method (*File) LineStart(int) Pos pkg io, type StringWriter interface { WriteString } pkg io, type StringWriter interface, WriteString(string) (int, error)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Jan 02 21:21:53 UTC 2019 - 13.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/FluentFuture.java
* by applying the given {@code AsyncFunction} to the result of the original {@code Future}. * Example usage: * * <pre>{@code * FluentFuture<RowKey> rowKeyFuture = FluentFuture.from(indexService.lookUp(query)); * ListenableFuture<QueryResult> queryFuture = * rowKeyFuture.transformAsync(dataService::readFuture, executor); * }</pre> *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 19.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
this.addresses = this.ctx.getNameServiceClient().getAllByName(host, false); } } catch ( UnknownHostException e ) { throw new CIFSException("Failed to lookup address for name " + host, e); } } return getNextAddress(); } Address getNextAddress () { Address addr = null;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:24:53 UTC 2019 - 23.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java
} String hint = protocol.toLowerCase(java.util.Locale.ENGLISH); Wagon wagon; try { wagon = container.lookup(Wagon.class, hint); } catch (ComponentLookupException e) { throw new UnsupportedProtocolException( "Cannot find wagon which supports the requested protocol: " + protocol, e); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 29.9K bytes - Viewed (0)