Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for Traverse (0.23 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    static boolean isAlphanumericSpace(String); public static boolean isNumeric(String); public static boolean isNumericSpace(String); public static String defaultString(Object); public static String defaultString(Object, String); public static String reverse(String); public static String reverseDelimitedStri(String, String); private static void reverseArray(Object[]); public static String abbreviate(String, int); public static String abbreviate(String, int, int); public static String difference(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    				{Name: "HOST_IP", Value: testKubeletHostIP},
    				{Name: "HOST_IPS", Value: testKubeletHostIP + "," + testKubeletHostIPv6},
    			},
    		},
    		{
    			name:               "downward api pod ips reverse order",
    			ns:                 "downward-api",
    			enableServiceLinks: &falseValue,
    			container: &v1.Container{
    				Env: []v1.EnvVar{
    					{
    						Name: "POD_IP",
    						ValueFrom: &v1.EnvVarSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    static boolean isAlphanumericSpace(String); public static boolean isNumeric(String); public static boolean isNumericSpace(String); public static String defaultString(Object); public static String defaultString(Object, String); public static String reverse(String); public static String reverseDelimitedStri(String, String); private static void reverseArray(Object[]); public static String abbreviate(String, int); public static String abbreviate(String, int, int); public static String difference(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    	/* VSX shift */
    	{as: AXXSLDWI, a1: C_VSREG, a2: C_VSREG, a3: C_U15CON, a6: C_VSREG, type_: 90, size: 4}, /* vsx shift immediate, xx3-form */
    
    	/* VSX reverse bytes */
    	{as: AXXBRQ, a1: C_VSREG, a6: C_VSREG, type_: 101, size: 4}, /* vsx reverse bytes */
    
    	/* VSX scalar FP-FP conversion */
    	{as: AXSCVDPSP, a1: C_VSREG, a6: C_VSREG, type_: 89, size: 4}, /* vsx scalar fp-fp conversion, xx2-form */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	containerStatusesCopy := make([]*kubecontainer.Status, len(podStatus.ContainerStatuses))
    	copy(containerStatusesCopy, podStatus.ContainerStatuses)
    
    	// Make the latest container status comes first.
    	sort.Sort(sort.Reverse(kubecontainer.SortContainerStatusesByCreationTime(containerStatusesCopy)))
    	// Set container statuses according to the statuses seen in pod status
    	containerSeen := map[string]int{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    static boolean isAlphanumericSpace(String); public static boolean isNumeric(String); public static boolean isNumericSpace(String); public static String defaultString(Object); public static String defaultString(Object, String); public static String reverse(String); public static String reverseDelimitedStri(String, String); private static void reverseArray(Object[]); public static String abbreviate(String, int); public static String abbreviate(String, int, int); public static String difference(String,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 200.2K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/garbagecollector_test.go

    				createEvent(addEvent, "3", []string{"1", "2"}),
    				createEvent(addEvent, "4", []string{"3"}),
    				createEvent(updateEvent, "2", []string{"4"}),
    			},
    		},
    		{
    			name: "reverse test2",
    			events: []event{
    				createEvent(addEvent, "4", []string{"2"}),
    				createEvent(addEvent, "3", []string{"1", "2"}),
    				createEvent(addEvent, "2", []string{"1"}),
    				createEvent(addEvent, "1", []string{}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// then we do (SETL (InvertFlags (CMPQ b a))) instead.
    		// Rewrites will convert this to (SETG (CMPQ b a)).
    		// InvertFlags is a pseudo-op which can't appear in assembly output.
    		{name: "InvertFlags", argLength: 1}, // reverse direction of arg0
    
    		// Pseudo-ops
    		{name: "LoweredGetG", argLength: 1, reg: gp01}, // arg0=mem
    		// Scheduler ensures LoweredGetClosurePtr occurs only in entry block,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  9. src/database/sql/sql.go

    	var idleClosing int64
    	var closing []*driverConn
    	if db.maxIdleTime > 0 {
    		// As freeConn is ordered by returnedAt process
    		// in reverse order to minimise the work needed.
    		idleSince := nowFunc().Add(-db.maxIdleTime)
    		last := len(db.freeConn) - 1
    		for i := last; i >= 0; i-- {
    			c := db.freeConn[i]
    			if c.returnedAt.Before(idleSince) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go

    //go:build go1.10 && !go1.13
    
    package bidi
    
    // UnicodeVersion is the Unicode version from which the tables in this package are derived.
    const UnicodeVersion = "10.0.0"
    
    // xorMasks contains masks to be xor-ed with brackets to get the reverse
    // version.
    var xorMasks = []int32{ // 8 elements
    	0, 1, 6, 7, 3, 15, 29, 63,
    } // Size: 56 bytes
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 110.9K bytes
    - Viewed (0)
Back to top