Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 181 for sw_vers (0.3 sec)

  1. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

            "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",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  2. src/net/conf_test.go

    	}
    	if err := f.Close(); err != nil {
    		t.Fatal(err)
    	}
    	return parseNSSConfFile(f.Name())
    }
    
    // represents a dnsConfig returned by parsing a nonexistent resolv.conf
    var defaultResolvConf = &dnsConfig{
    	servers:  defaultNS,
    	ndots:    1,
    	timeout:  5,
    	attempts: 2,
    	err:      fs.ErrNotExist,
    }
    
    func TestConfHostLookupOrder(t *testing.T) {
    	// These tests are written for a system with cgo available,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. cmd/kube-apiserver/app/testing/testserver.go

    	"k8s.io/kubernetes/cmd/kube-apiserver/app"
    	"k8s.io/kubernetes/cmd/kube-apiserver/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: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. cmd/storage-rest_test.go

    	defer func() {
    		globalMinioHost, globalMinioPort = prevHost, prevPort
    	}()
    	// tg[0] = local, tg[1] = remote
    
    	// Remote URL
    	url, err := xnet.ParseHTTPURL(tg.Servers[1].URL)
    	if err != nil {
    		t.Fatalf("unexpected error %v", err)
    	}
    	url.Path = t.TempDir()
    
    	globalMinioHost, globalMinioPort = mustSplitHostPort(url.Host)
    
    	endpoint, err := NewEndpoint(url.String())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/net/server_test.go

    	{snet: "tcp6", saddr: "[::]:0", tnet: "tcp6", taddr: "::1"},
    
    	{snet: "tcp6", saddr: "[::1]:0", tnet: "tcp6", taddr: "::1"},
    }
    
    // TestTCPServer tests concurrent accept-read-write servers.
    func TestTCPServer(t *testing.T) {
    	const N = 3
    
    	for i, tt := range tcpServerTests {
    		t.Run(tt.snet+" "+tt.saddr+"<-"+tt.taddr, func(t *testing.T) {
    			if !testableListenArgs(tt.snet, tt.saddr, tt.taddr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. tests/integration/pilot/ingress_test.go

            image: auto
            imagePullPolicy: {{ .imagePullPolicy }}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: app
    spec:
      selector:
        istio: custom
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: app
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. api/maven-api-settings/src/main/mdo/settings.mdo

            }
            return activeProxy;
        }
    
        public Server getServer(String serverId) {
            Server match = null;
            java.util.List<Server> servers = getServers();
            if (servers != null && serverId != null) {
                for (Server server : servers) {
                    if (serverId.equals(server.getId())) {
                        match = server;
                        break;
                    }
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. pkg/webhooks/validation/controller/controller.go

    				label.IoIstioRev.Name: c.o.Revision,
    			},
    			Annotations: map[string]string{
    				// Add always-reject annotation. For now, we are invalid for two reasons: missing `spec.servers`, and this
    				// annotation. In the future, the CRD will reject a missing `spec.servers` before we hit the webhook, so we will
    				// only have that annotation. For backwards compatibility, we keep both methods for some time.
    				constants.AlwaysReject: "true",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

            }
        }
    
        public void injectAuthentication(List<ArtifactRepository> repositories, List<Server> servers) {
            if (repositories != null) {
                Map<String, Server> serversById = new HashMap<>();
    
                if (servers != null) {
                    for (Server server : servers) {
                        if (!serversById.containsKey(server.getId())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

                !offline
            );
            if (!verificationsBuilder.isUseKeyServers() && !offline) {
                LOGGER.lifecycle("Will use key servers to download missing keys. If you really want to ignore key servers when generating the verification file, you can use the --offline flag in addition");
            }
            try {
                validateChecksums();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top