Search Options

Results per page
Sort
Preferred Languages
Advance

Results 381 - 390 of 478 for covers (0.11 sec)

  1. guava/src/com/google/common/collect/Range.java

       * <p>Note that if {@code a.encloses(b)}, then {@code b.contains(v)} implies {@code
       * a.contains(v)}, but as the last two examples illustrate, the converse is not always true.
       *
       * <p>Being reflexive, antisymmetric and transitive, the {@code encloses} relation defines a
       * <i>partial order</i> over ranges. There exists a unique {@linkplain Range#all maximal} range
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NbtAddress.java

        }
    
    /** 
     * Determines the address of a host given it's host name. NetBIOS
     * names also have a <code>type</code>. Types(aka Hex Codes)
     * are used to distiquish the various services on a host. <a
     * href="../../../nbtcodes.html">Here</a> is
     * a fairly complete list of NetBIOS hex codes. Scope is not used but is
     * still functional in other NetBIOS products and so for completeness it has been
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            try {
                // remove duplicate host
                final DuplicateHostHelper duplicateHostHelper = ComponentUtil.getDuplicateHostHelper();
                return duplicateHostHelper.convert(url);
            } catch (final Exception e) {
                return url;
            }
        }
    
        protected List<String> getAnchorList(final Document document, final ResponseData responseData) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Floats.java

        }
    
        private Object readResolve() {
          return INSTANCE;
        }
    
        private static final long serialVersionUID = 1;
      }
    
      /**
       * Returns a serializable converter object that converts between strings and floats using {@link
       * Float#valueOf} and {@link Float#toString()}.
       *
       * @since 16.0
       */
      public static Converter<String, Float> stringConverter() {
        return FloatConverter.INSTANCE;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Doubles.java

        }
    
        private Object readResolve() {
          return INSTANCE;
        }
    
        private static final long serialVersionUID = 1;
      }
    
      /**
       * Returns a serializable converter object that converts between strings and doubles using {@link
       * Double#valueOf} and {@link Double#toString()}.
       *
       * @since 16.0
       */
      public static Converter<String, Double> stringConverter() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/Floats.java

        }
    
        private Object readResolve() {
          return INSTANCE;
        }
    
        private static final long serialVersionUID = 1;
      }
    
      /**
       * Returns a serializable converter object that converts between strings and floats using {@link
       * Float#valueOf} and {@link Float#toString()}.
       *
       * @since 16.0
       */
      public static Converter<String, Float> stringConverter() {
        return FloatConverter.INSTANCE;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    // references to the imported package C, replacing them with
    // references to the equivalent Go types, functions, and variables.
    func (p *Package) Translate(f *File) {
    	for _, cref := range f.Ref {
    		// Convert C.ulong to C.unsigned long, etc.
    		cref.Name.C = cname(cref.Name.Go)
    	}
    
    	var conv typeConv
    	conv.Init(p.PtrSize, p.IntSize)
    
    	p.typedefs = map[string]bool{}
    	p.typedefList = nil
    	numTypedefs := -1
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Sep 18 15:07:34 UTC 2024
    - 97.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/Doubles.java

        }
    
        private Object readResolve() {
          return INSTANCE;
        }
    
        private static final long serialVersionUID = 1;
      }
    
      /**
       * Returns a serializable converter object that converts between strings and doubles using {@link
       * Double#valueOf} and {@link Double#toString()}.
       *
       * @since 16.0
       */
      public static Converter<String, Double> stringConverter() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Futures.java

       * the input, and if the input is cancelled, the returned {@code Future} will receive a callback
       * in which it will attempt to cancel itself.
       *
       * <p>An example use of this method is to convert a serializable object returned from an RPC into
       * a POJO.
       *
       * @param input The future to transform
       * @param function A Function to transform the results of the provided future to the results of
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 13:13:32 UTC 2024
    - 64.4K bytes
    - Viewed (0)
  10. docs/es/docs/async.md

    <img src="https://fastapi.tiangolo.com/img/async/parallel-burgers/parallel-burgers-05.png" alt="illustration">
    
    Coges tus hamburguesas ๐Ÿ” y vas a la mesa con esa persona ๐Ÿ˜.
    
    Sรณlo las comes y listo ๐Ÿ” โน.
    
    <img src="https://fastapi.tiangolo.com/img/async/parallel-burgers/parallel-burgers-06.png" alt="illustration">
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 19 18:15:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top