Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,119 for modes (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    === Fine tuning dependency locking behaviour with lock mode
    
    While the default lock mode behaves as described above, two other modes are available:
    
    Strict mode::
    In this mode, in addition to the validations above, dependency locking will fail if a configuration marked as _locked_ does not have lock state associated with it.
    
    Lenient mode::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    }
    
    func getVolumeAccessMode(spec *volume.Spec) string {
    	if spec.PersistentVolume == nil {
    		// In-line volumes in pod do not have a specific access mode, using "inline".
    		return "inline"
    	}
    	// For purpose of this PR, report only the "highest" access mode in this order: RWX (highest priority), ROX, RWO, RWOP (lowest priority
    	pv := spec.PersistentVolume
    	if util.ContainsAccessMode(pv.Spec.AccessModes, v1.ReadWriteMany) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/asm.go

    				// The Loong64 RDTIME family of instructions is a bit special,
    				// in that both its register operands are outputs
    				prog.To = a[0]
    				if a[1].Type != obj.TYPE_REG {
    					p.errorf("invalid addressing modes for 2nd operand to %s instruction, must be register", op)
    					return
    				}
    				prog.RegTo2 = a[1].Reg
    				break
    			}
    		}
    		prog.From = a[0]
    		prog.To = a[1]
    	case 3:
    		switch p.arch.Family {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

     *
     * The class can operate in two modes. First is the tracking mode when all environment-modifying operations are stored
     * and the list of the operations can be retrieved as the CachedEnvironmentState object. This mode is intended for the
     * builds with the configuration phase. The second mode applies the restored state to the environment and doesn't
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. pkg/volume/flexvolume/plugin.go

    }
    
    // RequiresRemount is part of the volume.VolumePlugin interface.
    func (plugin *flexVolumePlugin) RequiresRemount(spec *volume.Spec) bool {
    	return false
    }
    
    // GetAccessModes gets the allowed access modes for this plugin.
    func (plugin *flexVolumePlugin) GetAccessModes() []api.PersistentVolumeAccessMode {
    	return []api.PersistentVolumeAccessMode{
    		api.ReadWriteOnce,
    		api.ReadOnlyMany,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/options/options_test.go

    			},
    			TokenFile:            &kubeoptions.TokenFileAuthenticationOptions{},
    			TokenSuccessCacheTTL: 10 * time.Second,
    			TokenFailureCacheTTL: 0,
    		},
    		Authorization: &kubeoptions.BuiltInAuthorizationOptions{
    			Modes:                       []string{"AlwaysDeny", "RBAC"},
    			PolicyFile:                  "/policy",
    			WebhookConfigFile:           "/webhook-config",
    			WebhookCacheAuthorizedTTL:   180000000000,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. src/os/dir.go

    	})
    	return dirs, err
    }
    
    // CopyFS copies the file system fsys into the directory dir,
    // creating dir if necessary.
    //
    // Newly created directories and files have their default modes
    // where any bits from the file in fsys that are not part of the
    // standard read, write, and execute permissions will be zeroed
    // out, and standard read and write permissions are set for owner,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. scan.go

    		field.NewValuePool.Put(values[idx])
    	}
    }
    
    // ScanMode scan data mode
    type ScanMode uint8
    
    // scan modes
    const (
    	ScanInitialized         ScanMode = 1 << 0 // 1
    	ScanUpdate              ScanMode = 1 << 1 // 2
    	ScanOnConflictDoNothing ScanMode = 1 << 2 // 4
    )
    
    // Scan scan rows into db statement
    func Scan(rows Rows, db *DB, mode ScanMode) {
    	var (
    		columns, _          = rows.Columns()
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/sync/mutex.go

    	// (1) it is the last waiter in the queue, or (2) it waited for less than 1 ms,
    	// it switches mutex back to normal operation mode.
    	//
    	// Normal mode has considerably better performance as a goroutine can acquire
    	// a mutex several times in a row even if there are blocked waiters.
    	// Starvation mode is important to prevent pathological cases of tail latency.
    	starvationThresholdNs = 1e6
    )
    
    // Lock locks m.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

          this.input = input;
        }
    
        @CanIgnoreReturnValue
        RoundToDoubleTester setExpectation(double expectedValue, RoundingMode... modes) {
          for (RoundingMode mode : modes) {
            Double previous = expectedValues.put(mode, expectedValue);
            if (previous != null) {
              throw new AssertionError();
            }
          }
          return this;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top