Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 106 for read_only (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/StaticVersionsReadOnlyCacheDependencyResolutionTest.groovy

        def "can recover from corrupt read-only cache (#file)"() {
            given:
            def core = mavenHttpRepo.module('org.readonly', 'core', '1.0')
            def util = mavenHttpRepo.module('org.readonly', 'util', '1.0')
            buildFile << """
                dependencies {
                    implementation 'org.readonly:core:+'
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pkg/volume/nfs/nfs.go

    }
    
    type nfsMounter struct {
    	*nfs
    	server       string
    	exportPath   string
    	readOnly     bool
    	mountOptions []string
    }
    
    var _ volume.Mounter = &nfsMounter{}
    
    func (nfsMounter *nfsMounter) GetAttributes() volume.Attributes {
    	return volume.Attributes{
    		ReadOnly:       nfsMounter.readOnly,
    		Managed:        false,
    		SELinuxRelabel: false,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. cluster/gce/manifests/etcd.manifest

        "volumeMounts": [
          { "name": "varetcd",
            "mountPath": "/var/etcd",
            "readOnly": false
          },
          { "name": "varlogetcd",
            "mountPath": "/var/log/etcd{{ suffix }}.log",
            "readOnly": false
          },
          { "name": "etc",
            "mountPath": "/etc/srv/kubernetes",
            "readOnly": false
          }
        ]
        }
    ],
    "volumes":[
      { "name": "varetcd",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_kubernetes.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: Fri Dec 01 22:07:45 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. cluster/addons/kube-network-policies/kube-network-policies.yaml

                memory: "50Mi"
            securityContext:
              privileged: true
            volumeMounts:
            - mountPath: /var/log
              name: varlog
              readOnly: false
            - mountPath: /lib/modules
              name: lib-modules
              readOnly: true
          volumes:
          - name: varlog
            hostPath:
              path: /var/log
          - name: lib-modules
            hostPath:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:27:59 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/work_vendor_modules_txt_consistent.txt

    go: inconsistent vendoring in $GOPATH${/}src:
    	example.com/p@v1.0.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
    
    	To ignore the vendor directory, use -mod=readonly or -mod=mod.
    	To sync the vendor directory, run:
    		go work vendor
    -- modules.txt.missing_replacement --
    ## workspace
    # example.com/p v1.0.0
    ## explicit; go 1.21
    # example.com/q v1.0.0 => ./q
    ## explicit; go 1.21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

                mountPath: /var/run/secrets/tokens
                readOnly: true
              - name: local-certs
                mountPath: /var/run/secrets/istio-dns
              - name: cacerts
                mountPath: /etc/cacerts
                readOnly: true
              - name: istio-kubeconfig
                mountPath: /var/run/secrets/remote
                readOnly: true
              {{- if .Values.pilot.jwksResolverExtraRootCA }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodStatusResult.json

                  "name": "nameValue"
                }
              ]
            },
            "volumeMounts": [
              {
                "name": "nameValue",
                "mountPath": "mountPathValue",
                "readOnly": true,
                "recursiveReadOnly": "recursiveReadOnlyValue"
              }
            ]
          }
        ],
        "containerStatuses": [
          {
            "name": "nameValue",
            "state": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodStatusResult.yaml

            signal: 2
            startedAt: "2005-01-01T01:01:01Z"
          waiting:
            message: messageValue
            reason: reasonValue
        volumeMounts:
        - mountPath: mountPathValue
          name: nameValue
          readOnly: true
          recursiveReadOnly: recursiveReadOnlyValue
      ephemeralContainerStatuses:
      - allocatedResources:
          allocatedResourcesKey: "0"
        containerID: containerIDValue
        image: imageValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work_vendor_modules_txt_conditional.txt

    go work vendor
    cmp vendor/modules.txt want_workspace_modules_txt
    go list -f {{.Dir}} example.com/b
    stdout $GOPATH[\\/]src[\\/]vendor[\\/]example.com[\\/]b
    
    # vendor directory produced for workspace, module mode
    # runs in mod=readonly
    env GOWORK=off
    go list -f {{.Dir}} example.com/b
    stdout $GOPATH[\\/]src[\\/]b
    
    # vendor directory produced for module, module mode
    # runs in mod=vendor
    go mod vendor
    cmp vendor/modules.txt want_module_modules_txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top