Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for asFile (0.19 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    @InputArtifact
                    abstract Provider<FileSystemLocation> getInputArtifact()
    
                    private File getInput() {
                        inputArtifact.get().asFile
                    }
    
                    void transform(TransformOutputs outputs) {
                        def output = outputs.file(input.name + ".txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                    @InputArtifact
                    abstract Provider<FileSystemLocation> getInputArtifact()
    
                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        def output = outputs.file(input.name + ".txt")
                        assert output.parentFile.directory && output.parentFile.list().length == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		switch cfg.Goos {
    		case "aix", "android", "dragonfly", "freebsd", "illumos", "linux", "netbsd", "openbsd", "solaris":
    			asmfile, err := b.gccgoBuildIDFile(a)
    			if err != nil {
    				return err
    			}
    			ofiles, err := BuildToolchain.asm(b, a, []string{asmfile})
    			if err != nil {
    				return err
    			}
    			objects = append(objects, ofiles...)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

    /**
     * Tests to see if the file this <code>SmbFile</code> represents is not a directory.
     *
     * @return <code>true</code> if this <code>SmbFile</code> is not a directory
     */
    
        public boolean isFile() throws SmbException {
            if( getUncPath0().length() == 1 ) {
                return false;
            }
            exists();
            return ( attributes & ATTR_DIRECTORY ) == 0;
        }
    
    /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    	{ASETEQ, yscond, Pb, opBytes{0x0f, 0x94, 00}},
    	{ASETGE, yscond, Pb, opBytes{0x0f, 0x9d, 00}},
    	{ASETGT, yscond, Pb, opBytes{0x0f, 0x9f, 00}},
    	{ASETHI, yscond, Pb, opBytes{0x0f, 0x97, 00}},
    	{ASETLE, yscond, Pb, opBytes{0x0f, 0x9e, 00}},
    	{ASETLS, yscond, Pb, opBytes{0x0f, 0x96, 00}},
    	{ASETLT, yscond, Pb, opBytes{0x0f, 0x9c, 00}},
    	{ASETMI, yscond, Pb, opBytes{0x0f, 0x98, 00}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top