Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for unse (0.17 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProperty.java

            setConvention(Providers.internal(provider).asSupplier(getValidationDisplayName(), type, sanitizer));
            return this;
        }
    
        @Override
        public Property<T> unset() {
            super.unset();
            return this;
        }
    
        @Override
        public Property<T> unsetConvention() {
            discardConvention();
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. pilot/pkg/features/tuning.go

    	PushThrottle = func() int {
    		v := env.Register(
    			"PILOT_PUSH_THROTTLE",
    			0,
    			"Limits the number of concurrent pushes allowed. On larger machines this can be increased for faster pushes. "+
    				"If set to 0 or unset, the max will be automatically determined based on the machine size",
    		).Get()
    		if v > 0 {
    			return v
    		}
    		procs := runtime.GOMAXPROCS(0)
    		// Heuristic to scale with cores. We end up with...
    		// 1: 20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. pkg/apis/extensions/v1beta1/defaults.go

    	// which has the same meaning as unset.
    	if obj.Spec.ProgressDeadlineSeconds == nil {
    		obj.Spec.ProgressDeadlineSeconds = new(int32)
    		*obj.Spec.ProgressDeadlineSeconds = math.MaxInt32
    	}
    	// Set extensionsv1beta1.DeploymentSpec.RevisionHistoryLimit to MaxInt32,
    	// which has the same meaning as unset.
    	if obj.Spec.RevisionHistoryLimit == nil {
    		obj.Spec.RevisionHistoryLimit = new(int32)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. cluster/kube-util.sh

    # limitations under the License.
    
    # This script will source the default skeleton helper functions, then sources
    # cluster/${KUBERNETES_PROVIDER}/util.sh where KUBERNETES_PROVIDER, if unset,
    # will use its default value (gce).
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    source "${KUBE_ROOT}/cluster/skeleton/util.sh"
    
    if [[ -n "${KUBERNETES_CONFORMANCE_TEST:-}" ]]; then
        KUBERNETES_PROVIDER=""
    else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 21 19:52:51 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/api__v1_openapi.json

              },...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/templates/zzz_profile.yaml

    We can then merge the profile onto the defaults, then the user settings onto that.
    Finally, we can set all of that under .Values so the chart behaves without awareness.
    */}}
    {{- $defaults := $.Values.defaults }}
    {{- $_ := unset $.Values "defaults" }}
    {{- $profile := dict }}
    {{- with .Values.profile }}
    {{- with $.Files.Get (printf "files/profile-%s.yaml" .)}}
    {{- $profile = (. | fromYaml) }}
    {{- else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/zzz_profile.yaml

    We can then merge the profile onto the defaults, then the user settings onto that.
    Finally, we can set all of that under .Values so the chart behaves without awareness.
    */}}
    {{- $defaults := $.Values.defaults }}
    {{- $_ := unset $.Values "defaults" }}
    {{- $profile := dict }}
    {{- with .Values.profile }}
    {{- with $.Files.Get (printf "files/profile-%s.yaml" .)}}
    {{- $profile = (. | fromYaml) }}
    {{- else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. manifests/charts/ztunnel/templates/zzz_profile.yaml

    We can then merge the profile onto the defaults, then the user settings onto that.
    Finally, we can set all of that under .Values so the chart behaves without awareness.
    */}}
    {{- $defaults := $.Values.defaults }}
    {{- $_ := unset $.Values "defaults" }}
    {{- $profile := dict }}
    {{- with .Values.profile }}
    {{- with $.Files.Get (printf "files/profile-%s.yaml" .)}}
    {{- $profile = (. | fromYaml) }}
    {{- else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. manifests/charts/istio-cni/templates/zzz_profile.yaml

    We can then merge the profile onto the defaults, then the user settings onto that.
    Finally, we can set all of that under .Values so the chart behaves without awareness.
    */}}
    {{- $defaults := $.Values.defaults }}
    {{- $_ := unset $.Values "defaults" }}
    {{- $profile := dict }}
    {{- with .Values.profile }}
    {{- with $.Files.Get (printf "files/profile-%s.yaml" .)}}
    {{- $profile = (. | fromYaml) }}
    {{- else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time.go

    		return err
    	}
    
    	t.Time = pt.Local()
    	return nil
    }
    
    // MarshalJSON implements the json.Marshaler interface.
    func (t MicroTime) MarshalJSON() ([]byte, error) {
    	if t.IsZero() {
    		// Encode unset/nil objects as JSON's "null".
    		return []byte("null"), nil
    	}
    
    	return json.Marshal(t.UTC().Format(RFC3339Micro))
    }
    
    func (t MicroTime) MarshalCBOR() ([]byte, error) {
    	if t.IsZero() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top