Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for _noinline (0.19 sec)

  1. cmd/xl-storage.go

    		if legacyPreserved {
    			s.deleteFile(dstVolumeDir, legacyDataPath, true, false)
    		}
    		return res, osErrToFileErr(err)
    	}
    	diskHealthCheckOK(ctx, err)
    
    	notInline := srcDataPath != "" && len(fi.Data) == 0 && fi.Size > 0
    	if notInline {
    		if healing {
    			// renameAll only for objects that have xl.meta not saved inline.
    			// this must be done in healing only, otherwise it is expected
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  2. cmd/erasure-object_test.go

    	err = objLayer.MakeBucket(ctx, "testbucket", MakeBucketOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Unzip sample object data to the existing disks
    	err = unzipArchive("testdata/xl-meta-inline-notinline.zip", path)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Try to read the object and check its md5sum
    	gr, err := objLayer.GetObjectNInfo(ctx, "testbucket", "file", nil, nil, ObjectOptions{})
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # endif
    
    #endif  // _MSC_VER
    
    #ifndef GTEST_API_
    # define GTEST_API_
    #endif
    
    #ifdef __GNUC__
    // Ask the compiler to never inline a given function.
    # define GTEST_NO_INLINE_ __attribute__((noinline))
    #else
    # define GTEST_NO_INLINE_
    #endif
    
    // _LIBCPP_VERSION is defined by the libc++ library from the LLVM project.
    #if defined(__GLIBCXX__) || defined(_LIBCPP_VERSION)
    # define GTEST_HAS_CXXABI_H_ 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # endif
    
    #endif  // _MSC_VER
    
    #ifndef GTEST_API_
    # define GTEST_API_
    #endif
    
    #ifdef __GNUC__
    // Ask the compiler to never inline a given function.
    # define GTEST_NO_INLINE_ __attribute__((noinline))
    #else
    # define GTEST_NO_INLINE_
    #endif
    
    // _LIBCPP_VERSION is defined by the libc++ library from the LLVM project.
    #if defined(__GLIBCXX__) || defined(_LIBCPP_VERSION)
    # define GTEST_HAS_CXXABI_H_ 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top