Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,179 for Defaults (0.23 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// If this field is unset kubeadm will default it to "IfNotPresent", or pull the required images if not present on the host.
    	// +optional
    	ImagePullPolicy corev1.PullPolicy `json:"imagePullPolicy,omitempty"`
    }
    
    // Networking contains elements describing cluster's networking configuration
    type Networking struct {
    	// ServiceSubnet is the subnet used by k8s services. Defaults to "10.96.0.0/12".
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

        /**
         * Sets the java home dir. Setting to null requests that the executer use the real default java home dir rather than the default used for testing.
         */
        GradleExecuter withJavaHome(String userHomeDir);
    
        /**
         * Sets the java home dir. Setting to null requests that the executer use the real default java home dir rather than the default used for testing.
         */
        GradleExecuter withJavaHome(File userHomeDir);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

     *     // implementation
     *   }
     * }
     * </pre>
     * <p>
     * The default generators are of the type {@link org.gradle.jvm.application.scripts.TemplateBasedScriptGenerator}, with default templates.
     * This templates can be changed via the {@link org.gradle.jvm.application.scripts.TemplateBasedScriptGenerator#setTemplate(org.gradle.api.resources.TextResource)} method.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/batch/v1/generated.proto

      // not apply to already started executions.  Defaults to false.
      // +optional
      optional bool suspend = 4;
    
      // Specifies the job that will be created when executing a CronJob.
      optional JobTemplateSpec jobTemplate = 5;
    
      // The number of successful finished jobs to retain. Value must be non-negative integer.
      // Defaults to 3.
      // +optional
      optional int32 successfulJobsHistoryLimit = 6;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// When set to true, API requests to this version receive a warning header in the server response.
    	// Defaults to false.
    	Deprecated bool
    	// deprecationWarning overrides the default warning returned to API clients.
    	// May only be set when `deprecated` is true.
    	// The default warning indicates this version is deprecated and recommends use
    	// of the newest served version of equal or greater stability, if one exists.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. cluster/common.sh

      echo "Cleared config for ${CONTEXT} from ${KUBECONFIG}"
    }
    
    # Gets username, password for the current-context in kubeconfig, if they exist.
    # Assumed vars:
    #   KUBECONFIG  # if unset, defaults to global
    #   KUBE_CONTEXT  # if unset, defaults to current-context
    #
    # Vars set:
    #   KUBE_USER
    #   KUBE_PASSWORD
    #
    # KUBE_USER,KUBE_PASSWORD will be empty if no current-context is set, or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CallHandshakeTest.kt

        val client = makeClient()
        makeRequest(client)
    
        // As of OkHttp 5 we now apply the ordering from the OkHttpClient, which defaults to MODERN_TLS
        // Clients might need a changed order, but can at least define a preferred order to override that default.
        val socketOrderedByDefaults =
          handshakeEnabledCipherSuites.sortedBy { ConnectionSpec.MODERN_TLS.cipherSuitesAsString!!.indexOf(it) }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. pkg/apis/apps/types.go

    	// This is helpful in being able to do a canary based deployment. The default value is 0.
    	Partition int32
    	// The maximum number of pods that can be unavailable during the update.
    	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    	// Absolute number is calculated from percentage by rounding up. This can not be 0.
    	// Defaults to 1. This field is alpha-level and is only honored by servers that enable the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelIntegrationTest.groovy

            buildFile << """
    class Rules extends RuleSource {
        @Defaults
        void verifyAsContainer(ComponentSpecContainer c) {
            assert c.toString() == "ComponentSpecContainer 'components'"
            assert c.withType(CustomComponent).toString() == "ComponentSpecContainer 'components'"
            assert !(c.withType(CustomComponent) instanceof ComponentSpecContainer)
        }
    
        @Defaults
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            then:
            child3
            spec.children == [child1, child2, child3]
    
            where:
            notContainedChild << [null, Stub(CopySpecInternal)]
        }
    
        def 'properties accessed directly have defaults'() {
            expect:
            spec.caseSensitive
            spec.includeEmptyDirs
            spec.duplicatesStrategy == DuplicatesStrategy.INCLUDE
            spec.fileMode == null
            !spec.filePermissions.isPresent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
Back to top