Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,348 for okdown (0.13 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/ProviderAssertions.groovy

            def producer = provider.producer
            assert !producer.known
            producer.visitProducerTasks { assert false }
            producer.visitContentProducerTasks { assert false }
        }
    
        void assertHasKnownProducer(ProviderInternal<?> provider) {
            def producer = provider.producer
            assert producer.known
            producer.visitProducerTasks { assert false }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/toolchain-filters/groovy/build.gradle

    // The bodies of the if statements are intentionally not indented to make the user guide page prettier.
    // tag::toolchain-known-vendor[]
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(11)
            vendor = JvmVendorSpec.ADOPTIUM
        }
    }
    // end::toolchain-known-vendor[]
    
    } else if (testToolchain == "matchingVendor") {
    // tag::toolchain-matching-vendor[]
    java {
        toolchain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1004 bytes
    - Viewed (0)
Back to top