Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fileset (0.31 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def fileSet = [new File("somePath")] as Set
            resolver.resolveGraph(configuration) >> graphResolved(fileSet)
    
            when:
            def files = configuration.files(Mock(Dependency))
    
            then:
            files == fileSet
            configuration.state == RESOLVED
        }
    
        def filesWithSpec() {
            def configuration = conf()
            def fileSet = [new File("somePath")] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("target", pom.getValue("build/plugins[1]/configuration/domParam/copy/fileset/@dir"));
            assertNull(pom.getValue("build/plugins[1]/configuration/domParam/copy/fileset/@todir"));
            assertNull(pom.getValue("build/plugins[1]/configuration/domParam/copy/fileset/@overwrite"));
        }
    
        /** MNG-4053*/
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  3. 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)
  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/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)
  6. src/cmd/link/internal/ld/elf.go

    	ph.Memsz = seg.Length
    	ph.Off = seg.Fileoff
    	ph.Filesz = seg.Filelen
    	ph.Align = uint64(*FlagRound)
    
    	return ph
    }
    
    func elfphrelro(seg *sym.Segment) {
    	ph := newElfPhdr()
    	ph.Type = elf.PT_GNU_RELRO
    	ph.Flags = elf.PF_R
    	ph.Vaddr = seg.Vaddr
    	ph.Paddr = seg.Vaddr
    	ph.Memsz = seg.Length
    	ph.Off = seg.Fileoff
    	ph.Filesz = seg.Filelen
    	ph.Align = uint64(*FlagRound)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    /* ========================================================================== Forms ========================================================================== */
    /** Define consistent border, margin, and padding. */
    fieldset {
    	border: 1px solid #c0c0c0;
    	margin: 0 2px;
    	padding: 0.35em 0.625em 0.75em;
    }
    
    /** 1. Correct `color` not being inherited in IE 8/9. 2. Remove padding so people aren't caught out if they zero out fieldsets. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top