- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 1,271 for vort (0.05 sec)
-
docs/de/docs/deployment/concepts.md
## Programm und Prozess Wir werden viel über den laufenden „**Prozess**“ sprechen, daher ist es nützlich, Klarheit darüber zu haben, was das bedeutet und was der Unterschied zum Wort „**Programm**“ ist. ### Was ist ein Programm? Das Wort **Programm** wird häufig zur Beschreibung vieler Dinge verwendet: * Der **Code**, den Sie schreiben, die **Python-Dateien**.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 20.6K bytes - Viewed (0) -
istioctl/pkg/config/config.go
"xds-address": env.Register("ISTIOCTL_XDS_ADDRESS", "", "The istioctl --xds-address override"), "xds-port": env.Register("ISTIOCTL_XDS_PORT", 15012, "The istioctl --xds-port override"), "authority": env.Register("ISTIOCTL_AUTHORITY", "", "The istioctl --authority override"),
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sun Jul 30 12:16:07 UTC 2023 - 3.1K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/clusters/clusters.go
return nil } func retrieveSortedEndpointClusterSlice(ec []EndpointCluster) []EndpointCluster { sort.Slice(ec, func(i, j int) bool { if ec[i].address == ec[j].address { if ec[i].port == ec[j].port { return ec[i].cluster < ec[j].cluster } return ec[i].port < ec[j].port } return ec[i].address < ec[j].address }) return ec } func printFailedOutlierCheck(b bool) string {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Nov 03 08:41:32 UTC 2022 - 5.8K bytes - Viewed (0) -
src/main/resources/fess_label_de.properties
labels.suggest_word_configuration=Wort vorschlagen labels.suggest_word_title_details=Wort vorschlagen labels.suggest_word_type=Worttyp labels.suggest_word_number=Wortanzahl labels.suggest_word_type_all=Alle labels.suggest_word_type_document=Dokument labels.suggest_word_type_query=Query labels.elevate_word_configuration=Zusätzliches Wort labels.elevate_word_title_details=Zusätzliches Wort labels.elevate_word_link_list=Liste
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 42.8K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/cluster.go
type ClusterFilter struct { FQDN host.Name Port int Subset string Direction model.TrafficDirection } // Verify returns true if the passed cluster matches the filter fields func (c *ClusterFilter) Verify(cluster *cluster.Cluster) bool { name := cluster.Name if c.FQDN == "" && c.Port == 0 && c.Subset == "" && c.Direction == "" { return true }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu May 11 05:38:17 UTC 2023 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
return getSmbTransport(tc, address, port, tc.getConfig().getLocalAddr(), tc.getConfig().getLocalPort(), null, nonPooled); } @Override public SmbTransportImpl getSmbTransport ( CIFSContext tc, Address address, int port, boolean nonPooled, boolean forceSigning ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 12.5K bytes - Viewed (0) -
cmd/endpoint.go
return ep, fmt.Errorf("invalid URL endpoint format") } var port string host, port, err = net.SplitHostPort(u.Host) if err != nil { if !strings.Contains(err.Error(), "missing port in address") { return ep, fmt.Errorf("invalid URL endpoint format: %w", err) } host = u.Host } else { var p int p, err = strconv.Atoi(port) if err != nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 21 22:22:24 UTC 2024 - 34.2K bytes - Viewed (0) -
istioctl/pkg/kubeinject/kubeinject.go
} address = fmt.Sprintf("https://%s:%d%s", e.injectorAddress, *cc.Service.Port, *cc.Service.Path) } else { pod, err := GetFirstPod(e.client.Kube().CoreV1(), namespace, selector.String()) if err != nil { return nil, err } webhookPort := cc.Service.Port podPort := 15017 for _, v := range svc.Spec.Ports { if v.Port == *webhookPort { podPort = v.TargetPort.IntValue() break }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 21K bytes - Viewed (0) -
internal/config/dns/etcd_dns.go
const etcdPathSeparator = "/" // create a new coredns service record for the bucket. func newCoreDNSMsg(ip string, port string, ttl uint32, t time.Time) ([]byte, error) { return json.Marshal(&SrvRecord{ Host: ip, Port: json.Number(port), TTL: ttl, CreationDate: t, }) } // Close closes the internal etcd client and cannot be used further
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 26 15:03:08 UTC 2024 - 8K bytes - Viewed (0) -
istioctl/pkg/admin/istiodconfig.go
if err != nil { return fmt.Errorf("could not build port forwarder for ControlZ %s: %v", podName, err) } defer portForwarder.Close() err = portForwarder.Start() if err != nil { return fmt.Errorf("could not start port forwarder for ControlZ %s: %v", podName, err) } ctrlzClient := &ControlzClient{ baseURL: &url.URL{
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Apr 13 05:23:38 UTC 2024 - 13.5K bytes - Viewed (0)