Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 298 for sw_vers (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/net/dnsclient_unix.go

    func (r *Resolver) tryOneName(ctx context.Context, cfg *dnsConfig, name string, qtype dnsmessage.Type) (dnsmessage.Parser, string, error) {
    	var lastErr error
    	serverOffset := cfg.serverOffset()
    	sLen := uint32(len(cfg.servers))
    
    	n, err := dnsmessage.NewName(name)
    	if err != nil {
    		return dnsmessage.Parser{}, "", &DNSError{Err: errCannotMarshalDNSMessage.Error(), Name: name}
    	}
    	q := dnsmessage.Question{
    		Name:  n,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/RouteFailureTest.kt

        val socketAddress = InetSocketAddress.createUnresolved("myproxy", 8008)
        proxySelector.proxies.add(Proxy(Proxy.Type.HTTP, socketAddress))
    
        // Define two host names for the DNS routing of fake proxy servers
        val proxyServer1 = InetAddress.getByAddress("proxyServer1", byteArrayOf(127, 0, 0, 2))
        val proxyServer2 = InetAddress.getByAddress("proxyServer2", byteArrayOf(127, 0, 0, 3))
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue May 14 17:48:07 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java

        }
    
        public Mirror getMirror(ArtifactRepository repository, List<Mirror> mirrors) {
            return null;
        }
    
        public void injectAuthentication(List<ArtifactRepository> repositories, List<Server> servers) {}
    
        public void injectMirror(List<ArtifactRepository> repositories, List<Mirror> mirrors) {}
    
        public void injectProxy(List<ArtifactRepository> repositories, List<Proxy> proxies) {}
    
        public void publish(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. cmd/admin-router.go

    		// Update all MinIO servers type=2
    		adminRouter.Methods(http.MethodPost).Path(adminVersion+"/update").HandlerFunc(adminMiddleware(adminAPI.ServerUpdateV2Handler, traceAllFlag)).Queries("updateURL", "{updateURL:.*}", "type", "2")
    
    		// Deprecated: Update MinIO servers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top