Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for rwx (0.22 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. 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)
  7. 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)
  8. pkg/apis/core/v1/helper/helpers_test.go

    	}
    
    	modes = GetAccessModesFromString("ROX,RWX")
    	if !ContainsAccessMode(modes, v1.ReadOnlyMany) {
    		t.Errorf("Expected mode %s, but got %+v", v1.ReadOnlyMany, modes)
    	}
    	if !ContainsAccessMode(modes, v1.ReadWriteMany) {
    		t.Errorf("Expected mode %s, but got %+v", v1.ReadWriteMany, modes)
    	}
    
    	modes = GetAccessModesFromString("RWO,ROX,RWX")
    	if !ContainsAccessMode(modes, v1.ReadWriteOnce) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    	// Required for querying lister for PVCs in the same namespace.
    	podWithReadWriteManyPVC := st.MakePod().Name("pod-with-rwx").Namespace(metav1.NamespaceDefault).PVC("claim-with-rwx").Node("node-1").Obj()
    
    	node := &v1.Node{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: "default",
    			Name:      "node-1",
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  10. 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)
Back to top