Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,828 for okdown (0.11 sec)

  1. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2beta1/types.go

    	// will be averaged together before being compared to the target value.
    	PodsMetricSourceType MetricSourceType = "Pods"
    	// ResourceMetricSourceType is 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).  Such metrics are built in to
    	// Kubernetes, and have special scaling options on top of those available
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 26.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

    }  // namespace detail
    
    // An analysis that runs on a function and infers the control predecessors and
    // successors for each op, based on side effects on known and unknown resources.
    // Side-effecting ops on unknown resources are conservatively treated as
    // interfering with all known resource op accesses. It distinguishes accesses
    // based on whether they are read-only, and read-only ops do not interfere with
    // each other.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top