Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for enumeration (0.26 sec)

  1. staging/src/k8s.io/api/storage/v1/types.go

    	// for example when Kubernetes cannot change ownership and permissions on a volume due
    	// to root-squash settings on a NFS volume.
    	NoneFSGroupPolicy FSGroupPolicy = "None"
    )
    
    // VolumeLifecycleMode is an enumeration of possible usage modes for a volume
    // provided by a CSI driver. More modes may be added in the future.
    type VolumeLifecycleMode string
    
    // TokenRequest contains parameters of a service account token.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. istioctl/pkg/proxyconfig/proxyconfig.go

    	// output format (json, yaml or short)
    	outputFormat string
    
    	proxyAdminPort int
    
    	configDumpFile string
    
    	labelSelector = ""
    	loggerName    string
    )
    
    // Level is an enumeration of all supported log levels.
    type Level int
    
    const (
    	defaultLoggerName       = "level"
    	defaultEnvoyOutputLevel = WarningLevel
    )
    
    const (
    	// OffLevel disables logging
    	OffLevel Level = iota
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/registry/registry_test.go

    		if wantFound && !haveFound {
    			t.Errorf("value %s is not found while enumerating", test.Name)
    		}
    		if haveFound && !wantFound {
    			t.Errorf("value %s is found while enumerating, but expected to fail", test.Name)
    		}
    		if haveFound {
    			delete(haveNames, test.Name)
    		}
    	}
    	for n, v := range haveNames {
    		t.Errorf("value %s (%v) is found while enumerating, but has not been created", n, v)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/runtime/trace.go

    	cpuSleep    *wakeableSleep
    	cpuLogDone  <-chan struct{}
    	cpuBuf      [2]*traceBuf
    
    	reader atomic.Pointer[g] // goroutine that called ReadTrace, or nil
    
    	// Fast mappings from enumerations to string IDs that are prepopulated
    	// in the trace.
    	markWorkerLabels [2][len(gcMarkWorkerModeStrings)]traceArg
    	goStopReasons    [2][len(traceGoStopReasonStrings)]traceArg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate_test.go

    	legacyWebhook := getWebhooksFromYaml(t, legacyDefaultInjector)
    	legacyRevWebhook := getWebhooksFromYaml(t, legacyRevisionInjector)
    
    	// predicate is used to filter out "obvious" test cases, to avoid enumerating all cases
    	// nolint: unparam
    	predicate := func(ls LabelSet) (string, bool) {
    		if ls.namespace.Get("istio-injection") == "disabled" {
    			return "", true
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top