Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for myHost (0.23 sec)

  1. staging/src/k8s.io/api/apps/v1/types.go

    	// new ReplicaSet can be scaled up further, ensuring that total number of pods running
    	// at any time during the update is at most 130% of desired pods.
    	// +optional
    	MaxSurge *intstr.IntOrString `json:"maxSurge,omitempty" protobuf:"bytes,2,opt,name=maxSurge"`
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    type DeploymentStatus struct {
    	// The generation observed by the deployment controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	// connection. The first one is used to encrypt new tickets and
    	// all are tried to decrypt tickets.
    	ticketKeys []ticketKey
    
    	// clientFinishedIsFirst is true if the client sent the first Finished
    	// message during the most recent handshake. This is recorded because
    	// the first transmitted Finished message is the tls-unique
    	// channel-binding value.
    	clientFinishedIsFirst bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    	// modRoot maps each module in versions to its absolute filesystem path.
    	modRoot map[module.Version]string
    
    	// pathPrefix is the path prefix for packages in the module, without a trailing
    	// slash. For most modules, pathPrefix is just version.Path, but the
    	// standard-library module "std" has an empty prefix.
    	pathPrefix map[module.Version]string
    
    	// inGorootSrc caches whether modRoot is within GOROOT/src.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

            "float constant tensor">;
    
    def ExtractSingleElementAsFloat : NativeCodeCall<
        "ExtractSingleElementAsFloat($_self.cast<ElementsAttr>())">;
    
    // Checks if the value has rank at most 'n'.
    class HasRankAtMost<int n> : Constraint<
        CPred<"$0.getType().cast<ShapedType>().hasRank() && "
              "$0.getType().cast<ShapedType>().getRank() <= " # n>>;
    
    // Checks if the value has rank 'n'.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    // allocations happen in real time but frees are delayed until the garbage
    // collector performs sweeping, the profile only accounts for allocations
    // that have had a chance to be freed by the garbage collector.
    //
    // Most clients should use the runtime/pprof package or
    // the testing package's -test.memprofile flag instead
    // of calling MemProfile directly.
    func MemProfile(p []MemProfileRecord, inuseZero bool) (n int, ok bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    It provides some conventional values for those properties.
    
    The following example demonstrates this; you can learn more about the conventions in the <<#sec:archive_naming,archive naming>> section.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    // during memory allocation) further ensures that chunks it identifies as "dense" are
    // immediately eligible for being backed by huge pages. Note that for the most part these
    // density heuristics are best-effort heuristics. It's totally possible (but unlikely)
    // that a chunk that just became dense is scavenged in the case of a race between memory
    // allocation and scavenging.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	for _, cInfo := range containersToUpdate {
    		container := pod.Spec.Containers[cInfo.apiContainerIdx].DeepCopy()
    		// If updating memory limit, use most recently configured CPU request and limit values.
    		// If updating CPU request and limit, use most recently configured memory request and limit values.
    		switch resourceName {
    		case v1.ResourceMemory:
    			container.Resources.Limits = v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. src/time/time.go

    // through use of the UTC or Local method, and that the monotonic clock reading
    // has been stripped by setting t = t.Round(0). In general, prefer t.Equal(u)
    // to t == u, since t.Equal uses the most accurate comparison available and
    // correctly handles the case when only one of its arguments has a monotonic
    // clock reading.
    type Time struct {
    	// wall and ext encode the wall time seconds, wall time nanoseconds,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

         *
         * The result of this method is stored in the 'ancestorsStrictVersionConstraints' field for consumption by downstream nodes.
         *
         * Since the most common case it that there is only one incoming edge, this case is handled first and, if possible,
         * the method returns early.
         */
        private void collectAncestorsStrictVersions(List<EdgeState> incomingEdges) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
Back to top