Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 106 of 106 for preset (0.67 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    				// According to the arm64 specification, for instructions MOVB, MOVBU and FMOVB,
    				// the extension amount must be 0, encoded in "S" as 0 if omitted, or as 1 if present.
    				// But in Go, we don't distinguish between Rn.UXTW and Rn.UXTW<<0, so we encode it as
    				// that does not present. This makes no difference to the function of the instruction.
    				// This is also true for extensions LSL, SXTW and SXTX.
    				return roff(rm, 2, 2)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      gcloud compute instance-templates list \
        --filter="name ~ '${linux_filter}' OR name ~ '${windows_filter}'" \
        --project="${1}" --format='value(name)'
    }
    
    # Checks if there are any present resources related kubernetes cluster.
    #
    # Assumed vars:
    #   MASTER_NAME
    #   NODE_INSTANCE_PREFIX
    #   WINDOWS_NODE_INSTANCE_PREFIX
    #   ZONE
    #   REGION
    # Vars set:
    #   KUBE_RESOURCE_FOUND
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
    The tensor `keys` must of the same type as the keys of the table.
    The output `values` is of the type of the table values.
    
    The scalar `default_value` is the value output for keys not present in the
    table. It must also be of the same type as the table values.
      }];
    
      let arguments = (ins
        TFL_ResourceTensor:$hash_table,
        TFL_TensorOf<[I32, TFL_Str, I64]>:$keys,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

          return convert(bimap.inverse(), b);
        }
    
        private static <X, Y> Y convert(BiMap<X, Y> bimap, X input) {
          Y output = bimap.get(input);
          checkArgument(output != null, "No non-null mapping present for input: %s", input);
          return output;
        }
    
        @Override
        public boolean equals(@CheckForNull Object object) {
          if (object instanceof BiMapConverter) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

          return convert(bimap.inverse(), b);
        }
    
        private static <X, Y> Y convert(BiMap<X, Y> bimap, X input) {
          Y output = bimap.get(input);
          checkArgument(output != null, "No non-null mapping present for input: %s", input);
          return output;
        }
    
        @Override
        public boolean equals(@CheckForNull Object object) {
          if (object instanceof BiMapConverter) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (TST x0 x1:(SRAconst [c] y)) && clobberIfDead(x1) => (TSTshiftRA x0 y [c])
    (TST x0 x1:(RORconst [c] y)) && clobberIfDead(x1) => (TSTshiftRO x0 y [c])
    
    // prefer *const ops to *shift ops
    (ADDshiftLL (MOVDconst [c]) x [d]) => (ADDconst [c] (SLLconst <x.Type> x [d]))
    (ADDshiftRL (MOVDconst [c]) x [d]) => (ADDconst [c] (SRLconst <x.Type> x [d]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
Back to top