Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,243 for behaviors (0.14 sec)

  1. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		//
    		// TODO(#58225): This special case probably should not be needed.
    		// runtime/cgo is a very low-level package, and should not provide
    		// high-level behaviors like changing the current working directory at init.
    		cc = append(cc, "-framework", "CoreFoundation")
    	}
    	libbase := GOOS + "_" + GOARCH
    	if runtime.Compiler == "gccgo" {
    		libbase = "gccgo_" + libgodir + "_fPIC"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    Property 'outputFile' is not annotated with an input or output annotation. This behavior is scheduled to be removed in Gradle 7.0.
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  3. 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)
  4. releasenotes/notes/helm-configurable-scaling-behavior.yaml

    # issue is a list of GitHub issues resolved in this note.
    issue:
      - 42634
    
    docs:
      - '[usage] https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/#configurable-scaling-behavior'
    
    releaseNotes:
    - |
      **Added** configurable scaling behavior for Istiod's HPA in helm chart 
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 20 17:08:18 UTC 2023
    - 394 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/net/http/server.go

    // .. segments or repeated slashes to an equivalent, cleaner URL.
    //
    // # Compatibility
    //
    // The pattern syntax and matching behavior of ServeMux changed significantly
    // in Go 1.22. To restore the old behavior, set the GODEBUG environment variable
    // to "httpmuxgo121=1". This setting is read once, at program startup; changes
    // during execution will be ignored.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                          description: "Filters define the filters that are applied to
                            requests that match this rule. \n The effects of ordering
                            of multiple behaviors are currently unspecified. This can
                            change in the future based on feedback during the alpha stage.
                            \n Conformance-levels at this level are defined based on the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  9. releasenotes/notes/external-name.yaml

    upgradeNotes:
      - title: "Upcoming `ExternalName` support changes"
        content: |
          Below describes *upcoming* changes to `ExternalName`.
          In this release, there is no behavioral changes by default.
          However, you can explicitly opt-in to the new behavior early if desired, and prepare your environments for the upcoming change.
          
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicMethodLookupIntegrationTest.groovy

    assert contacts("a") == "a"
    """
    
            expect:
            succeeds()
        }
    
        // Documents actual behaviour for backwards compatibility, not necessarily desired behaviour
        @Requires(
            value = IntegTestPreconditions.NotIsolatedProjects,
            reason = "Exercises IP incompatible behavior: Groovy method inheritance"
        )
        def "inherited convention method is preferred over property with closure value"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top