Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 576 for FILE (0.07 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

    /*
     * Copyright 2013 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            given:
            def grandParent = tmpDir.file("grand-parent.xlm") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>different-group</groupId>
        <artifactId>grandparent</artifactId>
        <version>different-version</version>
    </project>
    """
    
            def parent = tmpDir.file("parent.xlm") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		},
    		{
    			name:     "valid file",
    			filepath: "testdata/valid-configs/secret-box-first.yaml",
    			wantHash: "k8s:enc:unstable:1:c638c0327dbc3276dd1fcf3e67895d19ebca16b91ae0d19af24ef0759b8e0f66",
    			wantErr:  ``,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	bdst := bytes.NewBufferString(readfile(src))
    	for _, file := range extra {
    		b := readfile(file)
    		// find last path element for archive member name
    		i := strings.LastIndex(file, "/") + 1
    		j := strings.LastIndex(file, `\`) + 1
    		if i < j {
    			i = j
    		}
    		fmt.Fprintf(bdst, "%-16.16s%-12d%-6d%-6d%-8o%-10d`\n", file[i:], 0, 0, 0, 0644, len(b))
    		bdst.WriteString(b)
    		if len(b)&1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(
                    new File(pom.getBasedir(), "target/classes/dir0"), new File((String) pom.getValue("properties/dir0")));
            assertEquals(new File(pom.getBasedir(), "src/test/dir1"), new File((String) pom.getValue("properties/dir1")));
            assertEquals(
                    new File(pom.getBasedir(), "target/site/dir2"), new File((String) pom.getValue("properties/dir2")));
        }
    
        @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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                        if (!expected.equals(pid)) {
                            LOGGER.warn("Ignoring parent Ivy file {}; expected {} but found {}", location, expected, pid);
                            parent = null;
                        }
                    }
    
                    // if the included ivy file is not found on file system, tries to resolve using
                    // repositories
                    if (parent == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/io/CopyUtil.java

        // from File to File
        //
        /**
         * ファイルからファイルへコピーします。
         *
         * @param in
         *            入力ファイル。{@literal null}であってはいけません
         * @param out
         *            出力ファイル。{@literal null}であってはいけません
         * @return コピーしたバイト数
         */
        public static int copy(final File in, final File out) {
            assertArgumentNotNull("in", in);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        println "processing [\${input.name}]"
                        assert input.file
                        for (def i : 1..parameters.multiplier.get()) {
                            def output = outputs.file(input.name + "." + parameters.targetColor.get() + "-" + i)
                            output.text = input.text + "-" + parameters.targetColor.get() + "-" + i
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    		{"go1.20", "go1.20.1", "go1.20"},     // file upgrade ignored
    		{"go1.20.1", "go1.20", "go1.20.1"},   // file upgrade ignored
    		{"go1.20.1", "go1.21", "go1.21"},     // file upgrade permitted
    		{"go1.20.1", "go1.19", "go1.20.1"},   // file downgrade not permitted
    		{"go1.21.1", "go1.19.1", "go1.21.1"}, // file downgrade not permitted (invalid file version)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[unix_file_permissions_deprecated]]
    ==== Unix mode based file permissions deprecated ====
    
    A new API for defining file permissions has been added in Gradle 8.3, see:
    
    - link:{javadocPath}/org/gradle/api/file/FilePermissions.html[FilePermissions].
    - link:{javadocPath}/org/gradle/api/file/ConfigurableFilePermissions.html[ConfigurableFilePermissions].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top