Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 154 for behaviors (0.15 sec)

  1. src/go/build/build.go

    	// to read directories and files. To read from other sources,
    	// callers can set the following functions. They all have default
    	// behaviors that use the local file system, so clients need only set
    	// the functions whose behaviors they wish to change.
    
    	// JoinPath joins the sequence of path fragments into a single path.
    	// If JoinPath is nil, Import uses filepath.Join.
    	JoinPath func(elem ...string) string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal.go

    func (a *HorizontalController) maybeInitScaleDownStabilizationWindow(hpa *autoscalingv2.HorizontalPodAutoscaler) {
    	behavior := hpa.Spec.Behavior
    	if behavior != nil && behavior.ScaleDown != nil && behavior.ScaleDown.StabilizationWindowSeconds == nil {
    		stabilizationWindowSeconds := (int32)(a.downscaleStabilisationWindow.Seconds())
    		hpa.Spec.Behavior.ScaleDown.StabilizationWindowSeconds = &stabilizationWindowSeconds
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    				// package with the same path as the main module, found in a module
    				// with a prefix of the main module's path”.
    				//
    				// However, neither of those behaviors would be consistent with the
    				// plain meaning of the query. To try to reduce confusion, reject the
    				// query explicitly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    image::file-collection-vs-file-tree.png[]
    
    NOTE: Although `FileTree` extends `FileCollection` (an is-a relationship), their behaviors differ.
    In other words, you can use a file tree wherever a file collection is required, but remember that a file collection is a flat list/set of files, while a file tree is a file and directory hierarchy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/validation/validation_test.go

    				PeriodSeconds: 8,
    			}},
    		},
    	}}
    	for _, behavior := range successCases {
    		hpa := prepareHPAWithBehavior(behavior)
    		if errs := ValidateHorizontalPodAutoscaler(&hpa); len(errs) != 0 {
    			t.Errorf("expected success: %v", errs)
    		}
    	}
    	errorCases := []struct {
    		behavior autoscaling.HorizontalPodAutoscalerBehavior
    		msg      string
    	}{{
    		behavior: autoscaling.HorizontalPodAutoscalerBehavior{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Now, only `compileJava` is a task dependency of `listClassFiles`.
    
    If a task in your build relied on the previous behavior, you can instead use the entire
    `SourceSetOutput` as an input, which contains all classes and resources.
    
    If that is not feasible, you can restore the previous behavior by adding more task dependencies to `classesDirs`:
    ```groovy
    java {
        sourceSets {
            main {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    execute tests.
    This existing behavior can lead to test framework dependency version conflicts on the test
    classpath.
    To avoid these conflicts, this behavior is deprecated and will be removed in Gradle 9.0. Tests
    using TestNG are unaffected.
    
    In order to prepare for this change in behavior, either declare the required dependencies explicitly,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    This was confusing, because it was the only block that behaved that way.
    As part of the stabilization effort in Gradle 4.8, we are deprecating this behavior and asking all users to migrate their build.
    
    The new, stable behavior can be switched on by adding the following to your settings file:
    
    ====
    [.multi-language-sample]
    =====
    .settings.gradle
    [source, groovy]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

       * E} is an {@link Enum} type, use {@link EnumSet#noneOf} instead. Otherwise, strongly consider
       * using a {@code LinkedHashSet} instead, at the cost of increased memory footprint, to get
       * deterministic iteration behavior.
       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
       * use the {@code HashSet} constructor directly, taking advantage of <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// Specification of the desired behavior of the Deployment.
    	// +optional
    	Spec DeploymentSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
    
    	// Most recently observed status of the Deployment.
    	// +optional
    	Status DeploymentStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // DeploymentSpec is the specification of the desired behavior of the Deployment.
    type DeploymentSpec struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
Back to top