Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 179 for sw_vers (0.49 sec)

  1. internal/kms/kms.go

    	latency                []atomic.Uint64
    }
    
    // Version returns version information about the KMS.
    //
    // TODO(aead): refactor this API call since it does not account
    // for multiple KMS/KES servers.
    func (k *KMS) Version(ctx context.Context) (string, error) {
    	return k.conn.Version(ctx)
    }
    
    // APIs returns a list of KMS server APIs.
    //
    // TODO(aead): remove this API since it's hardly useful.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. cmd/testdata/xl-meta-merge.zip

    `mc`](#test-using-minio-client-mc) for more information on using the `mc` commandline tool. For application developers, see <https://min.io/docs/minio/linux/developers/minio-drivers.html> to view MinIO SDKs for supported languages. > NOTE: Standalone MinIO servers are best suited for early development and evaluation. Certain features such as versioning, object locking, and bucket replication require distributed deploying MinIO with Erasure Coding. For extended development and production, deploy MinIO with Erasure...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Hashing.java

       *       {@code consistentHash} will handle it. If, however, you are dividing traffic among
       *       servers {@code alpha}, {@code bravo}, and {@code charlie} and you occasionally need to
       *       take each of the servers offline, {@code consistentHash} will be a poor fit: It provides
       *       no way for you to specify which of the three buckets is disappearing. Thus, if your
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// Top-level and per-version schemas are mutually exclusive.
    	// Per-version schemas must not all be set to identical values (top-level validation schema should be used instead)
    	// This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature.
    	// +optional
    	Schema *CustomResourceValidation
    	// Subresources describes the subresources for CustomResource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. pkg/spiffe/spiffe_test.go

    	w.Write(h.body)
    }
    
    func TestRetrieveSpiffeBundleRootCerts(t *testing.T) {
    	// Create a fake handler whose response can be overridden for each test case.
    	h := &handler{}
    
    	// Create servers that will act as SPIFFE bundle endpoints.
    	s1 := httptest.NewTLSServer(h)
    	s2 := httptest.NewTLSServer(h)
    
    	// The system needs to trust these server certs to securely connect to
    	// the SPIFFE bundle endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. docs/de/docs/deployment/https.md

        * Damit das funktioniert, muss eine **einzelne** Komponente (Programm), die auf dem Server ausgeführt wird und welche die **öffentliche IP-Adresse** überwacht, **alle HTTPS-Zertifikate** des Servers haben.
    * **Nachdem** eine sichere Verbindung hergestellt wurde, ist das Kommunikationsprotokoll **immer noch HTTP**.
        * Die Inhalte sind **verschlüsselt**, auch wenn sie mit dem **HTTP-Protokoll** gesendet werden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/run.go

    				"-j", constants.REDIRECT,
    				"--to-ports", constants.IstioAgentDNSListenerPort)
    		} else {
    			for _, s := range cfg.cfg.DNSServersV4 {
    				// redirect all TCP dns traffic on port 53 to the agent on port 15053 for all servers
    				// in etc/resolv.conf
    				// We avoid redirecting all IP ranges to avoid infinite loops when there are local DNS proxies
    				// such as: app -> istio dns server -> dnsmasq -> upstream
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. src/cmd/internal/dwarf/dwarf.go

    	vers := string(bytes.Split(out, []byte("("))[0])
    	subvers := strings.Split(vers, ".")
    	if len(subvers) != 3 {
    		return false, fmt.Errorf("cannot parse %s -Wl,-V (%s): %v\n", extld, out, err)
    	}
    	if v, err := strconv.Atoi(subvers[0]); err != nil || v < 7 {
    		return false, nil
    	} else if v > 7 {
    		return true, nil
    	}
    	if v, err := strconv.Atoi(subvers[1]); err != nil || v < 2 {
    		return false, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    - Provisioning the Gradle version for different users is done with a simple Wrapper definition change.
    - Provisioning the Gradle version for different execution environments (e.g., IDEs or Continuous Integration servers) is done with a simple Wrapper definition change.
    
    There are three ways to use the Wrapper:
    
    1. You set up a new Gradle project and <<#sec:adding_wrapper,add the Wrapper>> to it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/generated.proto

      optional bool allowVolumeExpansion = 6;
    
      // volumeBindingMode indicates how PersistentVolumeClaims should be
      // provisioned and bound.  When unset, VolumeBindingImmediate is used.
      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
      optional string volumeBindingMode = 7;
    
      // allowedTopologies restrict the node topologies where volumes can be dynamically provisioned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top