Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,068 for 200G (0.13 sec)

  1. pkg/controller/volume/persistentvolume/index_test.go

    				UID:  "local-pd-very-large",
    				Name: "local001",
    			},
    			Spec: v1.PersistentVolumeSpec{
    				Capacity: v1.ResourceList{
    					v1.ResourceName(v1.ResourceStorage): resource.MustParse("200E"),
    				},
    				PersistentVolumeSource: v1.PersistentVolumeSource{
    					Local: &v1.LocalVolumeSource{},
    				},
    				AccessModes: []v1.PersistentVolumeAccessMode{
    					v1.ReadWriteOnce,
    					v1.ReadOnlyMany,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  2. src/time/example_test.go

    	t, _ = time.Parse("Jan 2, 2006 at 3:04pm (MST)", "Feb 3, 2013 at 7:54pm (UTC)")
    	fmt.Println(t.GoString())
    
    	// Output:
    	// time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC)
    	// time.Date(2009, time.November, 10, 23, 1, 0, 0, time.UTC)
    	// time.Date(2009, time.December, 10, 23, 1, 0, 0, time.UTC)
    	// time.Date(2013, time.February, 3, 19, 54, 0, 0, time.UTC)
    }
    
    func ExampleParse() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    /*
     *  Automated Interface (generates HTML Report Files).
     *
     *  Feb 2002      Initial implementation (AK)
     *
     *  13-Feb-2002   Single interface to automated_run_tests. (AK)
     *
     *  20-Jul-2004   New interface, doxygen comments. (JDS)
     */
    
    /** @file
     * Automated testing interface with xml output (user interface).
     */
    /** @addtogroup Automated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/MyMem.h

     */
    
    /*
     *  Contains Memory Related Defines to use internal routines to detect Memory Leak
     *  in Debug Versions
     *
     *  18/Jun/2002   Memory Debug Functions. (AK)
     *
     *  17-Jul-2004   New interface for global function names. (JDS)
     *
     *  05-Sep-2004   Added internal test interface. (JDS)
     */
    
    /** @file
     *  Memory management functions (user interface).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Util.h

     *  CUnit project files.
     *
     *  13/Oct/2001   Moved some of the generic functions declarations from
     *                other files to this one so as to use the functions 
     *                consistently. This file is not included in the distribution 
     *                headers because it is used internally by CUnit. (AK)
     *
     *  20-Jul-2004   New interface, support for deprecated version 1 names. (JDS)
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

     */
    
    /*
     *  ASSERT Macro definitions and general CUnit configuration definitions.
     *
     *  09/Aug/2001   ASSERT definitions. (AK)
     *
     *  12/Mar/2003   New Assert definitions. (AK)
     *
     *  27/Jul/2003   Modified ASSERT_XXX Macro definitions. (AK)
     *
     *  15-Jul-2004   New interface, changed action on assert failure to not
     *                return, provided _FATAL versions of assertions to return
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Console.h

     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    /*
     *  Contains Interface for console Run tests.
     *
     *  Aug 2001      Initial implementation. (AK)
     *
     *  09/Aug/2001   Single interface to Console_run_tests. (AK)
     *
     *  20-Jul-2004   New interface, doxygen comments. (JDS)
     */
    
    /** @file
     * Console interface with interactive output (user interface).
     */
    /** @addtogroup Console
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/time/format_test.go

    	{Date(2009, February, 5, 5, 0, 57, 12345600, Local),
    		"time.Date(2009, time.February, 5, 5, 0, 57, 12345600, time.Local)"},
    	{Date(2009, February, 5, 5, 0, 57, 12345600, FixedZone("Europe/Berlin", 3*60*60)),
    		`time.Date(2009, time.February, 5, 5, 0, 57, 12345600, time.Location("Europe/Berlin"))`,
    	},
    	{Date(2009, February, 5, 5, 0, 57, 12345600, FixedZone("Non-ASCII character ⏰", 3*60*60)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     */
    
    /*
     *  Contains Interface to Run tests.
     *
     *  Aug 2001      Initial implementation. (AK)
     *
     *  09/Aug/2001   Contains generic run tests interface which can be used
     *                for any type of frontend interface framework. (AK)
     *
     *  24/Nov/2001   Added Handler for Group Initialization failure condition. (AK)
     *
     *  05-Aug-2004   New interface.  Since these should be internal functions,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  10. src/net/ip_test.go

    	{ParseIP("2001:db8:1:2::1"), &IPNet{IP: ParseIP("2001:db8:1::"), Mask: CIDRMask(47, 128)}, true},
    	{ParseIP("2001:db8:1:2::1"), &IPNet{IP: ParseIP("2001:db8:2::"), Mask: CIDRMask(47, 128)}, false},
    	{ParseIP("2001:db8:1:2::1"), &IPNet{IP: ParseIP("2001:db8:1::"), Mask: IPMask(ParseIP("ffff:0:ffff::"))}, true},
    	{ParseIP("2001:db8:1:2::1"), &IPNet{IP: ParseIP("2001:db8:1::"), Mask: IPMask(ParseIP("0:0:0:ffff::"))}, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top