Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 228 for read_only (0.29 sec)

  1. src/cmd/go/testdata/script/mod_edit_no_modcache.txt

    # It does not otherwise depend on the module cache, so it should not
    # fail if the module cache directory cannot be created.
    
    [root] skip
    
    mkdir $WORK/readonly
    chmod 0555 $WORK/readonly
    env GOPATH=$WORK/readonly/nonexist
    
    go mod edit -go=1.17
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 21 14:10:22 UTC 2021
    - 419 bytes
    - Viewed (0)
  2. cluster/gce/manifests/kube-addon-manager.yaml

          requests:
            cpu: 5m
            memory: 50Mi
        volumeMounts:
        - mountPath: /etc/kubernetes/
          name: addons
          readOnly: true
        - mountPath: /var/log
          name: varlog
          readOnly: false
        - mountPath: /etc/srv/kubernetes/addon-manager/
          name: srvkube
          readOnly: true
        env:
        - name: KUBECTL_PRUNE_WHITELIST_OVERRIDE
          value: {{kubectl_prune_whitelist_override}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 03:09:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_k8s_settings.golden.yaml

            - mountPath: /var/run/secrets/tokens
              name: istio-token
              readOnly: true
            - mountPath: /var/run/secrets/istio-dns
              name: local-certs
            - mountPath: /etc/cacerts
              name: cacerts
              readOnly: true
            - mountPath: /var/run/secrets/remote
              name: istio-kubeconfig
              readOnly: true
            - mountPath: /var/run/secrets/istiod/tls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/portworxvolumesource.go

    	return b
    }
    
    // WithReadOnly sets the ReadOnly field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the ReadOnly field is set to the value of the last call.
    func (b *PortworxVolumeSourceApplyConfiguration) WithReadOnly(value bool) *PortworxVolumeSourceApplyConfiguration {
    	b.ReadOnly = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nfsvolumesource.go

    	return b
    }
    
    // WithReadOnly sets the ReadOnly field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the ReadOnly field is set to the value of the last call.
    func (b *NFSVolumeSourceApplyConfiguration) WithReadOnly(value bool) *NFSVolumeSourceApplyConfiguration {
    	b.ReadOnly = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/calico-node-daemonset.yaml

                  name: lib-modules
                  readOnly: true
                - mountPath: /etc/calico
                  name: etc-calico
                  readOnly: true
                - mountPath: /var/run/calico
                  name: var-run-calico
                  readOnly: false
                - mountPath: /var/lib/calico
                  name: var-lib-calico
                  readOnly: false
                - mountPath: /run/xtables.lock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 25 12:18:44 UTC 2021
    - 6K bytes
    - Viewed (0)
  7. cluster/gce/manifests/cluster-autoscaler.manifest

                        {
                            "name": "ssl-certs",
                            "readOnly": true,
                            "mountPath": "/etc/ssl/certs"
                        },
                        {
                            "name": "usrsharecacerts",
                            "readOnly": true,
                            "mountPath": "/usr/share/ca-certificates"
                        },
                        {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:04:35 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/systeminfo/admin_systeminfo.jsp

                                                  readonly><la:message
                                                key="labels.system_info_system_properties_does_not_exist"/></textarea>
                                </c:if>
                                <c:if test="${!empty fessPropItems}">
    									<textarea id="fessPropData" class="systemInfoData form-control"
                                                  readonly>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/cinderpersistentvolumesource.go

    type CinderPersistentVolumeSourceApplyConfiguration struct {
    	VolumeID  *string                            `json:"volumeID,omitempty"`
    	FSType    *string                            `json:"fsType,omitempty"`
    	ReadOnly  *bool                              `json:"readOnly,omitempty"`
    	SecretRef *SecretReferenceApplyConfiguration `json:"secretRef,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/awselasticblockstorevolumesource.go

    type AWSElasticBlockStoreVolumeSourceApplyConfiguration struct {
    	VolumeID  *string `json:"volumeID,omitempty"`
    	FSType    *string `json:"fsType,omitempty"`
    	Partition *int32  `json:"partition,omitempty"`
    	ReadOnly  *bool   `json:"readOnly,omitempty"`
    }
    
    // AWSElasticBlockStoreVolumeSourceApplyConfiguration constructs an declarative configuration of the AWSElasticBlockStoreVolumeSource type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.1K bytes
    - Viewed (0)
Back to top