Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 497 for sw_vers (0.14 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/resource/metadata/ExternalResourceMetaData.java

         */
        @Nullable
        String getEtag();
    
        /**
         * The advertised sha-1 of the external resource.
         *
         * This should only be collected if it is very cheap to do so. For example, some HTTP servers send an
         * “X-Checksum-Sha1” that makes the sha1 available cheaply. In this case it makes sense to advertise this as metadata here.
         *
         * @return The sha1, or null if it's unknown.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/reference-policy-service.yaml.golden

        internal.istio.io/parents: Gateway/gateway/simple.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-simple
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*.domain.example'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/net/smtp/smtp.go

    	c.ext = nil
    	_, _, err := c.cmd(250, "HELO %s", c.localName)
    	return err
    }
    
    // ehlo sends the EHLO (extended hello) greeting to the server. It
    // should be the preferred greeting for servers that support it.
    func (c *Client) ehlo() error {
    	_, msg, err := c.cmd(250, "EHLO %s", c.localName)
    	if err != nil {
    		return err
    	}
    	ext := make(map[string]string)
    	extList := strings.Split(msg, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/context.go

    func (gc GatewayContext) ResolveGatewayInstances(
    	namespace string,
    	gwsvcs []string,
    	servers []*networking.Server,
    ) (internal, internalIP, external, pending, warns []string, allUsable bool) {
    	ports := map[int]struct{}{}
    	for _, s := range servers {
    		ports[int(s.Port.Number)] = struct{}{}
    	}
    	foundInternal := sets.New[string]()
    	foundInternalIP := sets.New[string]()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 18:33:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/ConnectionSpec.kt

     * selection to the underlying SSL socket.
     *
     * The configuration of each spec changes with each OkHttp release. This is annoying: upgrading
     * your OkHttp library can break connectivity to certain web servers! But it’s a necessary annoyance
     * because the TLS ecosystem is dynamic and staying up to date is necessary to stay secure. See
     * [OkHttp's TLS Configuration History][tls_history] to track these changes.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/version.go

    // available version information from release servers based on
    // label names, like "stable" or "latest".
    //
    // If argument is already semantic version string, it
    // will return same string.
    //
    // In case of labels, it tries to fetch from release
    // servers and then return actual semantic version.
    //
    // Available names on release servers:
    //
    //	stable      (latest stable release)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/overview/about_manual.adoc

    <<jenkins.adoc#build_jenkins,Gradle on CI>> :: Gradle integration with popular continuous integration (CI) servers.
    
    [[reference]]
    == Reference
    
    . Gradle's API link:{javadocPath}/index.html[Javadocs^]
    . Gradle's link:{groovyDslPath}/index.html[Groovy DSL^]
    . Gradle's link:{kotlinDslPath}/index.html[Kotlin DSL^]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 07:52:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. docs/de/docs/advanced/behind-a-proxy.md

    ```JSON hl_lines="4-8"
    {
        "openapi": "3.1.0",
        // Hier mehr Einstellungen
        "servers": [
            {
                "url": "/api/v1"
            }
        ],
        "paths": {
                // Hier mehr Einstellungen
        }
    }
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:07 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/grpc.yaml.golden

        internal.istio.io/parents: Gateway/gateway/default.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*.domain.example'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_wrapper_basics.adoc

    - Standardizes a project on a given Gradle version.
    - Provisions the same Gradle version for different users.
    - Provisions the Gradle version for different execution environments (IDEs, CI servers...).
    
    [[sec:using_the_wrapper]]
    == Using the Gradle Wrapper
    
    It is always recommended to execute a build with the Wrapper to ensure a reliable, controlled, and standardized execution of the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top