Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,208 for fileNames (0.13 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CompilationOutputsFixture.groovy

        }
    
        //asserts file changed/added since last snapshot
        void recompiledFile(String fileName) {
            recompiledFiles(fileName)
        }
    
        //asserts files changed/added since last snapshot
        void recompiledFiles(String... fileNames) {
            def expectedNames = fileNames.collect({ removeExtension(it) }) as Set
            assert changedFileNames == expectedNames
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/builder_flags.go

    }
    
    // NewResourceBuilderFlags returns a default ResourceBuilderFlags
    func NewResourceBuilderFlags() *ResourceBuilderFlags {
    	filenames := []string{}
    
    	return &ResourceBuilderFlags{
    		FileNameFlags: &FileNameFlags{
    			Usage:     "identifying the resource.",
    			Filenames: &filenames,
    			Recursive: boolPtr(true),
    		},
    	}
    }
    
    // WithFile sets the FileNameFlags.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 13 10:28:09 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

                    abstract val expected: ListProperty<String>
    
                    @TaskAction
                    fun verify() {
                        val fileNames = files.files.map(File::getName)
                        assert(fileNames == expected.get()) { "Expected \${expected.get()} but got \$fileNames" }
                    }
                }
            """
        }
    
        def "no name conflicting accessors of different catalogs"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. src/go/types/self_test.go

    }
    
    func pkgFiles(fset *token.FileSet, path string) ([]*ast.File, error) {
    	filenames, err := pkgFilenames(path, true) // from stdlib_test.go
    	if err != nil {
    		return nil, err
    	}
    
    	var files []*ast.File
    	for _, filename := range filenames {
    		file, err := parser.ParseFile(fset, filename, nil, 0)
    		if err != nil {
    			return nil, err
    		}
    		files = append(files, file)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:39:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. src/compress/zlib/writer_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package zlib
    
    import (
    	"bytes"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"os"
    	"testing"
    )
    
    var filenames = []string{
    	"../testdata/gettysburg.txt",
    	"../testdata/e.txt",
    	"../testdata/pi.txt",
    }
    
    var data = []string{
    	"test a reasonable sized string that can be compressed",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    }
    
    TEST_P(ModularFileSystemTest, TestFilesExist) {
      const std::vector<std::string> filenames = {GetURIForPath("a"),
                                                  GetURIForPath("b")};
      for (const auto& filename : filenames) {
        std::unique_ptr<WritableFile> file;
        Status status = env_->NewWritableFile(filename, &file);
        if (!status.ok())
          GTEST_SKIP() << "NewWritableFile() not supported: " << status;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  7. src/go/doc/testdata/issue17788.2.golden

    // 
    PACKAGE issue17788
    
    IMPORTPATH
    	testdata/issue17788
    
    FILENAMES
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 15:59:01 UTC 2016
    - 91 bytes
    - Viewed (0)
  8. src/go/doc/testdata/issue17788.0.golden

    // 
    PACKAGE issue17788
    
    IMPORTPATH
    	testdata/issue17788
    
    FILENAMES
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 15:59:01 UTC 2016
    - 91 bytes
    - Viewed (0)
  9. src/go/doc/testdata/issue16153.0.golden

    // 
    PACKAGE issue16153
    
    IMPORTPATH
    	testdata/issue16153
    
    FILENAMES
    	testdata/issue16153.go
    
    CONSTANTS
    	// 
    	const (
    		X3	int64	= iota
    		Y3		= 1
    	)
    
    	// 
    	const (
    		X4	int64	= iota
    		Y4
    	)
    
    	// original test case 
    	const (
    		Y1 = 256
    	)
    
    	// variations 
    	const (
    		Y2 uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:01:14 UTC 2017
    - 277 bytes
    - Viewed (0)
  10. src/go/doc/testdata/issue16153.2.golden

    // 
    PACKAGE issue16153
    
    IMPORTPATH
    	testdata/issue16153
    
    FILENAMES
    	testdata/issue16153.go
    
    CONSTANTS
    	// 
    	const (
    		X3	int64	= iota
    		Y3		= 1
    	)
    
    	// 
    	const (
    		X4	int64	= iota
    		Y4
    	)
    
    	// original test case 
    	const (
    		Y1 = 256
    	)
    
    	// variations 
    	const (
    		Y2 uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:01:14 UTC 2017
    - 277 bytes
    - Viewed (0)
Back to top