Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for sysdir (1.1 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

            }
    
        }
    
        def "tests only classes from plugin source set"() {
            buildFile << """
                sourceSets {
                    plugin {
                        java {
                            srcDir 'src/plugin/java'
                            compileClasspath = configurations.compileClasspath
                        }
                    }
                }
    
                gradlePlugin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    		"pkg/include",
    	)
    	for _, copydir := range dirs {
    		srcdir := filepath.Join(testGOROOT, copydir)
    		tg.tempDir(filepath.Join("goroot", copydir))
    		err := filepath.WalkDir(srcdir,
    			func(path string, info fs.DirEntry, err error) error {
    				if err != nil {
    					return err
    				}
    				if info.IsDir() {
    					return nil
    				}
    				srcrel, err := filepath.Rel(srcdir, path)
    				if err != nil {
    					return err
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/kube.go

    		return err
    	}
    
    	root, err := ca.NewRoot(certsDir)
    	if err != nil {
    		return fmt.Errorf("failed creating the root CA: %v", err)
    	}
    
    	for _, c := range i.env.Clusters() {
    		// Create a subdir for the cluster certs.
    		clusterDir := filepath.Join(certsDir, c.Name())
    		if err := os.Mkdir(clusterDir, 0o700); err != nil {
    			return err
    		}
    
    		// Create the new extensions config for the CA
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. go.sum

    github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
    github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw=
    github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 h1:kdXcSzyDtseVEc4yCz2qF8ZrQvIDBJLl4S1c3GCXmoI=
    github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  5. docs/debugging/xl-meta/main.go

    for 'xl.meta' files. Wildcards are accepted: 'testdir/*.txt' will compress
    all files in testdir ending with '.txt', directories can be wildcards
    as well. 'testdir/*/*.txt' will match 'testdir/subdir/b.txt', double stars
    means full recursive. 'testdir/**/xl.meta' will search for all xl.meta
    recursively.
    
    FLAGS:
      {{range .VisibleFlags}}{{.}}
      {{end}}
    `
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	EEXIST      = syscall.Errno(0x11)
    	EFAULT      = syscall.Errno(0xe)
    	EFBIG       = syscall.Errno(0x1b)
    	EINTR       = syscall.Errno(0x4)
    	EINVAL      = syscall.Errno(0x16)
    	EIO         = syscall.Errno(0x5)
    	EISDIR      = syscall.Errno(0x15)
    	EMFILE      = syscall.Errno(0x18)
    	EMLINK      = syscall.Errno(0x1f)
    	ENFILE      = syscall.Errno(0x17)
    	ENODEV      = syscall.Errno(0x13)
    	ENOENT      = syscall.Errno(0x2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    	// Allocate starting block
    	s.f.Entry = s.f.NewBlock(ssa.BlockPlain)
    	s.f.Entry.Pos = fn.Pos()
    	s.f.IsPgoHot = isPgoHot
    
    	if printssa {
    		ssaDF := ssaDumpFile
    		if ssaDir != "" {
    			ssaDF = filepath.Join(ssaDir, base.Ctxt.Pkgpath+"."+s.f.NameABI()+".html")
    			ssaD := filepath.Dir(ssaDF)
    			os.MkdirAll(ssaD, 0755)
    		}
    		s.f.HTMLWriter = ssa.NewHTMLWriter(ssaDF, s.f, ssaDumpCFG)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    		return nil, time.Time{}, err
    	}
    	defer f.Close()
    	stat, err := f.Stat()
    	if err != nil {
    		return nil, time.Time{}, err
    	}
    	if stat.IsDir() {
    		return nil, time.Time{}, &os.PathError{
    			Op:   "open",
    			Path: itemPath,
    			Err:  syscall.EISDIR,
    		}
    	}
    	buf, err := readXLMetaNoData(f, stat.Size())
    	if err != nil {
    		return nil, stat.ModTime().UTC(), fmt.Errorf("%w -> %s", err, itemPath)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  9. pkg/apis/core/validation/validation_test.go

    						Items: []core.KeyToPath{{
    							Key:  "key",
    							Path: "filename",
    							Mode: utilpointer.Int32(0644),
    						}},
    					},
    				},
    			},
    		}, {
    			name: "valid Secret with subdir projection",
    			vol: core.Volume{
    				Name: "secret",
    				VolumeSource: core.VolumeSource{
    					Secret: &core.SecretVolumeSource{
    						SecretName: "my-secret",
    						Items: []core.KeyToPath{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top