Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,225 for file_name_ (0.16 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      // Gets the name of the source file where the test part took place, or
      // NULL if it's unknown.
      const char* file_name() const {
        return file_name_.empty() ? NULL : file_name_.c_str();
      }
    
      // Gets the line in the source file where the test part took place,
      // or -1 if it's unknown.
      int line_number() const { return line_number_; }
    
      // Gets the summary of the failure message.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

      // Gets the name of the source file where the test part took place, or
      // NULL if it's unknown.
      const char* file_name() const {
        return file_name_.empty() ? NULL : file_name_.c_str();
      }
    
      // Gets the line in the source file where the test part took place,
      // or -1 if it's unknown.
      int line_number() const { return line_number_; }
    
      // Gets the summary of the failure message.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

        java.lang.Exception: ouch
            at org.ClassName1.methodName1(FileName1.java:11)
            at org.ClassName2.methodName2(FileName2.java:22)
            at org.ClassName3.methodName3(FileName3.java:33)
    
            Caused by:
            java.lang.RuntimeException: oops
                at org.ClassName0.methodName0(FileName0.java:1)
                at org.ClassName1.methodName1(FileName1.java:10)
                ... 2 more
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/ShortExceptionFormatterTest.groovy

                new StackTraceElement("org.ClassName2", "methodName2", "FileName2.java", 22),
                new StackTraceElement("org.ClassName3", "methodName3", "FileName3.java", 33)
            ] as StackTraceElement[]
        }
    
        private createCauseTrace() {
            [
                new StackTraceElement("org.ClassName0", "methodName0", "FileName0.java", 1),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. src/cmd/gofmt/long_test.go

    	}
    }
    
    func testFiles(t *testing.T, filenames <-chan string, done chan<- int) {
    	b1 := new(bytes.Buffer)
    	b2 := new(bytes.Buffer)
    	for filename := range filenames {
    		testFile(t, b1, b2, filename)
    	}
    	done <- 0
    }
    
    func genFilenames(t *testing.T, filenames chan<- string) {
    	defer close(filenames)
    
    	handleFile := func(filename string, d fs.DirEntry, err error) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 20:27:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AntBuilderAwareUtil.groovy

            }
        }
    
        static def assertSetContains(FileCollection set, String... filenames) {
            assertSetContains(set, filenames as Set)
        }
    
        static def assertSetContainsForAllTypes(FileCollection set, String... filenames) {
            assertSetContains(set, filenames as Set, FileCollection.AntType.values() as List)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 5K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/tests/device_compiler_test_helper.cc

        absl::string_view file_prefix) {
      Env* env = Env::Default();
      std::vector<string> file_names;
      TF_RETURN_IF_ERROR(
          env->GetChildren(tensorflow::testing::TmpDir(), &file_names));
    
      bool altered = false;
      for (const auto& file_name : file_names) {
        if (absl::EndsWith(file_name, ".pb") &&
            absl::StartsWith(file_name, file_prefix)) {
          XlaSerializedCacheEntry entry;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/filename_flags.go

    	}
    
    	if o.Recursive != nil {
    		flags.BoolVarP(o.Recursive, "recursive", "R", *o.Recursive, "Process the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.")
    	}
    	if o.Filenames != nil {
    		flags.StringSliceVarP(o.Filenames, "filename", "f", *o.Filenames, o.Usage)
    		annotations := make([]string, 0, len(resource.FileExtensions))
    		for _, ext := range resource.FileExtensions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 13 10:28:09 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  9. src/go/types/check_test.go

    		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, manual)
    	})
    }
    
    func testPkg(t *testing.T, filenames []string, manual bool) {
    	srcs := make([][]byte, len(filenames))
    	for i, filename := range filenames {
    		src, err := os.ReadFile(filename)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. 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)
Back to top