Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 791 for sw_vers (0.34 sec)

  1. buildscripts/checkdeps.sh

    		exit 1
    		;;
    	esac
    }
    
    assert_is_supported_os() {
    	case "${KNAME}" in
    	Linux | FreeBSD | OpenBSD | NetBSD | DragonFly | SunOS)
    		return
    		;;
    	Darwin)
    		osx_host_version=$(env sw_vers -productVersion)
    		if ! check_minimum_version "${OSX_VERSION}" "${osx_host_version}"; then
    			echo "OSX version '${osx_host_version}' is not supported. Minimum supported version: ${OSX_VERSION}"
    			exit 1
    		fi
    		return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/bug/bug.go

    }
    
    func printOSDetails(w io.Writer) {
    	switch runtime.GOOS {
    	case "darwin", "ios":
    		printCmdOut(w, "uname -v: ", "uname", "-v")
    		printCmdOut(w, "", "sw_vers")
    	case "linux":
    		printCmdOut(w, "uname -sr: ", "uname", "-sr")
    		printCmdOut(w, "", "lsb_release", "-a")
    		printGlibcVersion(w)
    	case "openbsd", "netbsd", "freebsd", "dragonfly":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/crypto/x509/verify_test.go

    	err := SystemRootsError{Err: err1}
    	if !errors.Is(err, err1) {
    		t.Error("errors.Is failed, wanted success")
    	}
    }
    
    func macosMajorVersion(t *testing.T) (int, error) {
    	cmd := testenv.Command(t, "sw_vers", "-productVersion")
    	out, err := cmd.Output()
    	if err != nil {
    		if ee, ok := err.(*exec.ExitError); ok && len(ee.Stderr) > 0 {
    			return 0, fmt.Errorf("%v: %v\n%s", cmd, err, ee.Stderr)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

      echo "  This may time out if there was some uncaught error during start up."
      echo
    
      # curl in mavericks is borked.
      secure=""
      if which sw_vers >& /dev/null; then
        if [[ $(sw_vers | grep ProductVersion | awk '{print $2}') = "10.9."* ]]; then
          secure="--insecure"
        fi
      fi
    
      local start_time
      local curl_out
      start_time=$(date +%s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. docs/distributed/SIZING.md

    # Erasure code sizing guide
    
    ## Toy Setups
    
    Capacity constrained environments, MinIO will work but not recommended for production.
    
    | servers | drives (per node) | stripe_size | parity chosen (default) | tolerance for reads (servers) | tolerance for writes (servers) |
    |--------:|------------------:|------------:|------------------------:|------------------------------:|-------------------------------:|
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecryptionRequest.java

        }
    
        @Override
        public List<Server> getServers() {
            if (servers == null) {
                servers = new ArrayList<>();
            }
    
            return servers;
        }
    
        @Override
        public DefaultSettingsDecryptionRequest setServers(List<Server> servers) {
            this.servers = servers;
    
            return this;
        }
    
        @Override
        public List<Proxy> getProxies() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    								continue
    							}
    
    							// Both servers are HTTPS servers. Make sure the port names are different so that RDS can pick out individual servers.
    							// We cannot have two servers with same port name because we need the port name to distinguish one HTTPS server from another.
    							// We cannot merge two HTTPS servers even if their TLS settings have same path to the keys, because we don't know if the contents
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/SettingsDecryptionRequest.java

     *
     */
    public interface SettingsDecryptionRequest {
    
        /**
         * Gets the servers whose passwords should be decrypted.
         *
         * @return The servers to decrypt, never {@code null}.
         */
        List<Server> getServers();
    
        /**
         * Sets the servers whose passwords should be decrypted.
         *
         * @param servers The servers to decrypt, may be {@code null}.
         * @return This request, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/storage/storage_factory_test.go

    	testCases := []struct {
    		resource schema.GroupResource
    		servers  []string
    	}{
    		{
    			resource: schema.GroupResource{Group: example.GroupName, Resource: "resource"},
    			servers:  []string{"http://127.0.0.1:10000"},
    		},
    		{
    			resource: schema.GroupResource{Group: example.GroupName, Resource: "resource"},
    			servers:  []string{"http://127.0.0.1:10000", "http://127.0.0.1:20000"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease_test.go

    		storage:   s,
    		destroyFn: func() {},
    		baseKey:   base,
    		leaseTime: 1 * time.Minute, // avoid the lease to timeout on tests
    	}}
    }
    
    func (f *peerEndpointLeaseReconciler) SetKeys(servers []serverInfo) error {
    	for _, server := range servers {
    		if err := f.UpdateLease(server.id, server.existingIP, server.ports); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    func TestPeerEndpointLeaseReconciler(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top