Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 437 for decisions (0.13 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    	// provided, they are applied to the data by default. If no defaults or partial defaults are provided, the
    	// type of the into may be used to guide conversion decisions.
    	Decode(data []byte, defaults *schema.GroupVersionKind, into Object) (Object, *schema.GroupVersionKind, error)
    }
    
    // Serializer is the core interface for transforming objects into a serialized format and back.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func.go

    	// from another package is imported and inlined.
    	Dcl     []*Name
    	HaveDcl bool // whether we've loaded Dcl
    
    	// Function properties, encoded as a string (these are used for
    	// making inlining decisions). See cmd/compile/internal/inline/inlheur.
    	Properties string
    
    	// CanDelayResults reports whether it's safe for the inliner to delay
    	// initializing the result parameters until immediately before the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/concepts.md

    * Restarts
    * Replication (the number of processes running)
    * Memory
    * Previous steps before starting
    
    Understanding these ideas and how to apply them should give you the intuition necessary to take any decisions when configuring and tweaking your deployments. 🤓
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. pkg/apis/autoscaling/types.go

    	// +optional
    	Policies []HPAScalingPolicy
    }
    
    // HPAScalingPolicyType is the type of the policy which could be used while making scaling decisions.
    type HPAScalingPolicyType string
    
    const (
    	// PodsScalingPolicy is a policy used to specify a change in absolute number of pods.
    	PodsScalingPolicy HPAScalingPolicyType = "Pods"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  5. src/net/net.go

    The resolver decision can be overridden by setting the netdns value of the
    GODEBUG environment variable (see package runtime) to go or cgo, as in:
    
    	export GODEBUG=netdns=go    # force pure Go resolver
    	export GODEBUG=netdns=cgo   # force native resolver (cgo, win32)
    
    The decision can also be forced while building the Go source tree
    by setting the netgo or netcgo build tag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. docs/en/docs/alternatives.md

    But as TypeScript data is not preserved after compilation to JavaScript, it cannot rely on the types to define validation, serialization and documentation at the same time. Due to this and some design decisions, to get validation, serialization and automatic schema generation, it's needed to add decorators in many places. So, it becomes quite verbose.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status.go

    		// TODO(mtaufen): I decided not to move this setter for now, since all it does is send an event
    		// and record state back to the Kubelet runtime object. In the future, I'd like to isolate
    		// these side-effects by decoupling the decisions to send events and partial status recording
    		// from the Node setters.
    		kl.recordNodeSchedulableEvent,
    	)
    	return setters
    }
    
    // Validate given node IP belongs to the current host
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    	// +listType=atomic
    	Policies []HPAScalingPolicy `json:"policies,omitempty" protobuf:"bytes,2,rep,name=policies"`
    }
    
    // HPAScalingPolicyType is the type of the policy which could be used while making scaling decisions.
    type HPAScalingPolicyType string
    
    const (
    	// PodsScalingPolicy is a policy used to specify a change in absolute number of pods.
    	PodsScalingPolicy HPAScalingPolicyType = "Pods"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// +optional
    	Policies []HPAScalingPolicy `json:"policies,omitempty" listType:"atomic" protobuf:"bytes,2,rep,name=policies"`
    }
    
    // HPAScalingPolicyType is the type of the policy which could be used while making scaling decisions.
    type HPAScalingPolicyType string
    
    const (
    	// PodsScalingPolicy is a policy used to specify a change in absolute number of pods.
    	PodsScalingPolicy HPAScalingPolicyType = "Pods"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    This can be turned off by explicitly calling the `doNotEndorseStrictVersions` method.
    --
    
    [[sub:bom_import]]
    == Importing Maven BOMs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top