Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 497 for sw_vers (1.53 sec)

  1. pilot/pkg/config/kube/ingress/conversion.go

    			continue
    		}
    		// TODO validation when multiple wildcard tls secrets are given
    		if len(tls.Hosts) == 0 {
    			tls.Hosts = []string{"*"}
    		}
    		gateway.Servers = append(gateway.Servers, &networking.Server{
    			Port: &networking.Port{
    				Number:   443,
    				Protocol: string(protocol.HTTPS),
    				Name:     fmt.Sprintf("https-443-ingress-%s-%s-%d", ingress.Name, ingress.Namespace, i),
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

              be optionally associated with a BGP session.
            properties:
              apiVersion:
                description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. src/net/dnsclient_unix_test.go

    					}
    					if len(ips) == 0 {
    						t.Errorf("no records for %s", name)
    						return
    					}
    				}(tt.name)
    			}
    			wg.Wait()
    		}
    		servers := conf.servers()
    		if !reflect.DeepEqual(servers, tt.servers) {
    			t.Errorf("#%d: got %v; want %v", i, servers, tt.servers)
    			continue
    		}
    	}
    }
    
    var goLookupIPWithResolverConfigTests = []struct {
    	name  string
    	lines []string // resolver configuration lines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/Authenticator.kt

     *     .build();
     * ```
     *
     * The proxy authenticator may implement preemptive authentication, reactive authentication, or
     * both.
     *
     * Applications may configure OkHttp with an authenticator for origin servers, or proxy servers,
     * or both.
     *
     * ## Authentication Retries
     *
     * If your authentication may be flaky and requires retries you should apply some policy
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/testing/testserver.go

    	"k8s.io/kubernetes/cmd/kube-controller-manager/app/options"
    )
    
    func init() {
    	// If instantiated more than once or together with other servers, the
    	// servers would try to modify the global logging state. This must get
    	// ignored during testing.
    	logsapi.ReapplyHandling = logsapi.ReapplyHandlingIgnoreUnchanged
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/default_storage_factory_builder.go

    		group := apiresource[0]
    		resource := apiresource[1]
    		groupResource := schema.GroupResource{Group: group, Resource: resource}
    
    		servers := strings.Split(tokens[1], ";")
    		storageFactory.SetEtcdLocation(groupResource, servers)
    	}
    	return storageFactory, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types.go

    	// If all API server instances agree on the same encoding storage version,
    	// then this field is set to that version. Otherwise this field is left empty.
    	// API servers should finish updating its storageVersionStatus entry before
    	// serving write operations, so that this field will be in sync with the reality.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/alias.yaml.golden

        internal.istio.io/parents: Gateway/gateway/default.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*.domain.example'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/https.md

    ### DNS
    
    Now let's focus on all the actual HTTPS parts.
    
    First, the browser would check with the **DNS servers** what is the **IP for the domain**, in this case, `someapp.example.com`.
    
    The DNS servers would tell the browser to use some specific **IP address**. That would be the public IP address used by your server, that you configured in the DNS servers.
    
    <img src="/img/deployment/https/https01.svg">
    
    ### TLS Handshake Start
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/AbstractTextDependencyVerificationReportRenderer.java

                    sb.append("signatures and ");
                }
                sb.append("checksums.");
                if (highLevelErrors.hasFailedSignatures() && highLevelErrors.isKeyServersDisabled()) {
                    sb.append(" Key servers are disabled, this can indicate that you need to update the local keyring with the missing keys.");
                }
                legend(sb.toString());
            }
            if (highLevelErrors.canSuggestWriteMetadata()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top