Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 115 for E$1 (0.12 sec)

  1. src/text/scanner/scanner_test.go

    		{Float, "123.123", "123.123", ""},
    		{Float, "0123.0123", "0123.0123", ""},
    
    		{Float, "0e0", "0e0", ""},
    		{Float, "123e+0", "123e+0", ""},
    		{Float, "0123E-1", "0123E-1", ""},
    
    		{Float, "0.e+1", "0.e+1", ""},
    		{Float, "123.E-10", "123.E-10", ""},
    		{Float, "0123.e123", "0123.e123", ""},
    
    		{Float, ".0e-1", ".0e-1", ""},
    		{Float, ".123E+10", ".123E+10", ""},
    		{Float, ".0123E123", ".0123E123", ""},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/match.go

    		m.regGroupDist = regGroupDist
    	}
    }
    
    func isParadigmLocale(lang language.Language, r language.Region) bool {
    	for _, e := range paradigmLocales {
    		if language.Language(e[0]) == lang && (r == language.Region(e[1]) || r == language.Region(e[2])) {
    			return true
    		}
    	}
    	return false
    }
    
    // regionGroupDist computes the distance between two regions based on their
    // CLDR grouping.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/test.go

    	}
    }
    
    func testNamedEnum(t *testing.T) {
    	e := new(C.enum_E)
    
    	*e = C.Enum1
    	if *e != 1 {
    		t.Error("bad enum", C.Enum1)
    	}
    
    	*e = C.Enum2
    	if *e != 2 {
    		t.Error("bad enum", C.Enum2)
    	}
    }
    
    func testCastToEnum(t *testing.T) {
    	e := C.enum_E(C.Enum1)
    	if e != 1 {
    		t.Error("bad enum", C.Enum1)
    	}
    
    	e = C.enum_E(C.Enum2)
    	if e != 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multisets.java

       * will be added more than once, with the count summed over all appearances of the element.
       *
       * <p>Note that {@code stream.collect(toMultiset(function, e -> 1, supplier))} is equivalent to
       * {@code stream.map(function).collect(Collectors.toCollection(supplier))}.
       *
       * <p>To collect to an {@link ImmutableMultiset}, use {@link
       * ImmutableMultiset#toImmutableMultiset}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Multisets.java

       * will be added more than once, with the count summed over all appearances of the element.
       *
       * <p>Note that {@code stream.collect(toMultiset(function, e -> 1, supplier))} is equivalent to
       * {@code stream.map(function).collect(Collectors.toCollection(supplier))}.
       *
       * <p>To collect to an {@link ImmutableMultiset}, use {@link
       * ImmutableMultiset#toImmutableMultiset}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

      public static <E> Collector<E, ?, ImmutableSortedMultiset<E>> toImmutableSortedMultiset(
          Comparator<? super E> comparator) {
        return toImmutableSortedMultiset(comparator, Function.identity(), e -> 1);
      }
    
      /**
       * Returns a {@code Collector} that accumulates elements into an {@code ImmutableSortedMultiset}
       * whose elements are the result of applying {@code elementFunction} to the inputs, with counts
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure.sh

          fi
        done
      done
    }
    
    function is-preloaded {
      local -r key=$1
      local -r value=$2
      grep -qs "${key},${value}" "${KUBE_HOME}/preload_info"
    }
    
    function split-commas {
      echo -e "${1//,/'\n'}"
    }
    
    function remount-flexvolume-directory {
      local -r flexvolume_plugin_dir=$1
      mkdir -p "$flexvolume_plugin_dir"
      mount --bind "$flexvolume_plugin_dir" "$flexvolume_plugin_dir"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  8. src/crypto/internal/bigmod/nat.go

    	// doesn't pay off. Instead, we do a simple conditional square-and-multiply
    	// chain, skipping the initial run of zeroes.
    	xR := NewNat().set(x).montgomeryRepresentation(m)
    	out.set(xR)
    	for i := bits.UintSize - bitLen(e) + 1; i < bits.UintSize; i++ {
    		out.montgomeryMul(out, out, m)
    		if k := (e >> (bits.UintSize - i - 1)) & 1; k != 0 {
    			out.montgomeryMul(out, xR, m)
    		}
    	}
    	return out.montgomeryReduction(m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. src/go/scanner/scanner_test.go

    		{token.FLOAT, "0123.0123", "0123.0123", ""},
    
    		{token.FLOAT, "0e0", "0e0", ""},
    		{token.FLOAT, "123e+0", "123e+0", ""},
    		{token.FLOAT, "0123E-1", "0123E-1", ""},
    
    		{token.FLOAT, "0.e+1", "0.e+1", ""},
    		{token.FLOAT, "123.E-10", "123.E-10", ""},
    		{token.FLOAT, "0123.e123", "0123.e123", ""},
    
    		{token.FLOAT, ".0e-1", ".0e-1", ""},
    		{token.FLOAT, ".123E+10", ".123E+10", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //
    //go:noescape
    func safeload(ptr uintptr) (value uintptr, error uintptr)
    
    const (
    	entrypointLocationOffset = 8 // From function descriptor
    
    	xplinkEyecatcher   = 0x00c300c500c500f1 // ".C.E.E.1"
    	eyecatcherOffset   = 16                 // From function entrypoint (negative)
    	ppa1LocationOffset = 8                  // From function entrypoint (negative)
    
    	nameLenOffset = 0x14 // From PPA1 start
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top