Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for read_only (0.24 sec)

  1. cluster/gce/manifests/kube-proxy.manifest

          name: etc-ssl-certs
          readOnly: true
        - mountPath: /usr/share/ca-certificates
          name: usr-ca-certs
          readOnly: true
        - mountPath: /var/log
          name: varlog
          readOnly: false
        - mountPath: /var/lib/kube-proxy/kubeconfig
          name: kubeconfig
          readOnly: false
        - mountPath: /run/xtables.lock
          name: iptableslock
          readOnly: false
        - mountPath: /lib/modules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. build/common.sh

    readonly THIS_PLATFORM_BIN="${LOCAL_OUTPUT_ROOT}/bin"
    
    readonly KUBE_GO_PACKAGE=k8s.io/kubernetes
    readonly REMOTE_ROOT="/go/src/${KUBE_GO_PACKAGE}"
    readonly REMOTE_OUTPUT_ROOT="${REMOTE_ROOT}/_output"
    readonly REMOTE_OUTPUT_SUBPATH="${REMOTE_OUTPUT_ROOT}/dockerized"
    readonly REMOTE_OUTPUT_BINPATH="${REMOTE_OUTPUT_SUBPATH}/bin"
    readonly REMOTE_OUTPUT_GOPATH="${REMOTE_OUTPUT_SUBPATH}/go"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K 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. src/cmd/go/testdata/script/work.txt

    stdout 'Hello, world.'
    cd $GOPATH/src
    
    go list all # all includes both modules
    stdout 'example.com/a'
    stdout 'example.com/b'
    
    # -mod can only be set to readonly in workspace mode
    go list -mod=readonly all
    ! go list -mod=mod all
    stderr '^go: -mod may only be set to readonly or vendor when in workspace mode'
    env GOWORK=off
    go list -mod=mod all
    env GOWORK=
    
    # Test that duplicates in the use list return an error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. 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)
  6. common/scripts/setup_env.sh

      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.docker,destination=/config/.docker,readonly "
    fi
    
    # gcloud conditional host mount (needed for docker push with the gcloud auth configure-docker)
    if [[ -d "${HOME}/.config/gcloud" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.config/gcloud,destination=/config/.config/gcloud,readonly "
    fi
    
    # gitconfig conditional host mount (needed for git commands inside container)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "readOnly": {
                "description": "readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
                "type": "boolean"
              }
            },
            "required": [
              "diskName",
              "diskURI"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. pkg/kubelet/container/runtime.go

    	Name string
    	// Path of the mount within the container.
    	ContainerPath string
    	// Path of the mount on the host.
    	HostPath string
    	// Whether the mount is read-only.
    	ReadOnly bool
    	// Whether the mount is recursive read-only.
    	// Must not be true if ReadOnly is false.
    	RecursiveReadOnly bool
    	// Whether the mount needs SELinux relabeling
    	SELinuxRelabel bool
    	// Requested propagation mode
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    				panic("in workspace mode and -mod was set explicitly, but command doesn't support setting -mod")
    			default:
    				base.Fatalf("go: -mod may only be set to readonly or vendor when in workspace mode, but it is set to %q"+
    					"\n\tRemove the -mod flag to use the default readonly value, "+
    					"\n\tor set GOWORK=off to disable workspace mode.", cfg.BuildMod)
    			}
    		}
    		// Don't override an explicit '-mod=' argument.
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. common/Makefile.common.mk

    tidy-go:
    	@find -name go.mod -execdir go mod tidy \;
    
    mod-download-go:
    	@-GOFLAGS="-mod=readonly" find -name go.mod -execdir go mod download \;
    # go mod tidy is needed with Golang 1.16+ as go mod download affects go.sum
    # https://github.com/golang/go/issues/43994
    	@find -name go.mod -execdir go mod tidy \;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top