- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 828 for mname (0.05 sec)
-
src/archive/tar/writer_test.go
for _, test := range []struct { name string h *Header }{{ name: "name too long", h: &Header{Name: strings.Repeat("a", maxSpecialFileSize)}, }, { name: "linkname too long", h: &Header{Linkname: strings.Repeat("a", maxSpecialFileSize)}, }, { name: "uname too long", h: &Header{Uname: strings.Repeat("a", maxSpecialFileSize)}, }, { name: "gname too long",
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 14:32:33 UTC 2024 - 39.4K bytes - Viewed (0) -
istioctl/pkg/describe/describe.go
if !containerStatus.Ready { fmt.Fprintf(writer, "WARNING: Pod %s Container %s NOT READY\n", kname(pod.ObjectMeta), containerStatus.Name) } } for _, containerStatus := range pod.Status.InitContainerStatuses { if !containerStatus.Ready { fmt.Fprintf(writer, "WARNING: Pod %s Init Container %s NOT READY\n", kname(pod.ObjectMeta), containerStatus.Name) } } if ignoreUnmeshed { return } if !isMeshed(pod) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 50.6K bytes - Viewed (0) -
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/archive/tar/writer.go
func splitUSTARPath(name string) (prefix, suffix string, ok bool) { length := len(name) if length <= nameSize || !isASCII(name) { return "", "", false } else if length > prefixSize+1 { length = prefixSize + 1 } else if name[length-1] == '/' { length-- } i := strings.LastIndex(name[:length], "/") nlen := len(name) - i - 1 // nlen is length of suffix
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 14:22:59 UTC 2024 - 19.6K 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) -
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) -
src/archive/tar/format.go
// ------------------+--------+-----------+---------- // Name | 256B | unlimited | unlimited // Linkname | 100B | unlimited | unlimited // Size | uint33 | unlimited | uint89 // Mode | uint21 | uint21 | uint57 // Uid/Gid | uint21 | unlimited | uint57 // Uname/Gname | 32B | unlimited | 32B // ModTime | uint33 | unlimited | int89
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Oct 13 18:36:46 UTC 2023 - 11.3K bytes - Viewed (0) -
ci/official/containers/linux_arm64/devel.usertools/wheel_verification.bats
# Suite of verification tests for the SINGLE TensorFlow wheel in /tf/pkg # or whatever path is set as $TF_WHEEL. setup_file() { cd /tf/pkg if [[ -z "$TF_WHEEL" ]]; then export TF_WHEEL=$(find /tf/pkg -iname "*.whl") fi } teardown_file() { rm -rf /tf/venv } @test "Wheel is manylinux2014 (manylinux_2_17) compliant" { python3 -m auditwheel show "$TF_WHEEL" > audit.txt
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Jan 23 02:14:00 UTC 2024 - 2.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
final String aname = attr.getNodeName(); final boolean isPrefix = aname.startsWith("xmlns:"); if (isPrefix || "xmlns".equals(aname)) { final int index = aname.indexOf(':'); final String p = isPrefix ? aname.substring(index + 1) : StringUtil.EMPTY;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 17.9K bytes - Viewed (0)