Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 717 for filename (0.21 sec)

  1. cmd/kubeadm/app/util/config/strict/strict_test.go

    	var testFiles = []struct {
    		fileName      string
    		kind          string
    		groupVersion  schema.GroupVersion
    		expectedError bool
    	}{
    		// tests with file errors
    		{
    			fileName:      "invalid_casesensitive_field.yaml",
    			kind:          constants.ClusterConfigurationKind,
    			groupVersion:  kubeadmapiv1.SchemeGroupVersion,
    			expectedError: true,
    		},
    		{
    			fileName:      "invalid_duplicate_field_clustercfg.yaml",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 17:37:41 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/GeneratedSingletonFileTree.java

        private final String fileName;
        private final Action<File> fileGenerationListener;
        private final Action<OutputStream> contentWriter;
    
        public GeneratedSingletonFileTree(Factory<File> tmpDirSource, String fileName, Action<File> fileGenerationListener, Action<OutputStream> contentWriter, FileSystem fileSystem) {
            this.tmpDirSource = tmpDirSource;
            this.fileName = fileName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ZipIntegrationTest.groovy

            theZip.hasDescendants("${filename}1.txt", "${filename}2.txt", "${filename}3.txt")
    
            where:
            metadataCharset                 | filename
            Charset.defaultCharset().name() | 'file'
            'UTF-8'                         | '中文'
            'ISO-8859-1'                    | 'ÈÇ'
        }
    
        def "can convert metadata to ASCII"() {
            given:
            def filename = 'file-éö'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/artifact/testutils/TestFileManager.java

            File file = new File(dir, filename);
    
            String contents = FileUtils.fileRead(file, encoding);
    
            assertEquals(contentsTest, contents);
        }
    
        public File createFile(File dir, String filename, String contents, String encoding) throws IOException {
            File file = new File(dir, filename);
    
            file.getParentFile().mkdirs();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/cached/DefaultCachedExternalResourceIndexTest.groovy

            def encoder = Mock(Encoder)
            def value = Mock(CachedExternalResource)
            def fileName = "file.txt"
    
            when:
            serializer.write(encoder, value)
    
            then:
            _ * value.getCachedFile() >> commonPath.resolve(fileName).toFile()
    
            1 * encoder.writeString(fileName)
        }
    
        def "value serializer can expand relative path"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/customPlugin/readme.xml

        <para>This sample contains the following projects:</para>
        <itemizedlist>
            <listitem>
                <para>The <filename>java-gradle-plugin</filename> directory contains the project that implements and publishes the plugin.</para>
            </listitem>
            <listitem>
                <para>The <filename>consumer</filename> directory contains the project that uses the plugin.</para>
            </listitem>
        </itemizedlist>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 563 bytes
    - Viewed (0)
  7. cmd/postpolicyform_test.go

    		{Bucket: "testbucket", Key: "user/user1/filename/${filename}/myfile.txt", XAmzMetaUUID: "14365123651274", SuccessActionStatus: "201", XAmzCredential: "KVGKMDUQ23TCZXTLTHLP/20160727/us-east-1/s3/aws4_request", XAmzDate: "20160727T000000Z", XAmzAlgorithm: "AWS4-HMAC-SHA256", ContentType: "image/jpeg", expectedErr: nil},
    		// Expired policy document
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  8. cni/pkg/install/binaries.go

    			if err := file.AtomicCopy(srcFilepath, targetDir, filename); err != nil {
    				installLog.Errorf("Failed file copy of %s to %s: %s", srcFilepath, targetDir, err.Error())
    				return copiedFilenames, err
    			}
    			installLog.Infof("Copied %s to %s.", filename, targetDir)
    		}
    
    		copiedFilenames.Insert(filename)
    	}
    
    	return copiedFilenames, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 19:10:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/test/util.go

    func SetupEmptyFiles(t *testing.T, tmpdir string, fileNames ...string) {
    	for _, fileName := range fileNames {
    		newFile, err := os.Create(filepath.Join(tmpdir, fileName))
    		if err != nil {
    			t.Fatalf("Error creating file %s in %s: %v", fileName, tmpdir, err)
    		}
    		newFile.Close()
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  10. pkg/test/framework/components/cluster/kube/cluster.go

    	_, _ = fmt.Fprint(buf, c.Topology.String())
    	_, _ = fmt.Fprintf(buf, "Filename:           %s\n", c.filename)
    
    	return buf.String()
    }
    
    // Filename of the kubeconfig file for this cluster.
    // TODO(nmittler): Remove the need for this by changing operator to use provided kube clients directly.
    func (c Cluster) Filename() string {
    	return c.filename
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 22:54:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top