- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 627 for wsprefix (0.2 sec)
-
cmd/iam-etcd-store.go
) var defaultContextTimeout = 30 * time.Second func etcdKvsToSet(prefix string, kvs []*mvccpb.KeyValue) set.StringSet { users := set.NewStringSet() for _, kv := range kvs { user := extractPathPrefixAndSuffix(string(kv.Key), prefix, path.Base(string(kv.Key))) users.Add(user) } return users } // Extract path string by stripping off the `prefix` value and the suffix, // value, usually in the following form. //
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 01:29:20 UTC 2024 - 14K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/plugin/PluginManager.java
InvalidDependencyVersionException, PluginManagerException, PluginConfigurationException; PluginDescriptor getPluginDescriptorForPrefix(String prefix); Plugin getPluginDefinitionForPrefix(String prefix, MavenSession session, MavenProject project); PluginDescriptor verifyPlugin( Plugin plugin, MavenProject project, Settings settings, ArtifactRepository localRepository)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
internal/lock/lock_windows.go
// Don't canonicalize UNC paths. return path } if !filepath.IsAbs(path) { // Relative path return path } const prefix = `\\?` pathbuf := make([]byte, len(prefix)+len(path)+len(`\`)) copy(pathbuf, prefix) n := len(path) r, w := 0, len(prefix) for r < n { switch { case os.IsPathSeparator(path[r]): // empty block r++
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Oct 18 18:08:15 UTC 2023 - 7.9K bytes - Viewed (0) -
tensorflow/c/c_api.h
// effect if a prefix is set, since the prefix will guarantee all names are // unique. Defaults to false. TF_CAPI_EXPORT extern void TF_ImportGraphDefOptionsSetUniquifyNames( TF_ImportGraphDefOptions* opts, unsigned char uniquify_names); // If true, the specified prefix will be modified if it already exists as an // operation name or prefix in the graph. If false, a conflicting prefix will be
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
doc/next/6-stdlib/99-minor/net/netip/62384.md
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 18:10:51 UTC 2024 - 116 bytes - Viewed (0) -
cmd/erasure-server-pool-decom_gen.go
} } case "bkt": z.Bucket, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "Bucket") return } case "pfx": z.Prefix, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "Prefix") return } case "obj": z.Object, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "Object") return } case "id":
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 04 21:02:54 UTC 2022 - 26.7K bytes - Viewed (0) -
common-protos/k8s.io/api/networking/v1beta1/generated.proto
// when using PathType with value "Exact" or "Prefix". // +optional optional string path = 1; // pathType determines the interpretation of the path matching. PathType can // be one of the following values: // * Exact: Matches the URL path exactly. // * Prefix: Matches based on a URL path prefix split by '/'. Matching is
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
*/ String getMailSmtpServerMainHostAndPort(); /** * Get the value for the key 'mail.subject.test.prefix'. <br> * The value is, e.g. [Test] <br> * comment: The prefix of subject to show test environment or not * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getMailSubjectTestPrefix();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/api.go
NotDestinationPorts []uint16 `json:"notDestinationPorts,omitempty"` } type StringMatch struct { Exact string `json:"Exact,omitempty"` Suffix string `json:"Suffix,omitempty"` Prefix string `json:"Prefix,omitempty"` Presence any `json:"Presence,omitempty"` } type ZtunnelPolicy struct { Name string `json:"name"` Namespace string `json:"namespace"`
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 30 17:26:39 UTC 2024 - 6.1K bytes - Viewed (0) -
internal/config/dns/etcd_dns.go
return func(args *CoreDNS) { args.domainPort = domainPort } } // CoreDNSPath - custom prefix on etcd to populate DNS // service records, optional and can be empty. // if empty then c.prefixPath is used i.e "/skydns" func CoreDNSPath(prefix string) EtcdOption { return func(args *CoreDNS) { args.prefixPath = prefix } } // NewCoreDNS - initialize a new coreDNS set/unset values.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 26 15:03:08 UTC 2024 - 8K bytes - Viewed (0)