Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 126 for REVERSED (0.09 sec)

  1. src/runtime/internal/sys/intrinsics.go

    // Len8 returns the minimum number of bits required to represent x; the result is 0 for x == 0.
    func Len8(x uint8) int {
    	return int(len8tab[x])
    }
    
    // Bswap64 returns its input with byte order reversed
    // 0x0102030405060708 -> 0x0807060504030201
    func Bswap64(x uint64) uint64 {
    	c8 := uint64(0x00ff00ff00ff00ff)
    	a := x >> 8 & c8
    	b := (x & c8) << 8
    	x = a | b
    	c16 := uint64(0x0000ffff0000ffff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:45 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. src/html/template/attr.go

    	"preload":     contentTypePlain,
    	"pubdate":     contentTypePlain,
    	"radiogroup":  contentTypePlain,
    	"readonly":    contentTypePlain,
    	"rel":         contentTypeUnsafe,
    	"required":    contentTypePlain,
    	"reversed":    contentTypePlain,
    	"rows":        contentTypePlain,
    	"rowspan":     contentTypePlain,
    	"sandbox":     contentTypeUnsafe,
    	"spellcheck":  contentTypePlain,
    	"scope":       contentTypePlain,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Comparators.java

       * k)), as opposed to e.g. {@code Stream.sorted(comparator.reversed()).limit(k)}, which currently
       * takes O(n log n) time and O(n) space.
       *
       * @throws IllegalArgumentException if {@code k < 0}
       * @since 22.0
       */
      public static <T extends @Nullable Object> Collector<T, ?, List<T>> greatest(
          int k, Comparator<? super T> comparator) {
        return least(k, comparator.reversed());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 08:42:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/Graphs.java

      }
    
      // Graph mutation methods
    
      // Graph view methods
    
      /**
       * Returns a view of {@code graph} with the direction (if any) of every edge reversed. All other
       * properties remain intact, and further updates to {@code graph} will be reflected in the view.
       */
      public static <N> Graph<N> transpose(Graph<N> graph) {
        if (!graph.isDirected()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/BiMap.java

     * that of its keys. This constraint enables bimaps to support an "inverse view", which is another
     * bimap containing the same entries as this bimap but with reversed keys and values.
     *
     * <h3>Implementations</h3>
     *
     * <ul>
     *   <li>{@link ImmutableBiMap}
     *   <li>{@link HashBiMap}
     *   <li>{@link EnumBiMap}
     *   <li>{@link EnumHashBiMap}
     * </ul>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/mergepatch/util_test.go

    			}
    			out, err = HasConflicts(testCase.B, testCase.A)
    			if err != nil {
    				t.Errorf("%v: unexpected error: %v", testStr, err)
    				break
    			}
    			if out != testCase.Ret {
    				t.Errorf("%v: expected reversed %t got %t", testStr, testCase.Ret, out)
    				break
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 11 09:16:00 UTC 2018
    - 4.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/BiMap.java

     * that of its keys. This constraint enables bimaps to support an "inverse view", which is another
     * bimap containing the same entries as this bimap but with reversed keys and values.
     *
     * <h3>Implementations</h3>
     *
     * <ul>
     *   <li>{@link ImmutableBiMap}
     *   <li>{@link HashBiMap}
     *   <li>{@link EnumBiMap}
     *   <li>{@link EnumHashBiMap}
     * </ul>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/Graphs.java

      }
    
      // Graph mutation methods
    
      // Graph view methods
    
      /**
       * Returns a view of {@code graph} with the direction (if any) of every edge reversed. All other
       * properties remain intact, and further updates to {@code graph} will be reflected in the view.
       */
      public static <N> Graph<N> transpose(Graph<N> graph) {
        if (!graph.isDirected()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.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
    - 8.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    	var cStatusResources *kubecontainer.ContainerResources
    	runtimeStatusResources := statusResources.GetWindows()
    	if runtimeStatusResources != nil {
    		var memLimit, cpuLimit *resource.Quantity
    
    		// Used the reversed formula from the calculateCPUMaximum function
    		if runtimeStatusResources.CpuMaximum > 0 {
    			cpuLimitValue := runtimeStatusResources.CpuMaximum * int64(winstats.ProcessorCount()) / 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top