Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,322 for filename (0.24 sec)

  1. hack/boilerplate/boilerplate.py

        return regexs
    
    
    def main():
        regexs = get_regexs()
        refs = get_refs()
        filenames = get_files(refs)
    
        for filename in filenames:
            if not file_passes(filename, refs, regexs):
                print(filename)
    
        return 0
    
    
    if __name__ == "__main__":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/initialization/ClassLoaderScopeOrigin.java

        class Script implements ClassLoaderScopeOrigin {
            private final String fileName;
            private final DisplayName longDisplayName;
            private final DisplayName shortDisplayName;
    
            public Script(String fileName, DisplayName longDisplayName, DisplayName shortDisplayName) {
                this.fileName = fileName;
                this.longDisplayName = longDisplayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 03 03:20:08 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    }
    
    // stdlibPackage returns the standard library package for the given filename.
    // If the filename does not represent a package, it returns the empty string.
    // A filename represents package P if it is in a directory matching the glob
    // "*stdlib/*minor/P".
    func stdlibPackage(filename string) string {
    	dir, rest, _ := strings.Cut(filename, "/")
    	if !strings.HasSuffix(dir, "stdlib") {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/JansiLibrary.java

    public class JansiLibrary {
        private final String platform;
        private final String filename;
    
        public JansiLibrary(String platform, String filename) {
            this.platform = platform;
            this.filename = filename;
        }
    
        public String getPlatform() {
            return platform;
        }
    
        public String getFilename() {
            return filename;
        }
    
        public String getPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. operator/pkg/manifest/shared_test.go

    			if err != nil {
    				t.Errorf("os.ReadFile() error = %v, filename: %v", err, outPath)
    			}
    
    			stdinReader := &bytes.Buffer{}
    
    			var filenames []string
    			for _, ol := range tt.overlays {
    				filename := filepath.Join(inDir, ol+".yaml")
    				if tt.stdin {
    					b, err := os.ReadFile(filename)
    					if err != nil {
    						t.Fatalf("os.ReadFile() error = %v, filenaem: %v", err, filename)
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 23 16:28:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                fileType = 2;
            } else if (fileName.endsWith(".bulk")) {
                fileType = 3;
            } else if (fileName.startsWith("fess") && fileName.endsWith(".json")) {
                fileType = 4;
            } else if (fileName.startsWith("doc") && fileName.endsWith(".json")) {
                fileType = 5;
            } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolverTest.groovy

            given:
            def header = systemIncludeDir.createFile("test.h")
    
            macros << macro("FILE_NAME", '"test.h"')
            macros << macro("FUNCTION_NAME", 'FILENAME')
            macroFunctions << macroFunction("FILENAME(X)", "FILE##X")
            macroFunctions << macroFunction("TEST2(X, Y)", "X##Y")
            macroFunctions << macroFunction("TEST(X, Y)", "TEST2(X, (Y))")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/ScalaAnnotationProcessingIntegrationTest.groovy

                    @Internal
                    String fileName
    
                    FileNameProvider(String fileName) {
                        this.fileName = fileName
                    }
    
                    @Override
                    List<String> asArguments() {
                        ["-AfileName=\${fileName}".toString()]
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top