- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 55 for docinfo (0.06 sec)
-
cni/pkg/plugin/sidecar_redirect.go
// no annotation found so use default value return false, annotationRegistry[name].defaultVal, nil } // NewRedirect returns a new Redirect Object constructed from a list of ports and annotations func NewRedirect(pi *PodInfo) (*Redirect, error) { var isFound bool var valErr error redir := &Redirect{} redir.targetPort = defaultRedirectToPort
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jan 26 20:34:28 UTC 2024 - 10.6K bytes - Viewed (0) -
cmd/storage-datatypes_test.go
package cmd import ( "bytes" "encoding/gob" "io" "testing" "time" "github.com/tinylib/msgp/msgp" ) func BenchmarkDecodeVolInfoMsgp(b *testing.B) { v := VolInfo{ Name: "uuid", Created: time.Now(), } var buf bytes.Buffer msgp.Encode(&buf, &v) rd := msgp.NewEndlessReader(buf.Bytes(), b) dc := msgp.NewReader(rd) b.Log("Size:", buf.Len(), "bytes")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 19 18:05:16 UTC 2022 - 9.4K bytes - Viewed (0) -
cmd/storage-rest-server.go
storageStatVolRPC = grid.NewSingleHandler[*grid.MSS, *VolInfo](grid.HandlerStatVol, grid.NewMSS, func() *VolInfo { return &VolInfo{} })
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 45.7K bytes - Viewed (0) -
cni/pkg/plugin/plugin.go
return err } return nil } log.Debugf("istio-cni ambient cmdAdd podName: %s - not ambient enabled, ignoring", podName) } // End ambient plugin logic pi := &PodInfo{} var k8sErr error for attempt := 1; attempt <= podRetrievalMaxRetries; attempt++ { pi, k8sErr = getK8sPodInfo(kClient, podName, podNamespace) if k8sErr == nil { break }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Aug 14 19:36:19 UTC 2024 - 10.5K bytes - Viewed (0) -
istioctl/pkg/describe/describe_test.go
{ "initContainers": [ "istio-init" ], "containers": [ "istio-proxy" ], "volumes": [ "istio-envoy", "istio-data", "istio-podinfo", "istio-token", "istiod-ca-cert" ], "imagePullSecrets": null, "revision": "1-13-2" }`, }, expected: "1-13-2", }, }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 20:04:20 UTC 2024 - 30.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java
"pvt.k12.ca.us", "www.google.com", "www4.yahoo.co.uk", "home.netscape.com", "web.MIT.edu", "foo.eDu.au", "utenti.blah.IT", "dominio.com.co"); private static final ImmutableSet<String> NON_RS = ImmutableSet.<String>builder().addAll(NON_PS).addAll(PS_NOT_RS).build(); private static final ImmutableSet<String> TOP_UNDER_REGISTRY_SUFFIX =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 15:41:36 UTC 2024 - 17.1K bytes - Viewed (0) -
cmd/common-main.go
} api := operations.NewConsoleAPI(swaggerSpec) if !serverDebugLog { // Disable console logging if server debug log is not enabled noLog := func(string, ...interface{}) {} consoleapi.LogInfo = noLog consoleapi.LogError = noLog api.Logger = noLog } // Pass in console application config. This needs to happen before the // ConfigureAPI() call.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 21:50:11 UTC 2024 - 31.7K bytes - Viewed (0) -
cmd/admin-handlers-users_test.go
c.Helper() oinfo, err := client.StatObject(ctx, bucket, object, minio.StatObjectOptions{}) if err != nil { c.Fatalf("user was unable to download the object: %v", err) } if oinfo.UserTagCount != tagCount { c.Fatalf("expected tagCount: %d, got %d", tagCount, oinfo.UserTagCount) } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 22 00:33:43 UTC 2024 - 47.3K bytes - Viewed (0) -
cmd/storage-datatypes_gen.go
return } // MarshalMsg implements msgp.Marshaler func (z VolInfo) MarshalMsg(b []byte) (o []byte, err error) { o = msgp.Require(b, z.Msgsize()) // array header, size 2 o = append(o, 0x92) o = msgp.AppendString(o, z.Name) o = msgp.AppendTime(o, z.Created) return } // UnmarshalMsg implements msgp.Unmarshaler func (z *VolInfo) UnmarshalMsg(bts []byte) (o []byte, err error) { var zb0001 uint32
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 150.2K bytes - Viewed (0) -
docs/pt/docs/deployment/docker.md
E normalmente esse **balanceador de carga** seria capaz de lidar com solicitações que vão para *outros* aplicativos em seu cluster (por exemplo, para um domínio diferente, ou sob um prefixo de URL diferente), e transmitiria essa comunicação para os contêineres certos para *esse outro* aplicativo em execução em seu cluster. ### Um Processo por Contêiner
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 37.4K bytes - Viewed (0)