- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 1,663 for _name (0.03 sec)
-
istioctl/pkg/metrics/metrics.go
p50Latency, err := getLatency(promAPI, wname, wns, duration, 0.5) if err != nil { me = multierror.Append(me, err) } sm.p50Latency = p50Latency p90Latency, err := getLatency(promAPI, wname, wns, duration, 0.9) if err != nil { me = multierror.Append(me, err) } sm.p90Latency = p90Latency p99Latency, err := getLatency(promAPI, wname, wns, duration, 0.99) if err != nil { me = multierror.Append(me, err) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Apr 13 05:23:38 UTC 2024 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
for (final Field field : clazz.getDeclaredFields()) { final String fname = field.getName(); if (fieldDescCache.containsKey(fname)) { continue; } setFieldAccessible(field); final FieldDescImpl fieldDesc = new FieldDescImpl(this, field); fieldDescCache.put(fname, fieldDesc); if (!FieldUtil.isInstanceField(field)) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 26.1K bytes - Viewed (0) -
internal/config/lambda/parse.go
validKVS, ok := DefaultLambdaKVS[subSys] if !ok { return nil } for tname, kv := range tgt { subSysTarget := subSys if tname != config.Default { subSysTarget = subSys + config.SubSystemSeparator + tname } if v, ok := kv.Lookup(config.Enable); ok && v == config.EnableOn { if err := config.CheckValidKeys(subSysTarget, kv, validKVS); err != nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 6K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/listener.go
for _, l := range listeners { chains := getFilterChains(l) lname := "envoy://" + l.GetName() // Avoid duplicating the listener and filter name if l.GetInternalListener() != nil && len(chains) == 1 && chains[0].GetName() == lname { lname = "internal" } for _, fc := range chains { name := fc.GetName() matches := newMatcher(fc, l) destination := getFilterType(fc.GetFilters())
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 29 12:37:14 UTC 2023 - 18.1K bytes - Viewed (0) -
tests/table_test.go
if !regexp.MustCompile("SELECT \\* FROM \\(SELECT .name. FROM .users. WHERE name = .+ AND .users.\\..deleted_at. IS NULL\\) as u, \\(SELECT .name. FROM .pets. WHERE name = .+ AND .pets.\\..deleted_at. IS NULL\\) as p WHERE name = .+ AND name = .+ AND .u.\\..deleted_at. IS NULL").MatchString(r.Statement.SQL.String()) { t.Errorf("Table with escape character, got %v", r.Statement.SQL.String()) }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sat Mar 09 09:31:28 UTC 2024 - 10.6K bytes - Viewed (0) -
docs/distributed/distributed-from-config-file.sh
} cleanup unset MINIO_KMS_KES_CERT_FILE unset MINIO_KMS_KES_KEY_FILE unset MINIO_KMS_KES_ENDPOINT unset MINIO_KMS_KES_KEY_NAME export MINIO_CI_CD=1 if [ ! -f ./mc ]; then os="$(uname -s)" arch="$(uname -m)" case "${arch}" in "x86_64") arch="amd64" ;; esac wget -O mc https://dl.minio.io/client/mc/release/${os,,}-${arch,,}/mc && chmod +x mc fi for i in $(seq 1 4); do
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 28 09:06:49 UTC 2024 - 3.3K bytes - Viewed (0) -
test-site/activator
echo "$(pwd -P)/$TARGET_FILE" else echo $(cygwinpath "$(pwd -P)/$TARGET_FILE") fi ) } # TODO - Do we need to detect msys? # Uses uname to detect if we're in the odd cygwin environment. is_cygwin() { local os=$(uname -s) case "$os" in CYGWIN*) return 0 ;; *) return 1 ;; esac } # This can fix cygwin style /cygdrive paths so we get the # windows style paths.
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 9.3K bytes - Viewed (0) -
api/go1.23.txt
pkg archive/tar, type FileInfoNames interface, Gname() (string, error) #50102 pkg archive/tar, type FileInfoNames interface, IsDir() bool #50102 pkg archive/tar, type FileInfoNames interface, ModTime() time.Time #50102 pkg archive/tar, type FileInfoNames interface, Mode() fs.FileMode #50102 pkg archive/tar, type FileInfoNames interface, Name() string #50102
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Jun 25 17:08:08 UTC 2024 - 10.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java
public int platform_id; public String name; public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_long(platform_id); _dst.enc_ndr_referent(name, 1); if (name != null) { _dst = _dst.deferred; _dst.enc_ndr_string(name); } }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 18.4K bytes - Viewed (0) -
ci/official/utilities/rename_and_verify_wheels.sh
# 'k' for kilobytes, 'M' for megabytes, or 'G' for gigabytes, and the + to indicate # "anything greater than" is added by the script. if [[ "$TFCI_WHL_SIZE_LIMIT_ENABLE" == "1" ]] && [[ -n "$(find . -iname "*.whl" -size "+$TFCI_WHL_SIZE_LIMIT")" ]]; then echo "Error: Generated wheel is too big! Limit is $TFCI_WHL_SIZE_LIMIT" echo '(search for TFCI_WHL_SIZE_LIMIT to change it)' ls -sh *.whl exit 2 fi
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 21:18:17 UTC 2024 - 4.3K bytes - Viewed (0)