Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,343 for default_ (0.15 sec)

  1. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"revisionHistoryLimit": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
    }
    
    func (DaemonSetSpec) SwaggerDoc() map[string]string {
    	return map_DaemonSetSpec
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// Optional: RadosPool is the rados pool name,default is rbd
    	// +optional
    	RBDPool string
    	// Optional: RBDUser is the rados user name, default is admin
    	// +optional
    	RadosUser string
    	// Optional: Keyring is the path to key ring for RBDUser, default is /etc/ceph/keyring
    	// +optional
    	Keyring string
    	// Optional: SecretRef is name of the authentication secret for RBDUser, default is nil.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/defaults_test.go

    		template := rc.Spec.Template
    		defaults := detectDefaults(t, rc, reflect.ValueOf(template))
    		if !reflect.DeepEqual(expectedDefaults, defaults) {
    			t.Errorf("Defaults for PodTemplateSpec changed. This can cause spurious rollouts of workloads on API server upgrade.")
    			t.Logf(cmp.Diff(expectedDefaults, defaults))
    		}
    	})
    	t.Run("hostnet PodTemplateSpec with ports", func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. doc/next/6-stdlib/99-minor/os/61893.md

    and reparse points that are not symlinks, Unix sockets, or dedup files
    now always have [ModeIrregular] set.
    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 386 bytes
    - Viewed (0)
  5. tests/integration/base.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      meshConfig:
        # Disable retries. This avoids confusing logs and errors, and allows finer grain control for tests
        defaultHttpRetryPolicy: {}
        accessLogFile: "/dev/stdout"
        defaultConfig:
          proxyMetadata:
            ISTIO_META_DNS_CAPTURE: "true"
      values:
        pilot:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/api__v1_openapi.json

              "resourceName": {
                "default": "",
                "description": "Name of the resource to which this resource resize policy applies. Supported values: cpu, memory.",
                "type": "string"
              },
              "restartPolicy": {
                "default": "",
                "description": "Restart policy to apply when specified resource is resized. If not specified, it defaults to NotRequired.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/Repository.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.test.fixtures
    
    public interface Repository {
        URI getUri()
    
        /**
         * Defaults version to '1.0'
         */
        Module module(String group, String module)
    
        Module module(String group, String module, String version)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 860 bytes
    - Viewed (1)
  8. docs/en/docs/tutorial/response-model.md

    * `tax: float = 10.5` has a default of `10.5`.
    * `tags: List[str] = []` has a default of an empty list: `[]`.
    
    but you might want to omit them from the result if they were not actually stored.
    
    For example, if you have models with many optional attributes in a NoSQL database, but you don't want to send very long JSON responses full of default values.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/configuration/DaemonParametersTest.groovy

        }
    
        def "configuring jvmargs replaces the defaults"() {
            when:
            parameters.setJvmArgs(["-Xmx17m"])
    
            then:
            parameters.effectiveJvmArgs.intersect(parameters.DEFAULT_JVM_ARGS).empty
        }
    
        def "does not apply defaults when jvmargs already specified"() {
            when:
            parameters.setJvmArgs(["-Xmx17m"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/types.go

    	Marshal() ([]byte, error)
    
    	// Unmarshal loads the config from a document map. No config in the document map is no error.
    	Unmarshal(docmap DocumentMap) error
    
    	// Default patches the component config with kubeadm preferred defaults
    	Default(cfg *ClusterConfiguration, localAPIEndpoint *APIEndpoint, nodeRegOpts *NodeRegistrationOptions)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top