Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 180 for 7777 (0.08 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ArchiveTaskPermissionsIntegrationTest.groovy

        @Requires(UnitTestPreconditions.FilePermissions)
        def "file and directory permissions are preserved when using #taskName task"() {
            given:
            createDir('parent') {
                child {
                    mode = 0777
                    file('reference.txt').mode = 0746
                }
            }
            def archName = "test.${taskName.toLowerCase()}"
            and:
            buildFile << """
                task pack(type: $taskName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 11 06:18:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. src/os/removeall_test.go

    		if err := Mkdir(filepath.Join(tempDir, dir), 0777); err != nil {
    			t.Fatal(err)
    		}
    	}
    	for _, dir := range readonly {
    		d := filepath.Join(tempDir, dir)
    		if err := Chmod(d, 0555); err != nil {
    			t.Fatal(err)
    		}
    
    		// Defer changing the mode back so that the deferred
    		// RemoveAll(tempDir) can succeed.
    		defer Chmod(d, 0777)
    	}
    
    	err := RemoveAll(tempDir)
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. pkg/apis/core/fuzzer/fuzzer.go

    			s.DefaultMode = &mode
    		},
    		func(cm *core.ConfigMapVolumeSource, c fuzz.Continue) {
    			c.FuzzNoCustom(cm) // fuzz self without calling this function again
    
    			if c.RandBool() {
    				opt := c.RandBool()
    				cm.Optional = &opt
    			}
    			// DefaultMode should always be set, it has a default
    			// value and it is expected to be between 0 and 0777
    			var mode int32
    			c.Fuzz(&mode)
    			mode &= 0777
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/PosixFilePermissionConverterTest.groovy

            EnumSet.noneOf(PosixFilePermission)                                  |       0
            EnumSet.allOf(PosixFilePermission)                                   |       0777
            EnumSet.of(OWNER_READ, OWNER_WRITE, OWNER_EXECUTE)                   |       0700
            EnumSet.of(OWNER_READ, GROUP_READ, GROUP_WRITE, GROUP_EXECUTE)       |       0470
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/covdata/tool_test.go

    	// Create subdirs.
    	subdir := filepath.Join(dir, prog+"dir"+tag)
    	if err := os.Mkdir(subdir, 0777); err != nil {
    		t.Fatalf("can't create outdir %s: %v", subdir, err)
    	}
    	depdir := filepath.Join(subdir, "dep")
    	if err := os.Mkdir(depdir, 0777); err != nil {
    		t.Fatalf("can't create outdir %s: %v", depdir, err)
    	}
    
    	// Emit program.
    	insrc := filepath.Join("testdata", prog+".go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. src/os/path_windows_test.go

    			t.Fatalf("FullPath(%q) fails: %v", tmpDir, err)
    		}
    		tmpDir = prefix + fullPath
    	}
    	path := tmpDir + `\dir\`
    	if err := os.MkdirAll(path, 0777); err != nil {
    		t.Fatalf("MkdirAll(%q) failed: %v", path, err)
    	}
    
    	path = path + `.\dir2`
    	if err := os.MkdirAll(path, 0777); err == nil {
    		t.Fatalf("MkdirAll(%q) should have failed, but did not", path)
    	}
    }
    
    func TestOpenRootSlash(t *testing.T) {
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/cmd/cover/cfg_test.go

    	pname := "yesFuncsNoTests"
    	mode := "count"
    	gran := "perblock"
    	tag := mode + "_" + gran
    	instdir := filepath.Join(dir, "inst")
    	if err := os.Mkdir(instdir, 0777); err != nil {
    		t.Fatal(err)
    	}
    	mdir := filepath.Join(dir, "meta")
    	if err := os.Mkdir(mdir, 0777); err != nil {
    		t.Fatal(err)
    	}
    	mpath := filepath.Join(mdir, "covmeta.xxx")
    	incfg := writePkgConfig(t, instdir, tag, ppath, pname, gran, mpath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/testdata/proxyless-custom-image.yaml

              - --port=8080
              - --port=3333
              - --grpc=17777
              - --version=bar
              - --istio-version=
              - --crt=/cert.crt
              - --key=/cert.key
            ports:
            - containerPort: 8080
            - containerPort: 3333
              name: tcp-health-port
            - containerPort: 17777
            env:
            - name: INSTANCE_IP
              valueFrom:
                fieldRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. src/go/doc/testdata/blank.0.golden

    	const (
    		C1	T
    		C2
    	
    		C3
    	
    		C4	int
    	)
    
    	// Constants with a single type that is not propagated. 
    	const (
    		Default		= 0644
    		Useless		= 0312
    		WideOpen	= 0777
    	)
    
    	// Constants with an imported type that is propagated. 
    	const (
    		M1	os.FileMode
    		M2
    		M3
    	)
    
    	// Package constants. 
    	const (
    		I1	int
    		I2
    	)
    
    
    TYPES
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 01:12:26 UTC 2017
    - 751 bytes
    - Viewed (0)
  10. src/go/doc/testdata/blank.2.golden

    	const (
    		C1	T
    		C2
    	
    		C3
    	
    		C4	int
    	)
    
    	// Constants with a single type that is not propagated. 
    	const (
    		Default		= 0644
    		Useless		= 0312
    		WideOpen	= 0777
    	)
    
    	// Constants with an imported type that is propagated. 
    	const (
    		M1	os.FileMode
    		M2
    		M3
    	)
    
    	// Package constants. 
    	const (
    		I1	int
    		I2
    	)
    
    
    TYPES
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 01:12:26 UTC 2017
    - 751 bytes
    - Viewed (0)
Back to top