Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,003 for nodefault (0.17 sec)

  1. src/cmd/go/testdata/script/env_changed.txt

    env GOROOT=./a
    env GOTOOLCHAIN=local
    env GOSUMDB=nodefault
    env GOPROXY=nodefault
    env GO111MODULE=auto
    env CGO_CFLAGS=nodefault
    env CGO_CPPFLAGS=nodefault
    
    go env -changed
    # linux output like GOTOOLCHAIN='local'
    # windows output like GOTOOLCHAIN=local
    stdout 'GOTOOLCHAIN=''?local''?'
    stdout 'GOSUMDB=''?nodefault''?'
    stdout 'GOPROXY=''?nodefault''?'
    stdout 'GO111MODULE=''?auto''?'
    stdout 'CGO_CFLAGS=''?nodefault''?'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:49:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. pkg/kubelet/config/common_test.go

    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/apis/core/validation"
    	"k8s.io/kubernetes/pkg/securitycontext"
    	"k8s.io/utils/ptr"
    )
    
    func noDefault(*core.Pod) error { return nil }
    
    func TestDecodeSinglePod(t *testing.T) {
    	grace := int64(30)
    	enableServiceLinks := v1.DefaultEnableServiceLinks
    	pod := &v1.Pod{
    		TypeMeta: metav1.TypeMeta{
    			APIVersion: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. plugin/pkg/admission/storage/storageclass/setdefault/admission_test.go

    			Kind: "StorageClass",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "nondefault2",
    		},
    		Provisioner: "nondefault1",
    	}
    	// Class with empty default annotation (=non-default)
    	classWithEmptyDefault := &storagev1.StorageClass{
    		TypeMeta: metav1.TypeMeta{
    			Kind: "StorageClass",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "nondefault2",
    			Annotations: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 04:00:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/callables/KtPropertyAccessorsRenderer.kt

                            },
                        )
                    }
                }
            }
        }
    
        public object NO_DEFAULT : KaPropertyAccessorsRenderer {
            override fun renderAccessors(
                analysisSession: KaSession,
                symbol: KaPropertySymbol,
                declarationRenderer: KaDeclarationRenderer,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. plugin/pkg/admission/network/defaultingressclass/admission_test.go

    			Kind: "IngressClass",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "nondefault2",
    		},
    	}
    	// Class with empty default annotation (=non-default)
    	classWithEmptyDefault := &networkingv1.IngressClass{
    		TypeMeta: metav1.TypeMeta{
    			Kind: "IngressClass",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "nondefault2",
    			Annotations: map[string]string{
    				networkingv1.AnnotationIsDefaultIngressClass: "",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 04 13:12:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/auth/nodeidentifier/default.go

    limitations under the License.
    */
    
    package nodeidentifier
    
    import (
    	"strings"
    
    	"k8s.io/apiserver/pkg/authentication/user"
    )
    
    // NewDefaultNodeIdentifier returns a default NodeIdentifier implementation,
    // which returns isNode=true if the user groups contain the system:nodes group
    // and the user name matches the format system:node:<nodeName>, and populates
    // nodeName if isNode is true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 15 09:32:31 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/model/ReportCapability.java

        private final String module;
        private final String version;
        private final boolean isDefault;
    
        ReportCapability(String group, String module, String version, boolean isDefault) {
            this.group = group;
            this.module = module;
            this.version = version;
            this.isDefault = isDefault;
        }
    
        public String getGroup() {
            return group;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 25 15:02:04 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. src/internal/godebug/godebug_test.go

    		t.Fatalf("NonDefault kind = %v, want uint64", kind)
    	}
    	if count := m[0].Value.Uint64(); count != 3 {
    		t.Fatalf("NonDefault value = %d, want 3", count)
    	}
    }
    
    // TestPanicNilRace checks for a race in the runtime caused by use of runtime
    // atomics (not visible to usual race detection) to install the counter for
    // non-default panic(nil) semantics.  For #64649.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top