Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for fileset (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * Consider following example of ant target:
         * <pre>
         * &lt;target name='printChecksum'&gt;
         *   &lt;checksum property='checksumOut'&gt;
         *     &lt;fileset dir='.'&gt;
         *       &lt;include name='agile.txt'/&gt;
         *     &lt;/fileset&gt;
         *   &lt;/checksum&gt;
         *   &lt;echo&gt;The checksum is: ${checksumOut}&lt;/echo&gt;
         * &lt;/target&gt;
         * </pre>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

        }
                ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
        <class>
          <name>FileSet</name>
          <version>3.0.0+</version>
          <superClass>PatternSet</superClass>
          <description>A PatternSet for files.</description>
          <fields>
            <field>
              <name>directory</name>
              <version>3.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  3. src/go/types/issues_test.go

    	}
    
    	// run the test for all order permutations of the incoming files
    	for _, perm := range [][len(sources)]int{
    		{0, 1, 2},
    		{0, 2, 1},
    		{1, 0, 2},
    		{1, 2, 0},
    		{2, 0, 1},
    		{2, 1, 0},
    	} {
    		// create file order permutation
    		files := make([]*ast.File, len(sources))
    		for i := range perm {
    			files[i] = orig[perm[i]]
    		}
    
    		// type-check package with given file order permutation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/go/build/build.go

    	CFiles            []string // .c source files
    	CXXFiles          []string // .cc, .cpp and .cxx source files
    	MFiles            []string // .m (Objective-C) source files
    	HFiles            []string // .h, .hh, .hpp and .hxx source files
    	FFiles            []string // .f, .F, .for and .f90 Fortran source files
    	SFiles            []string // .s source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  5. src/cmd/cover/cover.go

    				outputfiles = outputfiles[1:]
    				numInputs := len(flag.Args())
    				numOutputs := len(outputfiles)
    				if numOutputs != numInputs {
    					return fmt.Errorf("number of output files (%d) not equal to number of input files (%d)", numOutputs, numInputs)
    				}
    				if err := readPackageConfig(*pkgcfg); err != nil {
    					return err
    				}
    				return nil
    			} else {
    				if *outfilelist != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. src/go/types/api_test.go

    	// order of the files, only on the presentation order to
    	// the type-checker.
    	for _, test := range []struct {
    		files []*ast.File
    		want  string
    	}{
    		{[]*ast.File{fileA, fileB}, "[a = 1 b = 2]"},
    		{[]*ast.File{fileB, fileA}, "[b = 2 a = 1]"},
    	} {
    		var info Info
    		if _, err := new(Config).Check("main", fset, test.files, &info); err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    type FieldMutationFunc func(obj runtime.Object, fieldSet fields.Set) error
    
    func DefaultClusterScopedAttr(obj runtime.Object) (labels.Set, fields.Set, error) {
    	metadata, err := meta.Accessor(obj)
    	if err != nil {
    		return nil, nil, err
    	}
    	fieldSet := fields.Set{
    		"metadata.name": metadata.GetName(),
    	}
    
    	return labels.Set(metadata.GetLabels()), fieldSet, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/os/types.go

    	// Mask for the type bits. For regular files, none will be set.
    	ModeType = fs.ModeType
    
    	ModePerm = fs.ModePerm // Unix permission bits, 0o777
    )
    
    func (fs *fileStat) Name() string { return fs.name }
    func (fs *fileStat) IsDir() bool  { return fs.Mode().IsDir() }
    
    // SameFile reports whether fi1 and fi2 describe the same file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. docs/ru/docs/tutorial/static-files.md

    Nils Lindemann <******@****.***> 1713469999 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. docs/tr/docs/tutorial/static-files.md

    Hasan Sezer Taşan <******@****.***> 1716249428 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 23:57:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top