Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,561 for okdown (0.23 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdmethods/doc.go

    // license that can be found in the LICENSE file.
    
    // Package stdmethods defines an Analyzer that checks for misspellings
    // in the signatures of methods similar to well-known interfaces.
    //
    // # Analyzer stdmethods
    //
    // stdmethods: check signature of methods of well-known interfaces
    //
    // Sometimes a type may be intended to satisfy an interface but may fail to
    // do so because of a mistake in its method signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. docs/contribute/code_of_conduct.md

       questions. Those who are asked should be responsive and helpful.
    
     * **Step down considerately**: Members of every project come and go. When somebody leaves or
       disengages from the project, they should make it known and take the proper steps to ensure that
       others can pick up where they left off.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

            0 * known._
            0 * configure._
            0 * finalized._
    
            when:
            container.realizeNow()
    
            then:
            1 * known.execute(binary1)
            1 * known.execute(binary2)
            0 * known._
            0 * configure._
            0 * finalized._
    
            then:
            1 * configure.execute(binary1)
            1 * configure.execute(binary2)
            0 * known._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. src/net/http/servemux121.go

    		return RedirectHandler(u.String(), StatusMovedPermanently), pattern
    	}
    
    	return mux.handler(host, r.URL.Path)
    }
    
    // handler is the main implementation of findHandler.
    // The path is known to be in canonical form, except for CONNECT methods.
    func (mux *serveMux121) handler(host, path string) (h Handler, pattern string) {
    	mux.mu.RLock()
    	defer mux.mu.RUnlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. pkg/security/security.go

    	// If present, FileMountedCerts should be true.
    
    	// DefaultCertChainFilePath is the well-known path for an existing certificate chain file
    	DefaultCertChainFilePath = "./etc/certs/cert-chain.pem"
    
    	// DefaultKeyFilePath is the well-known path for an existing key file
    	DefaultKeyFilePath = "./etc/certs/key.pem"
    
    	// DefaultRootCertFilePath is the well-known path for an existing root certificate file
    	DefaultRootCertFilePath = "./etc/certs/root-cert.pem"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/componentconfigs/configset.go

    	return h.fromCluster(h, clientset, clusterCfg)
    }
    
    // known holds the known component config handlers. Add new component configs here.
    var known = []*handler{
    	&kubeProxyHandler,
    	&kubeletHandler,
    }
    
    // configBase is the base type for all component config implementations
    type configBase struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. pkg/kube/kclient/crdwatcher.go

    	if c.KnownOrCallback(s, func(stop <-chan struct{}) {
    		close(done)
    	}) {
    		// Already known
    		return true
    	}
    	select {
    	case <-stop:
    		return false
    	case <-done:
    		return true
    	}
    }
    
    // KnownOrCallback returns `true` immediately if the resource is known.
    // If it is not known, `false` is returned. If the resource is later added, the callback will be triggered.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/.well-known__openid-configuration_openapi.json

          }
        }
      },
      "info": {
        "title": "Kubernetes",
        "version": "unversioned"
      },
      "openapi": "3.0.0",
      "paths": {
        "/.well-known/openid-configuration/": {
          "get": {
            "description": "get service account issuer OpenID configuration, also known as the 'OIDC discovery doc'",
            "operationId": "getServiceAccountIssuerOpenIDConfiguration",
            "responses": {
              "200": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 00:49:56 UTC 2022
    - 987 bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/autoscaling/v2beta1";
    
    // ContainerResourceMetricSource indicates how to scale on a resource metric known to
    // Kubernetes, as specified in requests and limits, describing each pod in the
    // current scale target (e.g. CPU or memory).  The values will be averaged
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_list.txt

    go list -m -e -f '{{.Error.Err}}' nonexist rsc.io/quote/buggy
    stdout '^module nonexist: not a known dependency$'
    stdout '^module rsc.io/quote/buggy: not a known dependency$'
    
    ! go list -m nonexist rsc.io/quote/buggy
    stderr '^go: module nonexist: not a known dependency'
    stderr '^go: module rsc.io/quote/buggy: not a known dependency'
    
    # Module loader does not interfere with list -e (golang.org/issue/24149).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top