Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,527 for modes (0.07 sec)

  1. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

        : public PassWrapper<FallbackToFlexOps, OperationPass<func::FuncOp>> {
     public:
      FallbackToFlexOps() = default;
      explicit FallbackToFlexOps(const std::string &mode) { mode_ = mode; }
      FallbackToFlexOps(const FallbackToFlexOps &other) { mode_ = other.mode_; }
    
      void runOnOperation() override;
    
      StringRef getArgument() const final { return "quant-raise-flex-fallback"; }
    
      StringRef getDescription() const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/config.go

    	"k8s.io/kubernetes/pkg/controlplane/controller/clusterauthenticationtrust"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubeapiserver"
    	"k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes"
    	rbacrest "k8s.io/kubernetes/pkg/registry/rbac/rest"
    	"k8s.io/kubernetes/pkg/serviceaccount"
    )
    
    // Config defines configuration for the master
    type Config struct {
    	Generic *genericapiserver.Config
    	Extra
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_mounter.go

    		return nil
    	default:
    		return fmt.Errorf("volume mode %q not supported by driver %s (only supports %q)", c.volumeLifecycleMode, driver, csiDriver.Spec.VolumeLifecycleModes)
    	}
    }
    
    // containsVolumeMode checks whether the given volume mode is listed.
    func containsVolumeMode(modes []storage.VolumeLifecycleMode, mode storage.VolumeLifecycleMode) bool {
    	for _, m := range modes {
    		if m == mode {
    			return true
    		}
    	}
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  4. staging/src/k8s.io/api/storage/v1/types.go

    	//
    	// The other mode is "Ephemeral". In this mode, volumes are defined inline inside the pod spec
    	// with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod.
    	// A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume.
    	//
    	// For more information about implementing this mode, see
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	return allErrors
    }
    
    func validateBackendMode(pluginName string, mode string) error {
    	for _, m := range AllowedModes {
    		if m == mode {
    			return nil
    		}
    	}
    	return fmt.Errorf("invalid audit %s mode %s, allowed modes are %q", pluginName, mode, strings.Join(AllowedModes, ","))
    }
    
    func validateBackendBatchOptions(pluginName string, options AuditBatchOptions) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    		modesA []string
    		modesB []string
    		equal  bool
    	}{
    		{
    			name:   "modes match",
    			modesA: []string{"a", "b", "c"},
    			modesB: []string{"a", "b", "c"},
    			equal:  true,
    		},
    		{
    			name:   "modes order does not match",
    			modesA: []string{"a", "c", "b"},
    			modesB: []string{"a", "b", "c"},
    		},
    		{
    			name:   "modes do not match; A has less modes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1beta1/types.go

    	//
    	// The other mode is "Ephemeral". In this mode, volumes are defined inline inside the pod spec
    	// with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod.
    	// A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume.
    	//
    	// For more information about implementing this mode, see
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  8. src/cmd/covdata/dump.go

    	}
    	d := &dstate{
    		cmd: cmd,
    		cm:  &cmerge.Merger{},
    	}
    	// For these modes (percent, pkglist, func, etc), use a relaxed
    	// policy when it comes to counter mode clashes. For a percent
    	// report, for example, we only care whether a given line is
    	// executed at least once, so it's ok to (effectively) merge
    	// together runs derived from different counter modes.
    	if d.cmd == percentMode || d.cmd == funcMode || d.cmd == pkglistMode {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. cmd/bucket-object-lock.go

    	}
    
    	ret := objectlock.GetObjectRetentionMeta(oi.UserDefined)
    	if ret.Mode.Valid() {
    		switch ret.Mode {
    		case objectlock.RetCompliance:
    			// In compliance mode, a protected object version can't be overwritten
    			// or deleted by any user, including the root user in your AWS account.
    			// When an object is locked in compliance mode, its retention mode can't
    			// be changed, and its retention period can't be shortened. Compliance mode
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    [listing]
    ----
    $ gradle clean md5
    
    include::{snippetsPath}/workerApi/md5ProcessIsolation/tests/md5Task2.out[]
    ----
    
    [[isolation-modes]]
    == Isolation modes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top