Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,208 for fileNames (0.22 sec)

  1. src/go/doc/testdata/b.1.golden

    // 
    PACKAGE b
    
    IMPORTPATH
    	testdata/b
    
    IMPORTS
    	a
    
    FILENAMES
    	testdata/b.go
    
    CONSTANTS
    	// 
    	const Pi = 3.14	// Pi
    
    
    VARIABLES
    	// 
    	var MaxInt int	// MaxInt
    
    
    FUNCTIONS
    	// 
    	func F(x int) int
    
    	// Always under the package functions list. 
    	func NotAFactory() int
    
    
    TYPES
    	// 
    	type T struct{}	// T
    
    	// 
    	var V T	// v
    
    	// 
    	func (x *T) M()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. 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)
  3. src/go/doc/testdata/issue22856.0.golden

    // 
    PACKAGE issue22856
    
    IMPORTPATH
    	testdata/issue22856
    
    FILENAMES
    	testdata/issue22856.go
    
    FUNCTIONS
    	// NewPointerSliceOfSlice is not a factory function because slices ...
    	func NewPointerSliceOfSlice() [][]*T
    
    	// NewSlice3 is not a factory function because 3 nested slices of ...
    	func NewSlice3() [][][]T
    
    	// NewSliceOfSlice is not a factory function because slices of a ...
    	func NewSliceOfSlice() [][]T
    
    
    TYPES
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 654 bytes
    - Viewed (0)
  4. src/go/doc/testdata/issue22856.2.golden

    // 
    PACKAGE issue22856
    
    IMPORTPATH
    	testdata/issue22856
    
    FILENAMES
    	testdata/issue22856.go
    
    FUNCTIONS
    	// NewPointerSliceOfSlice is not a factory function because slices ...
    	func NewPointerSliceOfSlice() [][]*T
    
    	// NewSlice3 is not a factory function because 3 nested slices of ...
    	func NewSlice3() [][][]T
    
    	// NewSliceOfSlice is not a factory function because slices of a ...
    	func NewSliceOfSlice() [][]T
    
    
    TYPES
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 654 bytes
    - Viewed (0)
  5. src/go/doc/doc_test.go

    			}
    			doc, err := NewFromFiles(fset, files, importPath, mode)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			// golden files always use / in filenames - canonicalize them
    			for i, filename := range doc.Filenames {
    				doc.Filenames[i] = filepath.ToSlash(filename)
    			}
    
    			// print documentation
    			var buf bytes.Buffer
    			if err := templateTxt.Execute(&buf, bundle{doc, fset}); err != nil {
    				t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  6. hack/boilerplate/boilerplate_test.py

        Note: run this test from the hack/boilerplate directory.
    
        $ python -m unittest boilerplate_test
        """
    
        def test_boilerplate(self):
            os.chdir("test/")
    
            class Args:
                filenames = []
                rootdir = "."
                boilerplate_dir = "../"
                verbose = True
    
            # capture stdout
            old_stdout = sys.stdout
            sys.stdout = StringIO()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 09:05:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailure.java

            assertThat(this.lineNumbers, hasItem(equalTo(String.valueOf(lineNumber))));
            return this;
        }
    
        @Override
        public ExecutionFailure assertHasFileName(String filename) {
            assertThat(this.fileNames, hasItem(equalTo(filename)));
            return this;
        }
    
        @Override
        public ExecutionFailure assertHasFailures(int count) {
            problemsNotChecked.clear(); // this is a good enough check for now
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/internal/syscall/windows/sysdll/sysdll.go

    package sysdll
    
    // IsSystemDLL reports whether the named dll key (a base name, like
    // "foo.dll") is a system DLL which should only be loaded from the
    // Windows SYSTEM32 directory.
    //
    // Filenames are case sensitive, but that doesn't matter because
    // the case registered with Add is also the same case used with
    // LoadDLL later.
    //
    // It has no associated mutex and should only be mutated serially
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 22:38:00 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser_test.go

    		wg.Add(len(files))
    		for _, filename := range files {
    			go func(filename string) {
    				defer wg.Done()
    				action(filename)
    			}(filename)
    		}
    		wg.Wait()
    	} else {
    		for _, filename := range files {
    			action(filename)
    		}
    	}
    
    	for _, dir := range dirs {
    		walkDirs(t, dir, action)
    	}
    }
    
    func verifyPrint(t *testing.T, filename string, ast1 *File) {
    	var buf1 bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 16:30:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/go/doc/testdata/b.2.golden

    // 
    PACKAGE b
    
    IMPORTPATH
    	testdata/b
    
    IMPORTS
    	a
    
    FILENAMES
    	testdata/b.go
    
    CONSTANTS
    	// 
    	const (
    		C1	notExported	= iota
    		C2
    	
    		C4
    		C5
    	)
    
    	// 
    	const C notExported = 0
    
    	// 
    	const Pi = 3.14	// Pi
    
    
    VARIABLES
    	// 
    	var (
    		U1, U2, U4, U5	notExported
    	
    		U7	notExported	= 7
    	)
    
    	// 
    	var MaxInt int	// MaxInt
    
    	// 
    	var V notExported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 766 bytes
    - Viewed (0)
Back to top