Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 485 for filename (0.16 sec)

  1. src/cmd/compile/internal/types2/check_test.go

    		t.Error(err)
    		return
    	}
    
    	var filenames []string
    	for _, fi := range fis {
    		filenames = append(filenames, filepath.Join(dir, fi.Name()))
    	}
    
    	t.Run(filepath.Base(dir), func(t *testing.T) {
    		testPkg(t, filenames, colDelta, manual)
    	})
    }
    
    func testPkg(t *testing.T, filenames []string, colDelta uint, manual bool) {
    	srcs := make([][]byte, len(filenames))
    	for i, filename := range filenames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. istioctl/pkg/validate/validate_test.go

    			args:      []string{"--filename", validFilenameJSON, "--filename", tempDirJSON, "--filename", validTempDirJSON},
    			wantError: true, // Since the directory has invalid files
    		},
    		{
    			name:      "validate mix of yaml and json directories with valid files",
    			args:      []string{"--filename", validTempDirYAML, "--filename", validTempDirJSON},
    			wantError: false,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  3. src/cmd/internal/src/pos.go

    // For positions in different files, ordering is by filename.
    func (p Pos) Before(q Pos) bool {
    	n, m := p.Filename(), q.Filename()
    	return n < m || n == m && p.lico < q.lico
    }
    
    // After reports whether the position p comes after q in the source.
    // For positions in different files, ordering is by filename.
    func (p Pos) After(q Pos) bool {
    	n, m := p.Filename(), q.Filename()
    	return n > m || n == m && p.lico > q.lico
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  4. src/go/ast/filter.go

    	// all package files. Also, compute sorted list of filenames, so that
    	// subsequent iterations can always iterate in the same order.
    	ndocs := 0
    	ncomments := 0
    	ndecls := 0
    	filenames := make([]string, len(pkg.Files))
    	var minPos, maxPos token.Pos
    	i := 0
    	for filename, f := range pkg.Files {
    		filenames[i] = filename
    		i++
    		if f.Doc != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractKotlinIntegrationTest.kt

        protected
        fun withClassJar(fileName: String, vararg classes: Class<*>) =
            withZip(fileName, classEntriesFor(*classes))
    
        protected
        fun withZip(fileName: String, entries: Sequence<Pair<String, ByteArray>>): File =
            newFile(fileName).also {
                zipTo(it, entries)
            }
    
        protected
        fun newFile(fileName: String): File {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 16:44:39 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerificationConfiguration.java

            private final String name;
            private final String version;
            private final String fileName;
            private final boolean regex;
            private final String reason;
    
            TrustCoordinates(@Nullable String group, @Nullable String name, @Nullable String version, @Nullable String fileName, boolean regex, @Nullable String reason) {
                this.group = group;
                this.name = name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/stdlib_test.go

    		return nil, nil
    	}
    	var filenames []string
    	for _, name := range pkg.GoFiles {
    		filenames = append(filenames, filepath.Join(pkg.Dir, name))
    	}
    	if includeTest {
    		for _, name := range pkg.TestGoFiles {
    			filenames = append(filenames, filepath.Join(pkg.Dir, name))
    		}
    	}
    	return filenames, nil
    }
    
    func walkPkgDirs(dir string, pkgh func(dir string, filenames []string), errh func(args ...interface{})) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache_test.cc

      TF_EXPECT_OK(ReadCache(&cache, filename, 0, 16, &out));
      EXPECT_EQ(calls, 1);
    
      // Second read. Hit cache.
      EXPECT_TRUE(cache.ValidateAndUpdateFileSignature(filename, 123));
      TF_EXPECT_OK(ReadCache(&cache, filename, 0, 16, &out));
      EXPECT_EQ(calls, 1);
    
      // Third read. File signatures are different.
      EXPECT_FALSE(cache.ValidateAndUpdateFileSignature(filename, 321));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:57 UTC 2021
    - 23.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/noder/noder.go

    	go func() {
    		for i, filename := range filenames {
    			filename := filename
    			p := noders[i]
    			sem <- struct{}{}
    			go func() {
    				defer func() { <-sem }()
    				defer close(p.err)
    				fbase := syntax.NewFileBase(filename)
    
    				f, err := os.Open(filename)
    				if err != nil {
    					p.error(syntax.Error{Msg: err.Error()})
    					return
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. cmd/admin-bucket-handlers.go

    			continue
    		}
    		bucket, fileName := slc[0], slc[1]
    		if fileName == objectLockConfig {
    			reader, err := file.Open()
    			if err != nil {
    				rpt.SetStatus(bucket, fileName, err)
    				continue
    			}
    			config, err := objectlock.ParseObjectLockConfig(reader)
    			if err != nil {
    				rpt.SetStatus(bucket, fileName, fmt.Errorf("%s (%s)", errorCodes[ErrMalformedXML].Description, err))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top