Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Flip (0.48 sec)

  1. guava/src/com/google/common/primitives/UnsignedBytes.java

        checkNotNull(array);
        checkPositionIndexes(fromIndex, toIndex, array.length);
        for (int i = fromIndex; i < toIndex; i++) {
          array[i] = flip(array[i]);
        }
        Arrays.sort(array, fromIndex, toIndex);
        for (int i = fromIndex; i < toIndex; i++) {
          array[i] = flip(array[i]);
        }
      }
    
      /**
       * Sorts the elements of {@code array} in descending order, interpreting them as unsigned 8-bit
       * integers.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/UnsignedBytes.java

        checkNotNull(array);
        checkPositionIndexes(fromIndex, toIndex, array.length);
        for (int i = fromIndex; i < toIndex; i++) {
          array[i] = flip(array[i]);
        }
        Arrays.sort(array, fromIndex, toIndex);
        for (int i = fromIndex; i < toIndex; i++) {
          array[i] = flip(array[i]);
        }
      }
    
      /**
       * Sorts the elements of {@code array} in descending order, interpreting them as unsigned 8-bit
       * integers.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-utils_test.go

    			if got := hashDeterministicString(m); got == want {
    				t.Errorf("hashDeterministicString() = %v, does not want %v", got, want)
    			}
    
    			// Flip key/value
    			want = hashDeterministicString(m)
    			delete(m, "another")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/endpointshards.go

    		// but we should not delete the keys from EndpointIndex map - that will trigger
    		// unnecessary full push which can become a real problem if a pod is in crashloop and thus endpoints
    		// flip flopping between 1 and 0.
    		e.DeleteServiceShard(shard, hostname, namespace, true)
    		log.Infof("Incremental push, service %s at shard %v has no endpoints", hostname, shard)
    		return IncrementalPush
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    }
    
    def TF_InvertOp : TF_Op<"Invert", [Pure, TF_Involution, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = [{
    Invert (flip) each bit of supported types; for example, type `uint8` value 01010101 becomes 10101010.
      }];
    
      let description = [{
    Flip each bit of supported types.  For example, type `int8` (decimal 2) binary 00000010 becomes (decimal -3) binary 11111101.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    		}
    	}
    	modRootContainingCWD := findModuleRoot(base.Cwd())
    	mainModules := &MainModuleSet{
    		versions:        slices.Clip(ms),
    		inGorootSrc:     map[module.Version]bool{},
    		pathPrefix:      map[module.Version]string{},
    		modRoot:         map[module.Version]string{},
    		modFiles:        map[module.Version]*modfile.File{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

      # a placeholder to create an external vSwitch. This is purely for convenience
      # to be able to remove/modify the actual HNS network ("cbr0") or rejoin the
      # nodes without a network blip. Creating a vSwitch takes time, causes network
      # blips, and it makes it more likely to hit the issue where flanneld is
      # stuck, so we want to do this as rarely as possible."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    			var to string
    			if cfg.BuildContext.GOOS == "windows" {
    				to = filepath.Join(`\\_\_`, toPath)
    			} else {
    				to = filepath.Join("/_", toPath)
    			}
    			flags = append(slices.Clip(flags), prefixMapFlag+"="+from+"="+to)
    		}
    	}
    
    	// Tell gcc to not insert truly random numbers into the build process
    	// this ensures LTO won't create random numbers for symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top