Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for deploymentID (0.18 sec)

  1. .bazelrc

    build:android_x86_64 --config=android
    build:android_x86_64 --cpu=x86_64
    build:android_x86_64 --fat_apk_cpu=x86_64
    
    # Build everything statically for Android since all static libs are later
    # bundled together into a single .so for deployment.
    build:android --dynamic_mode=off
    
    # Sets the default Apple platform to macOS.
    build:macos --apple_platform_type=macos
    
    # gRPC on MacOS requires this #define
    build:macos --copt=-DGRPC_BAZEL_BUILD
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal.go

    	replicaChange int32 // absolute value, non-negative
    	timestamp     time.Time
    	outdated      bool
    }
    
    // HorizontalController is responsible for the synchronizing HPA objects stored
    // in the system with the actual deployments/replication controllers they
    // control.
    type HorizontalController struct {
    	scaleNamespacer scaleclient.ScalesGetter
    	hpaNamespacer   autoscalingclient.HorizontalPodAutoscalersGetter
    	mapper          apimeta.RESTMapper
    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. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			expectedResourceTransformers: map[string]string{
    				"configmaps":       "k8s:enc:kms:v1:kms:",
    				"secrets":          "k8s:enc:kms:v1:another-kms:",
    				"events":           "k8s:enc:kms:v1:fancy:",
    				"deployments.apps": "k8s:enc:kms:v1:kms:",
    				"pods":             "k8s:enc:kms:v1:fancy:",
    				"pandas":           "k8s:enc:kms:v1:fancy:",
    				"pandas.bears":     "k8s:enc:kms:v1:yet-another-provider:",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    		// to verify for legacy version.
    		if formatLegacy {
    			// We only need this code if we are moving
    			// from `xl.json` to `xl.meta`, we can avoid
    			// one extra readdir operation here for all
    			// new deployments.
    			entries, err := readDir(currentDataPath)
    			if err != nil && err != errFileNotFound {
    				return res, osErrToFileErr(err)
    			}
    			for _, entry := range entries {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top