Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 298 for sw_vers (0.43 sec)

  1. src/expvar/expvar_test.go

    	// Such pattern is used in net/http and net/rpc.
    
    	b.StopTimer()
    
    	P := runtime.GOMAXPROCS(0)
    	N := b.N / P
    	W := 1000
    
    	// Setup P client/server connections.
    	clients := make([]net.Conn, P)
    	servers := make([]net.Conn, P)
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		b.Fatalf("Listen failed: %v", err)
    	}
    	defer ln.Close()
    	done := make(chan bool, 1)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/maven/conf/settings.xml

          <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
        </proxy>
        -->
      </proxies>
    
      <!-- servers
       | This is a list of authentication profiles, keyed by the server-id used within the system.
       | Authentication profiles can be used whenever maven must make a connection to a remote server.
       |-->
      <servers>
        <!-- server
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-kubeapiserver.sh

          exit 1
      fi
    
      if [[ -z "${ETCD_SERVERS:-}" ]]; then
        params_ref+=" --etcd-servers-overrides=${ETCD_SERVERS_OVERRIDES:-/events#http://127.0.0.1:4002}"
      elif [[ -n "${ETCD_SERVERS_OVERRIDES:-}" ]]; then
        params_ref+=" --etcd-servers-overrides=${ETCD_SERVERS_OVERRIDES:-}"
      fi
    
      if [[ -n "${STORAGE_BACKEND:-}" ]]; then
        params_ref+=" --storage-backend=${STORAGE_BACKEND}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/graceful_termination_test.go

    				t.Errorf("unexpected error")
    			}
    
    			if !reflect.DeepEqual(ipvs, test.expectedIPVS) {
    				t.Logf("actual: %+v", ipvs)
    				t.Logf("expected : %+v", test.expectedIPVS)
    				t.Errorf("unexpected IPVS servers")
    			}
    		})
    	}
    }
    
    func Test_RaceTerminateRSList(t *testing.T) {
    	ipvs := utilipvstest.NewFake()
    	gracefulTerminationManager := NewGracefulTerminationManager(ipvs)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/concepts.md

    If you are paying for 3 servers but you are using only a little bit of their RAM and CPU, you are probably **wasting money** 💸, and probably **wasting server electric power** 🌎, etc.
    
    In that case, it could be better to have only 2 servers and use a higher percentage of their resources (CPU, memory, disk, network bandwidth, etc).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    				"--requestheader-allowed-names=front-proxy-client",
    				"--authorization-mode=Node,RBAC",
    				"--advertise-address=1.2.3.4",
    				fmt.Sprintf("--etcd-servers=https://127.0.0.1:%d", kubeadmconstants.EtcdListenClientPort),
    				"--etcd-cafile=" + filepath.Join(testCertsDir, "etcd/ca.crt"),
    				"--etcd-certfile=" + filepath.Join(testCertsDir, "apiserver-etcd-client.crt"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

            true           | true
    
        }
    
        def "parses key servers"() {
            when:
            parse """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata>
       <configuration>
          <key-servers>
             <key-server uri="https://pgp.key-server.io"/>
             <key-server uri="hkp://keys.openpgp.org"/>
          </key-servers>
       </configuration>
    </verification-metadata>
    """
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  8. istioctl/pkg/multixds/gather.go

    }
    
    var DefaultOptions = Options{
    	MessageWriter:     os.Stdout,
    	XdsViaAgents:      false,
    	XdsViaAgentsLimit: 0,
    }
    
    // RequestAndProcessXds merges XDS responses from 1 central or 1..N K8s cluster-based XDS servers
    // Deprecated This method makes multiple responses appear to come from a single control plane;
    // consider using AllRequestAndProcessXds or FirstRequestAndProcessXds
    // nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

    <verification-metadata>
       <configuration>
          <verify-metadata>true</verify-metadata>
          <verify-signatures>false</verify-signatures>
          <key-servers>
             <key-server uri="https://pgp.key-server.io"/>
             <key-server uri="hkp://keys.openpgp.org"/>
          </key-servers>
       </configuration>
       <components/>
    </verification-metadata>
    """
            and:
            validateAgainstSchemasSince("1.3")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. fastapi/openapi/models.py

        callbacks: Optional[Dict[str, Union[Dict[str, "PathItem"], Reference]]] = None
        deprecated: Optional[bool] = None
        security: Optional[List[Dict[str, List[str]]]] = None
        servers: Optional[List[Server]] = None
    
    
    class PathItem(BaseModelWithConfig):
        ref: Optional[str] = Field(default=None, alias="$ref")
        summary: Optional[str] = None
        description: Optional[str] = None
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top