Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 219 for sw_vers (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/storage/v1beta1/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
    - 25K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    		"the authorities in the client-ca-file is authenticated with an identity "+
    		"corresponding to the CommonName of the client certificate.")
    }
    
    // DelegatingAuthenticationOptions provides an easy way for composing API servers to delegate their authentication to
    // the root kube API server.  The API federator will act as
    // a front proxy and direction connections will be able to delegate to the core kube API server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  9. src/net/conf.go

    // There are two main approaches, go and cgo.
    // The cgo resolver uses C functions like getaddrinfo.
    // The go resolver reads system files directly and
    // sends DNS packets directly to servers.
    //
    // The netgo build tag prefers the go resolver.
    // The netcgo build tag prefers the cgo resolver.
    //
    // The netgo build tag also prohibits the use of the cgo tool.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/DefaultCacheAwareExternalResourceAccessor.java

                ExternalResourceReadResult<HashCode> result = resource.withContentIfPresent(inputStream -> {
                    String sha = IOUtils.toString(inputStream, StandardCharsets.US_ASCII);
                    // Servers may return SHA-1 with leading zeros stripped
                    sha = StringUtils.leftPad(sha, Hashing.sha1().getHexDigits(), '0');
                    return HashCode.fromString(sha);
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top