Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 151 for stabilize (0.11 sec)

  1. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-multiplatform-js-jvm-example/gradle.properties

    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    kotlin.code.style=official
    kotlin.js.generate.executable.default=false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 704 bytes
    - Viewed (0)
  2. hack/update-generated-stable-metrics.sh

    # by default.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/test/instrumentation/stability-utils.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 05 18:48:48 UTC 2021
    - 962 bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/http/httpguts/guts.go

    // Package httpguts provides functions implementing various details
    // of the HTTP specification.
    //
    // This package is shared by the standard library (which vendors it)
    // and x/net/http2. It comes with no API stability promise.
    package httpguts
    
    import (
    	"net/textproto"
    	"strings"
    )
    
    // ValidTrailerHeader reports whether name is a valid header field name to appear
    // in trailers.
    // See RFC 7230, Section 4.1.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/files/profile-preview.yaml

    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The preview profile contains features that are experimental.
    # This is intended to explore new features coming to Istio.
    # Stability, security, and performance are not guaranteed - use at your own risk.
    meshConfig:
      defaultConfig:
        proxyMetadata:
          # Enable Istio agent to handle DNS requests for known hosts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 670 bytes
    - Viewed (0)
  5. manifests/charts/base/files/profile-preview.yaml

    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The preview profile contains features that are experimental.
    # This is intended to explore new features coming to Istio.
    # Stability, security, and performance are not guaranteed - use at your own risk.
    meshConfig:
      defaultConfig:
        proxyMetadata:
          # Enable Istio agent to handle DNS requests for known hosts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 670 bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package eviction is responsible for enforcing eviction thresholds to maintain
    // node stability.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 739 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/resourceconfig/helpers_test.go

    				apiv1.SchemeGroupVersion.WithResource("pods"):                       true,
    			},
    			err: false, // no error for backwards compatibility
    		},
    		{
    			name: "user-explicit-disable-resource-over-user-stability-enable",
    			runtimeConfig: map[string]string{
    				"api/ga":              "true",
    				"apps/v1/deployments": "false",
    			},
    			defaultResourceConfig: func() *serverstore.ResourceConfig {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_macros.h

    // the datatype for boolean tensors.
    #ifndef TF_Bool
    #define TF_Bool unsigned char
    #endif  // TF_Bool
    
    // Macro used to calculate struct size for maintaining ABI stability across
    // different struct implementations.
    #ifndef TF_OFFSET_OF_END
    #define TF_OFFSET_OF_END(TYPE, MEMBER) \
      (offsetof(TYPE, MEMBER) + sizeof(((TYPE *)0)->MEMBER))
    #endif  // TF_OFFSET_OF_END
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat May 13 04:44:45 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. pkg/util/oom/oom_linux_test.go

    // Converts a sequence of PID lists into a PID lister.
    // The PID lister returns pidListSequence[i] on the ith call. If i >= length of pidListSequence
    // then return the last element of pidListSequence (the sequence is considered to have) stabilized.
    func sequenceToPidLister(pidListSequence [][]int) func(string) ([]int, error) {
    	var numCalls int
    	return func(cgroupName string) ([]int, error) {
    		numCalls++
    		if len(pidListSequence) == 0 {
    			return []int{}, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/index.md

    To **deploy** an application means to perform the necessary steps to make it **available to the users**.
    
    For a **web API**, it normally involves putting it in a **remote machine**, with a **server program** that provides good performance, stability, etc, so that your **users** can **access** the application efficiently and without interruptions or problems.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top