Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for rwx (0.05 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitScriptHandlingIntegrationTest.groovy

        TestFile createDistribution(int i) {
            def distro = file("distro$i")
            distro.copyFrom(distribution.getGradleHomeDir())
            distro.file("bin", OperatingSystem.current().getScriptName("gradle")).permissions = 'rwx------'
            distro.file("init.d/init.gradle") << """
                gradle.rootProject {
                    println "from distro $i"
                }
            """
            distro
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. src/io/fs/fs.go

    	w := 0
    	for i, c := range str {
    		if m&(1<<uint(32-1-i)) != 0 {
    			buf[w] = byte(c)
    			w++
    		}
    	}
    	if w == 0 {
    		buf[w] = '-'
    		w++
    	}
    	const rwx = "rwxrwxrwx"
    	for i, c := range rwx {
    		if m&(1<<uint(9-1-i)) != 0 {
    			buf[w] = byte(c)
    		} else {
    			buf[w] = '-'
    		}
    		w++
    	}
    	return string(buf[:w])
    }
    
    // IsDir reports whether m describes a directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

         *   </tr>
         *   <tr>
         *     <td>000</td>
         *     <td>---------</td>
         *     <td>no permissions</td>
         *   </tr>
         *   <tr>
         *     <td>700</td>
         *     <td>rwx------</td>
         *     <td>read, write &amp; execute only for owner</td>
         *   </tr>
         *   <tr>
         *     <td>770</td>
         *     <td>rwxrwx---</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top