Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for read_only (0.21 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    		}
    
    		pvcStatusCap := pvc.Status.Capacity[v1.ResourceStorage]
    		pvSpecCap := pv.Spec.Capacity[v1.ResourceStorage]
    		if pvcStatusCap.Cmp(pvSpecCap) < 0 {
    			if volumeToMount.VolumeSpec.ReadOnly {
    				simpleMsg, detailedMsg := volumeToMount.GenerateMsg("MountVolume.NodeExpandVolume failed", "requested read-only file system")
    				klog.Warningf(detailedMsg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        to be zero.
      }];
    }
    
    def ConvertReadonlyReferenceVariablesToResourceVariablesPass :
      Pass<"tf-readonly-references-to-resources", "mlir::func::FuncOp"> {
      let summary = "Convert readonly reference variables to resource variables.";
      let constructor = "TF::CreateConvertReadonlyReferenceVariablesToResourceVariablesPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //		created with -buildmode=shared.
    //	-mod mode
    //		module download mode to use: readonly, vendor, or mod.
    //		By default, if a vendor directory is present and the go version in go.mod
    //		is 1.14 or higher, the go command acts as if -mod=vendor were set.
    //		Otherwise, the go command acts as if -mod=readonly were set.
    //		See https://golang.org/ref/mod#build-commands for details.
    //	-modcacherw
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    type TxOptions struct {
    	// Isolation is the transaction isolation level.
    	// If zero, the driver or database's default level is used.
    	Isolation IsolationLevel
    	ReadOnly  bool
    }
    
    // RawBytes is a byte slice that holds a reference to memory owned by
    // the database itself. After a [Rows.Scan] into a RawBytes, the slice is only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    // un-cancellable context.
    func TestUnsupportedOptions(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    	_, err := db.BeginTx(context.Background(), &TxOptions{
    		Isolation: LevelSerializable, ReadOnly: true,
    	})
    	if err == nil {
    		t.Fatal("expected error when using unsupported options, got nil")
    	}
    }
    
    func TestMultiResultSetQuery(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

    # limitations under the License.
    
    # A library of helper functions and constant for the local config.
    
    # Use the config file specified in $KUBE_CONFIG_FILE, or default to
    # config-default.sh.
    readonly GCE_MAX_LOCAL_SSD=8
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/cluster/gce/${KUBE_CONFIG_FILE-"config-default.sh"}"
    source "${KUBE_ROOT}/cluster/common.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top