Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,449 for default_ (1.29 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    	if s.Assign != nil {
    		b.add(s.Assign)
    	}
    
    	done := b.newBlock(KindSwitchDone, s)
    	if label != nil {
    		label._break = done
    	}
    	var default_ *ast.CaseClause
    	for _, clause := range s.Body.List {
    		cc := clause.(*ast.CaseClause)
    		if cc.List == nil {
    			default_ = cc
    			continue
    		}
    		body := b.newBlock(KindSwitchCaseBody, cc)
    		var next *Block
    		for _, casetype := range cc.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        }
    
        ValueHolder* const new_holder = new ValueHolder(default_);
        ThreadLocalValueHolderBase* const holder_base = new_holder;
        GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));
        return new_holder->pointer();
      }
    
      // A key pthreads uses for looking up per-thread values.
      const pthread_key_t key_;
      const T default_;  // The default value for each thread.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/config/v1alpha1/defaults.go

    // RecommendedDefaultPersistentVolumeBinderControllerConfiguration defaults a pointer to a
    // PersistentVolumeBinderControllerConfiguration struct. This will set the recommended default
    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    	DefaultAPIBindPort = 6443
    	// DefaultCertificatesDir defines default certificate directory
    	DefaultCertificatesDir = "/etc/kubernetes/pki"
    	// DefaultImageRepository defines default image registry
    	// (previously this defaulted to k8s.gcr.io)
    	DefaultImageRepository = "registry.k8s.io"
    	// DefaultManifestsDir defines default manifests directory
    	DefaultManifestsDir = "/etc/kubernetes/manifests"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/defaults.go

    				obj.Default[key] = value.DeepCopy()
    			}
    		}
    		// If a default limit is specified, but the default request is not, default request to limit
    		for key, value := range obj.Default {
    			if _, exists := obj.DefaultRequest[key]; !exists {
    				obj.DefaultRequest[key] = value.DeepCopy()
    			}
    		}
    		// If a default request is not specified, but the min is provided, default request to the min
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/config/v1alpha1/defaults.go

    )
    
    // RecommendedDefaultHPAControllerConfiguration defaults a pointer to a
    // HPAControllerConfiguration struct. This will set the recommended default
    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/testing/defaults/defaults.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package defaults
    
    import (
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    )
    
    // PluginsV1 is the set of default v1 plugins (before MultiPoint expansion)
    var PluginsV1 = &config.Plugins{
    	MultiPoint: config.PluginSet{
    		Enabled: []config.Plugin{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/crypto/tls/defaults.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package tls
    
    import (
    	"internal/godebug"
    	"slices"
    	_ "unsafe" // for linkname
    )
    
    // Defaults are collected in this file to allow distributions to more easily patch
    // them to apply local policies.
    
    var tlskyber = godebug.New("tlskyber")
    
    func defaultCurvePreferences() []CurveID {
    	if tlskyber.Value() == "0" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. manifests/charts/base/templates/default.yaml

    {{- if not (eq .Values.defaultRevision "") }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: ValidatingWebhookConfiguration
    metadata:
      name: istiod-default-validator
      labels:
        app: istiod
        release: {{ .Release.Name }}
        istio: istiod
        istio.io/rev: {{ .Values.defaultRevision | quote }}
    webhooks:
      - name: validation.istio.io
        clientConfig:
          {{- if .Values.base.validationURL }}
          url: {{ .Values.base.validationURL }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/default.yaml

    {{- if .Values.global.configCluster }}
    {{- if not (eq .Values.defaultRevision "") }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: ValidatingWebhookConfiguration
    metadata:
      name: istiod-default-validator
      labels:
        app: istiod
        release: {{ .Release.Name }}
        istio: istiod
        istio.io/rev: {{ .Values.defaultRevision | quote }}
    webhooks:
      - name: validation.istio.io
        clientConfig:
          {{- if .Values.base.validationURL }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top