Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 194 for Enabled (0.21 sec)

  1. src/runtime/mbitmap.go

    //
    //go:nosplit
    func bulkBarrierPreWrite(dst, src, size uintptr, typ *abi.Type) {
    	if (dst|src|size)&(goarch.PtrSize-1) != 0 {
    		throw("bulkBarrierPreWrite: unaligned arguments")
    	}
    	if !writeBarrier.enabled {
    		return
    	}
    	s := spanOf(dst)
    	if s == nil {
    		// If dst is a global, use the data or BSS bitmaps to
    		// execute write barriers.
    		for _, datap := range activeModules() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_attacher_test.go

    			spec:       volume.NewSpecFromVolume(makeTestVol("pv01", "driver02")),
    			shouldFail: true, // csi not enabled
    		},
    		{
    			name:       "missing spec",
    			nodeName:   "node000",
    			driverName: "driver000",
    			volumeName: "vol02",
    			attachID:   getAttachmentName("vol02", "driver02", "node02"),
    			shouldFail: true, // csi not enabled
    		},
    	}
    
    	// attacher loop
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    	// policy allows the lifecycle to be altered, for example by deleting persistent
    	// volume claims when their stateful set is deleted, or when their pod is scaled
    	// down. This requires the StatefulSetAutoDeletePVC feature gate to be enabled,
    	// which is beta.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	meshWatcher := mesh.NewFixedWatcher(&meshconfig.MeshConfig{
    		DiscoverySelectors: []*meshconfig.LabelSelector{
    			{
    				MatchLabels: map[string]string{
    					"pilot-discovery": "enabled",
    				},
    			},
    			{
    				MatchExpressions: []*meshconfig.LabelSelectorRequirement{
    					{
    						Key:      "env",
    						Operator: string(metav1.LabelSelectorOpIn),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    func logLargeCopy(v *Value, s int64) bool {
    	if s < 128 {
    		return true
    	}
    	if logopt.Enabled() {
    		logopt.LogOpt(v.Pos, "copy", "lower", v.Block.Func.Name, fmt.Sprintf("%d bytes", s))
    	}
    	return true
    }
    func LogLargeCopy(funcName string, pos src.XPos, s int64) {
    	if s < 128 {
    		return
    	}
    	if logopt.Enabled() {
    		logopt.LogOpt(pos, "copy", "lower", funcName, fmt.Sprintf("%d bytes", s))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    // in-case you wish to clear existing metadata.
    func (x *xlMetaV2) UpdateObjectVersion(fi FileInfo) error {
    	if fi.VersionID == "" {
    		// this means versioning is not yet
    		// enabled or suspend i.e all versions
    		// are basically default value i.e "null"
    		fi.VersionID = nullVersionID
    	}
    
    	var uv uuid.UUID
    	var err error
    	if fi.VersionID != "" && fi.VersionID != nullVersionID {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Since Gradle 7.5, using `Project.exec`, `Project.javaexec`, and standard Java and Groovy APIs to run external processes at configuration time has been considered an error only if the <<configuration_cache.adoc#config_cache:stable,feature preview `STABLE_CONFIGURATION_CACHE`>> was enabled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    	if staticLockRanking {
    		// When static lock ranking is enabled, we'll always be on the system
    		// stack at this point. There will be a runtime.unlockWithRank.func1
    		// frame, and if the call to runtime.unlock took place on a user stack
    		// then there'll also be a runtime.systemstack frame. To keep stack
    		// traces somewhat consistent whether or not static lock ranking is
    		// enabled, we'd like to skip those. But it's hard to tell how long
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The FindBugs Plugin no longer renders progress information from its analysis. If you rely on that output in any way, you can enable it with _FindBugs.showProgress_.
    
    [[changes_4.1]]
    == Upgrading from 4.0
    
     * Consider using the new <<worker_api.adoc#worker_api,Worker API>> to enable units of work within your build to run in parallel.
    
    === Deprecated classes, methods and properties
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    //	    v38 = MOVQstoreconst <mem> {blob} [val=0,off=0] v2 v32
    //
    // Important: locatePrologEnd is expected to work properly only with
    // optimization turned off (e.g. "-N"). If optimization is enabled
    // we can't be assured of finding all input arguments spilled in the
    // entry block prolog.
    func locatePrologEnd(f *Func, needCloCtx bool) (ID, *Value) {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top