Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,556 for wide (0.17 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/windows-resources/groovy/src/hello/cpp/hello.cpp

    {
        HINSTANCE instance = GetModuleHandle("hello");
        WCHAR * pBuf = NULL;
        int len = LoadStringW(instance, stringID, reinterpret_cast<LPWSTR>(&pBuf), 0);
        std::wstring wide = std::wstring(pBuf, len);
        return std::string(wide.begin(), wide.end());
    }
    
    void hello() {
        std::string hello = LoadStringFromResource(IDS_HELLO);
        std::cout << hello << std::endl;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 528 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

      // to 'Unicode', UTF-16.
    
      // Creates a UTF-16 wide string from the given ANSI string, allocating
      // memory using new. The caller is responsible for deleting the return
      // value using delete[]. Returns the wide string, or NULL if the
      // input is NULL.
      //
      // The wide string is created using the ANSI codepage (CP_ACP) to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

      // to 'Unicode', UTF-16.
    
      // Creates a UTF-16 wide string from the given ANSI string, allocating
      // memory using new. The caller is responsible for deleting the return
      // value using delete[]. Returns the wide string, or NULL if the
      // input is NULL.
      //
      // The wide string is created using the ANSI codepage (CP_ACP) to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateWindowsResourcesBaseNamesTestApp.groovy

    {
        HINSTANCE instance = GetModuleHandle("hello");
        WCHAR * pBuf = NULL;
        int len = LoadStringW(instance, stringID, reinterpret_cast<LPWSTR>(&pBuf), 0);
        std::wstring wide = std::wstring(pBuf, len);
        return std::string(wide.begin(), wide.end());
    }
    
    void hello() {
        std::string foo1 = LoadStringFromResource(IDS_FOO1);
        std::string foo2 = LoadStringFromResource(IDS_FOO2);
        std::cout << foo1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/WindowsResourceHelloWorldApp.groovy

    {
        HINSTANCE instance = GetModuleHandle("hello");
        WCHAR * pBuf = NULL;
        int len = LoadStringW(instance, stringID, reinterpret_cast<LPWSTR>(&pBuf), 0);
        std::wstring wide = std::wstring(pBuf, len);
        return std::string(wide.begin(), wide.end());
    }
    
    void DLL_FUNC hello() {
        std::string hello = LoadStringFromResource(IDS_HELLO);
        std::cout << hello;
    }
    """),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/rc/WindowsResourcesIntegrationTest.groovy

                    WCHAR * pBuf = NULL;
                    int len = LoadStringW(instance, stringID, reinterpret_cast<LPWSTR>(&pBuf), 0);
                    std::wstring wide = std::wstring(pBuf, len);
                    return std::string(wide.begin(), wide.end());
                }
    
                int main() {
                    std::string hello = LoadStringFromResource(IDS_HELLO);
                    std::cout << hello;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

        /**
         * Should we generate a deep and wide hierarchy ("worst case" scenario) or only a wide hierarchy?
         * <p>
         *     With a wide hierarchy, each group of libraries depend only on each other. There's a limited depth (~7) and
         *     several projects.  This tries to replicate a project with many subgroups of interconnected components.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  8. src/math/big/natdiv.go

    	}
    
    	// Compute each wide digit of the quotient.
    	//
    	// TODO(rsc): Change the loop to be
    	//	for j := (m+B-1)/B*B; j > 0; j -= B {
    	// which will make the final step a regular step, letting us
    	// delete what amounts to an extra copy of the loop body below.
    	j := m
    	for j > B {
    		// Divide u[j-B:j+n] (3 wide digits) by v (2 wide digits).
    		// First make the 2-by-1-wide-digit guess using a recursive call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/authz/authorizationpolicies.go

    				c.Report(gvk.AuthorizationPolicy, msg.NewNoMatchingWorkloadsFound(r, apSelector.String()))
    			}
    		}
    
    		// If AuthzPolicy is mesh-wide and selectorless,
    		// no need to keep the analysis
    		return
    	}
    
    	// If the AuthzPolicy is namespace-wide and there are present Pods,
    	// no messages should be triggered.
    	if ap.GetSelector() == nil {
    		if len(podLabelsMap[apNs]) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 20:57:29 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1beta1/generated.proto

      // The set of valid time zone names and the time zone offset is loaded from the system-wide time zone
      // database by the API server during CronJob validation and the controller manager during execution.
      // If no system-wide time zone database can be found a bundled version of the database is used instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top