Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 126 for REVERSED (0.14 sec)

  1. guava/src/com/google/common/collect/Lists.java

      public static <T extends @Nullable Object> List<T> reverse(List<T> list) {
        if (list instanceof ImmutableList) {
          // Avoid nullness warnings.
          List<?> reversed = ((ImmutableList<?>) list).reverse();
          @SuppressWarnings("unchecked")
          List<T> result = (List<T>) reversed;
          return result;
        } else if (list instanceof ReverseList) {
          return ((ReverseList<T>) list).getForwardList();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  2. pkg/slices/slices.go

    }
    
    // First returns the first item in the slice, if there is one
    func First[E any](s []E) *E {
    	if len(s) == 0 {
    		return nil
    	}
    	return &s[0]
    }
    
    // Reverse returns its argument array reversed
    func Reverse[E any](r []E) []E {
    	for i, j := 0, len(r)-1; i < len(r)/2; i, j = i+1, j-1 {
    		r[i], r[j] = r[j], r[i]
    	}
    	return r
    }
    
    func BinarySearch[S ~[]E, E cmp.Ordered](x S, target E) (int, bool) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Lists.java

      public static <T extends @Nullable Object> List<T> reverse(List<T> list) {
        if (list instanceof ImmutableList) {
          // Avoid nullness warnings.
          List<?> reversed = ((ImmutableList<?>) list).reverse();
          @SuppressWarnings("unchecked")
          List<T> result = (List<T>) reversed;
          return result;
        } else if (list instanceof ReverseList) {
          return ((ReverseList<T>) list).getForwardList();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadcode.go

    				reachable[c.ID] = true
    				p = append(p, c) // push
    			}
    		}
    	}
    	return reachable
    }
    
    // liveValues returns the live values in f and a list of values that are eligible
    // to be statements in reversed data flow order.
    // The second result is used to help conserve statement boundaries for debugging.
    // reachable is a map from block ID to whether the block is reachable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    2034          ; mapped                 ; 2032 2032 2032 #1.1  TRIPLE PRIME
    2035          ; valid                  ;      ; NV8    # 1.1  REVERSED PRIME
    2036          ; mapped                 ; 2035 2035     # 1.1  REVERSED DOUBLE PRIME
    2037          ; mapped                 ; 2035 2035 2035 #1.1  REVERSED TRIPLE PRIME
    2038..203B    ; valid                  ;      ; NV8    # 1.1  CARET..REFERENCE MARK
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/initorder.go

    	if debug {
    		fmt.Println()
    		fmt.Println("Initialization order:")
    		for _, init := range check.Info.InitOrder {
    			fmt.Printf("\t%s\n", init)
    		}
    		fmt.Println()
    	}
    }
    
    // findPath returns the (reversed) list of objects []Object{to, ... from}
    // such that there is a path of object dependencies from 'from' to 'to'.
    // If there is no such path, the result is nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		return true
    	}
    	return false
    }
    
    func reverseOperandOrder(op Op) bool {
    	switch op {
    	// Special case for SUBF, SUBFC: not reversed
    	case ADD, ADDC, ADDE, ADDCC, ADDCCC:
    		return true
    	case MULLW, MULLWCC, MULHW, MULHWCC, MULLD, MULLDCC, MULHD, MULHDCC, MULLWO, MULLWOCC, MULHWU, MULHWUCC, MULLDO, MULLDOCC:
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  8. src/go/types/initorder.go

    	if debug {
    		fmt.Println()
    		fmt.Println("Initialization order:")
    		for _, init := range check.Info.InitOrder {
    			fmt.Printf("\t%s\n", init)
    		}
    		fmt.Println()
    	}
    }
    
    // findPath returns the (reversed) list of objects []Object{to, ... from}
    // such that there is a path of object dependencies from 'from' to 'to'.
    // If there is no such path, the result is nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                List<Binding<Q>> bindingList = new ArrayList<>(res);
                Comparator<Binding<Q>> comparing = Comparator.comparing(Binding::getPriority);
                bindingList.sort(comparing.reversed());
                Binding<Q> binding = bindingList.get(0);
                return compile(binding);
            }
            if (key.getRawType() == List.class) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. cmd/kube-proxy/app/server_test.go

    					ClusterCIDR: "10.0.0.0/8,fd01:2345::/64",
    				},
    				PrimaryIPFamily: v1.IPv4Protocol,
    			},
    			ssErr: false,
    			dsErr: false,
    		},
    		{
    			name: "ok reversed dual-stack clusterCIDR",
    			proxy: &ProxyServer{
    				Config: &kubeproxyconfig.KubeProxyConfiguration{
    					ClusterCIDR: "fd01:2345::/64,10.0.0.0/8",
    				},
    				PrimaryIPFamily: v1.IPv4Protocol,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top