Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for portnet (0.33 sec)

  1. pkg/printers/internalversion/printers.go

    	list := []string{}
    	max := 3
    	more := false
    	count := 0
    	for _, port := range ports {
    		if len(list) < max {
    			portNum := "*"
    			if port.Port != nil {
    				portNum = strconv.Itoa(int(*port.Port))
    			} else if port.Name != nil {
    				portNum = *port.Name
    			}
    			list = append(list, portNum)
    		} else if len(list) == max {
    			more = true
    		}
    		count++
    	}
    	return listWithMoreString(list, more, count, max)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. pkg/apis/apps/validation/validation_test.go

    			Template: validPodTemplate.Template,
    			UpdateStrategy: apps.DaemonSetUpdateStrategy{
    				Type: apps.OnDeleteDaemonSetStrategyType,
    			},
    		},
    	}, {
    		ObjectMeta: metav1.ObjectMeta{Name: "hostnet", Namespace: metav1.NamespaceDefault},
    		Spec: apps.DaemonSetSpec{
    			Selector: &metav1.LabelSelector{MatchLabels: validSelector},
    			Template: validHostNetPodTemplate.Template,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    prvcy.page
    
    // Protocol Labs : https://protocol.ai/
    // Submitted by Michael Burns <******@****.***>
    *.dweb.link
    
    // Protonet GmbH : http://protonet.io
    // Submitted by Martin Meier <admin@protonet.io>
    protonet.io
    
    // Publication Presse Communication SARL : https://ppcom.fr
    // Submitted by Yaacov Akiba Slama <******@****.***>
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  4. pkg/apis/batch/validation/validation_test.go

    					Selector:             validGeneratedSelector,
    					Template:             validPodTemplateSpecForGenerated,
    					PodReplacementPolicy: &failedPodReplacement,
    				},
    			},
    		},
    		"valid hostnet": {
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    			job: batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "myjob",
    					Namespace: metav1.NamespaceDefault,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    		hostName, dest, portN, cred := "*", dests[0], 80, ""
    		if protocol.IsTLS() {
    			hostName, portN, cred = dest.Config().ClusterLocalFQDN(), 443, "cred"
    		}
    		return map[string]any{
    			"IngressNamespace":   src[0].(ingress.Instance).Namespace(),
    			"GatewayHost":        hostName,
    			"GatewayPort":        portN,
    			"GatewayPortName":    strings.ToLower(string(protocol)),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

                tools placing it in the repository. Valid values are: {@code none} (default),
                {@code converted} (repository manager converted this from an Maven 1 POM),
                {@code partner}
                (directly synced from a partner Maven 2 repository), {@code deployed} (was deployed from a Maven 2
                instance), {@code verified} (has been hand verified as correct and final).
              </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
Back to top