Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 608 for Pound (0.09 sec)

  1. android/guava-tests/test/com/google/common/collect/EnumBiMapTest.java

     */
    @J2ktIncompatible // EnumBimap
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public class EnumBiMapTest extends TestCase {
      private enum Currency {
        DOLLAR,
        FRANC,
        PESO,
        POUND,
        YEN
      }
    
      private enum Country {
        CANADA,
        CHILE,
        JAPAN,
        SWITZERLAND,
        UK
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 16:35:21 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/mdo/reader-stax.vm

        static {
            Map<String, String> entities = new HashMap<>();
            entities.put("nbsp", "\u00a0");
            entities.put("iexcl", "\u00a1");
            entities.put("cent", "\u00a2");
            entities.put("pound", "\u00a3");
            entities.put("curren", "\u00a4");
            entities.put("yen", "\u00a5");
            entities.put("brvbar", "\u00a6");
            entities.put("sect", "\u00a7");
            entities.put("uml", "\u00a8");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  3. src/mdo/reader.vm

        static {
            Map<String, String> entities = new HashMap<>();
            entities.put("nbsp", "\u00a0");
            entities.put("iexcl", "\u00a1");
            entities.put("cent", "\u00a2");
            entities.put("pound", "\u00a3");
            entities.put("curren", "\u00a4");
            entities.put("yen", "\u00a5");
            entities.put("brvbar", "\u00a6");
            entities.put("sect", "\u00a7");
            entities.put("uml", "\u00a8");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/decl.go

    	}()
    
    	// Keep track of bounds for later validation.
    	var bound Type
    	for i, f := range list {
    		// Optimization: Re-use the previous type bound if it hasn't changed.
    		// This also preserves the grouped output of type parameter lists
    		// when printing type strings.
    		if i == 0 || f.Type != list[i-1].Type {
    			bound = check.bound(f.Type)
    			if isTypeParam(bound) {
    				// We may be able to allow this since it is now well-defined what
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

            }
        }
    
        /**
         * Creates an instance of {@link WildcardType} bound by upper and lower bounds
         *
         * @param upperBounds a wildcard upper bound types
         * @param lowerBounds a wildcard lower bound types
         * @return an instance of {@link WildcardType}
         */
        public static WildcardType wildcardType(Type[] upperBounds, Type[] lowerBounds) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. src/cmd/doc/pkg.go

    	printed := make(map[*ast.GenDecl]bool) // valueDoc registry
    	for _, value := range values {
    		pkg.valueDoc(value, printed)
    		found = true
    	}
    	// Types.
    	for _, typ := range pkg.findTypes(symbol) {
    		pkg.typeDoc(typ)
    		found = true
    	}
    	if !found {
    		// See if there are methods.
    		if !pkg.printMethodDoc("", symbol) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/config.go

    	lowerBlock     blockRewriter  // block lowering function, first round
    	lowerValue     valueRewriter  // value lowering function, first round
    	lateLowerBlock blockRewriter  // block lowering function that needs to be run after the first round; only used on some architectures
    	lateLowerValue valueRewriter  // value lowering function that needs to be run after the first round; only used on some architectures
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java

        SortedSet<E> createSubSet(SortedSet<E> set, E firstExclusive, E lastExclusive) {
          if (from == Bound.NO_BOUND && to == Bound.EXCLUSIVE) {
            return set.headSet(lastExclusive);
          } else if (from == Bound.INCLUSIVE && to == Bound.NO_BOUND) {
            return set.tailSet(firstInclusive);
          } else if (from == Bound.INCLUSIVE && to == Bound.EXCLUSIVE) {
            return set.subSet(firstInclusive, lastExclusive);
          } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/typestring.go

    		if tpar == nil {
    			w.error("nil type parameter")
    			continue
    		}
    		if i > 0 {
    			if tpar.bound != prev {
    				// bound changed - write previous one before advancing
    				w.byte(' ')
    				w.typ(prev)
    			}
    			w.byte(',')
    		}
    		prev = tpar.bound
    		w.typ(tpar)
    	}
    	if prev != nil {
    		w.byte(' ')
    		w.typ(prev)
    	}
    	w.byte(']')
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/instantiate.go

    		tpar.iface()
    		// The type parameter bound is parameterized with the same type parameters
    		// as the instantiated type; before we can use it for bounds checking we
    		// need to instantiate it with the type arguments with which we instantiated
    		// the parameterized type.
    		bound := check.subst(pos, tpar.bound, smap, nil, ctxt)
    		var cause string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top