Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for rwx (0.18 sec)

  1. src/runtime/pprof/vminfo_darwin_test.go

    	// MALLOC guard page           103cf0000-103cf4000    [   16K     0K     0K     0K] ---/rwx SM=COW
    	// MALLOC guard page           103cfc000-103d00000    [   16K     0K     0K     0K] ---/rwx SM=COW
    	// MALLOC guard page           103d00000-103d04000    [   16K     0K     0K     0K] ---/rwx SM=NUL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 19:59:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. build/build-image/Dockerfile

    RUN touch /kube-build-image
    
    # To run as non-root we sometimes need to rebuild go stdlib packages.
    RUN chmod -R a+rwx /usr/local/go/pkg
    
    # For running integration tests /var/run/kubernetes is required
    # and should be writable by user
    RUN mkdir /var/run/kubernetes && chmod a+rwx /var/run/kubernetes
    
    # The kubernetes source is expected to be mounted here.  This will be the base
    # of operations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 05 23:26:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultConfigurableFilePermissionsTest.java

            assertInvalidUnixPermission("|wxrwxrwx", "'|wxrwxrwx' isn't a proper Unix permission. '|' is not a valid Unix permission READ flag, must be 'r' or '-'.");
            assertInvalidUnixPermission("rwx|wxrwx", "'rwx|wxrwx' isn't a proper Unix permission. '|' is not a valid Unix permission READ flag, must be 'r' or '-'.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/sym/segment.go

    // use in debuggers and such.
    
    type Segment struct {
    	Rwx      uint8  // permission as usual unix bits (5 = r-x etc)
    	Vaddr    uint64 // virtual address
    	Length   uint64 // length in memory
    	Fileoff  uint64 // file offset
    	Filelen  uint64 // length on disk
    	Sections []*Section
    }
    
    type Section struct {
    	Rwx     uint8
    	Extnum  int16
    	Align   int32
    	Name    string
    	Vaddr   uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 05:32:52 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/index.go

    // mode.
    //
    // For example, assume the index contains 2 types of PVs where the stringified
    // accessmodes are:
    //
    // "RWO,ROX" -- some number of GCEPDs
    // "RWO,ROX,RWX" -- some number of NFS volumes
    //
    // A request for RWO could be satisfied by both sets of indexed volumes, so
    // allPossibleMatchingAccessModes returns:
    //
    //	[][]v1.PersistentVolumeAccessMode {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  6. samples/bookinfo/src/reviews/Dockerfile

    RUN /opt/ol/wlp/bin/featureUtility installServerFeatures  --acceptLicense /opt/ol/wlp/usr/servers/defaultServer/server.xml --verbose && \
        chmod -R g=rwx /opt/ol/wlp/output/defaultServer/
    
    ARG service_version
    ARG enable_ratings
    ARG star_color
    ENV SERVICE_VERSION ${service_version:-v1}
    ENV ENABLE_RATINGS ${enable_ratings:-false}
    ENV STAR_COLOR ${star_color:-black}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 23:40:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. pkg/apis/core/helper/helpers_test.go

    	}
    
    	modes = GetAccessModesFromString("ROX,RWX")
    	if !ContainsAccessMode(modes, core.ReadOnlyMany) {
    		t.Errorf("Expected mode %s, but got %+v", core.ReadOnlyMany, modes)
    	}
    	if !ContainsAccessMode(modes, core.ReadWriteMany) {
    		t.Errorf("Expected mode %s, but got %+v", core.ReadWriteMany, modes)
    	}
    
    	modes = GetAccessModesFromString("RWO,ROX,RWX")
    	if !ContainsAccessMode(modes, core.ReadWriteOnce) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/node_expander.go

    	// pvcAlreadyUpdated if true indicates that although we are calling NodeExpandVolume on the kubelet
    	// PVC has already been updated - possibly because expansion already succeeded on different node.
    	// This can happen when a RWX PVC is expanded.
    	pvcAlreadyUpdated bool
    }
    
    func newNodeExpander(resizeOp nodeResizeOperationOpts, client clientset.Interface, recorder record.EventRecorder) *NodeExpander {
    	return &NodeExpander{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/helper/helpers.go

    }
    
    // GetAccessModesAsString returns a string representation of an array of access modes.
    // modes, when present, are always in the same order: RWO,ROX,RWX,RWOP.
    func GetAccessModesAsString(modes []v1.PersistentVolumeAccessMode) string {
    	modes = removeDuplicateAccessModes(modes)
    	modesStr := []string{}
    	if ContainsAccessMode(modes, v1.ReadWriteOnce) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r14/ToolingApiInitScriptCrossVersionIntegrationTest.groovy

            distro.deleteDir()
    
            distro.copyFrom(getTargetDist().getGradleHomeDir())
            distro.file("bin", OperatingSystem.current().getScriptName("gradle")).permissions = 'rwx------'
            distro.file("init.d/init.gradle") << """
                gradle.allprojects {
                    task echo { doLast { println "from distro $i" } }
                }
            """
            distro
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top