Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 130 for read_only (0.32 sec)

  1. pkg/volume/local/local.go

    }
    
    type localVolumeMounter struct {
    	*localVolume
    	readOnly     bool
    	mountOptions []string
    }
    
    var _ volume.Mounter = &localVolumeMounter{}
    
    func (m *localVolumeMounter) GetAttributes() volume.Attributes {
    	return volume.Attributes{
    		ReadOnly:       m.readOnly,
    		Managed:        !m.readOnly,
    		SELinuxRelabel: true,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. pkg/volume/portworx/portworx.go

    	readOnly bool
    	// diskMounter provides the interface that is used to mount the actual block device.
    	diskMounter *mount.SafeFormatAndMount
    }
    
    var _ volume.Mounter = &portworxVolumeMounter{}
    
    func (b *portworxVolumeMounter) GetAttributes() volume.Attributes {
    	return volume.Attributes{
    		ReadOnly:       b.readOnly,
    		Managed:        !b.readOnly,
    		SELinuxRelabel: false,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/sync/map.go

    	// map, the dirty map will be promoted to the read map (in the unamended
    	// state) and the next store to the map will make a new dirty copy.
    	misses int
    }
    
    // readOnly is an immutable struct stored atomically in the Map.read field.
    type readOnly struct {
    	m       map[any]*entry
    	amended bool // true if the dirty map contains some key not in m.
    }
    
    // expunged is an arbitrary pointer that marks entries which have been deleted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionNodeInitializerExtractionStrategy.java

            @Override
            protected abstract ScalarCollectionModelView<E, C> toView(MutableModelNode modelNode, ModelRuleDescriptor ruleDescriptor, boolean readOnly);
    
            public static <E> ScalarCollectionModelProjection<E, List<E>> forList(final ModelType<E> elementType, final boolean readOnly) {
                return new ScalarCollectionModelProjection<E, List<E>>(ModelTypes.list(elementType)) {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. pkg/volume/hostpath/host_path.go

    	return hp.path
    }
    
    type hostPathMounter struct {
    	*hostPath
    	readOnly      bool
    	mounter       mount.Interface
    	hu            hostutil.HostUtils
    	noTypeChecker bool
    }
    
    var _ volume.Mounter = &hostPathMounter{}
    
    func (b *hostPathMounter) GetAttributes() volume.Attributes {
    	return volume.Attributes{
    		ReadOnly:       b.readOnly,
    		Managed:        false,
    		SELinuxRelabel: false,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. pkg/volume/downwardapi/downwardapi.go

    }
    
    func getVolumeSource(spec *volume.Spec) (*v1.DownwardAPIVolumeSource, bool) {
    	var readOnly bool
    	var volumeSource *v1.DownwardAPIVolumeSource
    
    	if spec.Volume != nil && spec.Volume.DownwardAPI != nil {
    		volumeSource = spec.Volume.DownwardAPI
    		readOnly = spec.ReadOnly
    	}
    
    	return volumeSource, readOnly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-kubeapiserver.sh

        create-master-audit-policy "${audit_policy_file}" "${ADVANCED_AUDIT_POLICY:-}"
        audit_policy_config_mount="{\"name\": \"auditpolicyconfigmount\",\"mountPath\": \"${audit_policy_file}\", \"readOnly\": true},"
        audit_policy_config_volume="{\"name\": \"auditpolicyconfigmount\",\"hostPath\": {\"path\": \"${audit_policy_file}\", \"type\": \"FileOrCreate\"}},"
    
        if [[ "${ADVANCED_AUDIT_BACKEND:-log}" == *"log"* ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. pkg/volume/configmap/configmap.go

    }
    
    func getVolumeSource(spec *volume.Spec) (*v1.ConfigMapVolumeSource, bool) {
    	var readOnly bool
    	var volumeSource *v1.ConfigMapVolumeSource
    
    	if spec.Volume != nil && spec.Volume.ConfigMap != nil {
    		volumeSource = spec.Volume.ConfigMap
    		readOnly = spec.ReadOnly
    	}
    
    	return volumeSource, readOnly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

    {{- end }}
              - name: istio-token
                mountPath: /var/run/secrets/tokens
                readOnly: true
              {{- if .Values.global.mountMtlsCerts }}
              # Use the key and cert mounted to /etc/certs/ for the in-cluster mTLS communications.
              - name: istio-certs
                mountPath: /etc/certs
                readOnly: true
              {{- end }}
              - mountPath: /var/lib/istio/data
                name: istio-data
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_plugin.go

    		driverName   string
    		volumeHandle string
    		readOnly     bool
    	)
    
    	switch {
    	case volSrc != nil:
    		volumeHandle = makeVolumeHandle(string(pod.UID), spec.Name())
    		driverName = volSrc.Driver
    		if volSrc.ReadOnly != nil {
    			readOnly = *volSrc.ReadOnly
    		}
    	case pvSrc != nil:
    		driverName = pvSrc.Driver
    		volumeHandle = pvSrc.VolumeHandle
    		readOnly = spec.ReadOnly
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top