Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 125 for addresses2 (1.38 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner_nm.go

    )
    
    const (
    	defaultNM = "nm"
    )
    
    // addr2LinerNM is a connection to an nm command for obtaining symbol
    // information from a binary.
    type addr2LinerNM struct {
    	m []symbolInfo // Sorted list of symbol addresses from binary.
    }
    
    type symbolInfo struct {
    	address uint64
    	size    uint64
    	name    string
    	symType string
    }
    
    // isData returns if the symbol has a known data object symbol type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/prune.go

    	prune := make(map[uint64]bool)
    	pruneBeneath := make(map[uint64]bool)
    
    	// simplifyFunc can be expensive, so cache results.
    	// Note that the same function name can be encountered many times due
    	// different lines and addresses in the same function.
    	pruneCache := map[string]bool{} // Map from function to whether or not to prune
    	pruneFromHere := func(s string) bool {
    		if r, ok := pruneCache[s]; ok {
    			return r
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Config.java

            return def;
        }
    
    
        /**
         * Retrieve an array of <tt>InetAddress</tt> created from a property
         * value containing a <tt>delim</tt> separated list of host names and/or
         * ip addresses.
         */
        public static InetAddress[] getInetAddressArray ( Properties props, String key, String delim, InetAddress[] def ) {
            String p = props.getProperty(key);
            if ( p != null ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/NullnessCasts.java

       * analysis that that means "plain {@code T}" rather than the inferred type {@code @Nullable T}.
       * (Even if supported added {@code @NonNull}, that would not help, since the problem case
       * addressed by this method is the case in which {@code T} has parametric nullness -- and thus its
       * value may be legitimately {@code null}.)
       */
      @ParametricNullness
      @SuppressWarnings("nullness")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 17 15:44:29 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/NullnessCasts.java

       * analysis that that means "plain {@code T}" rather than the inferred type {@code @Nullable T}.
       * (Even if supported added {@code @NonNull}, that would not help, since the problem case
       * addressed by this method is the case in which {@code T} has parametric nullness -- and thus its
       * value may be legitimately {@code null}.)
       */
      @ParametricNullness
      @SuppressWarnings("nullness")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 12 20:58:36 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/NullnessCasts.java

       * analysis that that means "plain {@code T}" rather than the inferred type {@code @Nullable T}.
       * (Even if supported added {@code @NonNull}, that would not help, since the problem case
       * addressed by this method is the case in which {@code T} has parametric nullness -- and thus its
       * value may be legitimately {@code null}.)
       */
      @ParametricNullness
      @SuppressWarnings("nullness")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 10 20:36:34 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/NullnessCasts.java

       * analysis that that means "plain {@code T}" rather than the inferred type {@code @Nullable T}.
       * (Even if supported added {@code @NonNull}, that would not help, since the problem case
       * addressed by this method is the case in which {@code T} has parametric nullness -- and thus its
       * value may be legitimately {@code null}.)
       */
      @ParametricNullness
      @SuppressWarnings("nullness")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 10 20:36:34 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/NullnessCasts.java

       * analysis that that means "plain {@code T}" rather than the inferred type {@code @Nullable T}.
       * (Even if supported added {@code @NonNull}, that would not help, since the problem case
       * addressed by this method is the case in which {@code T} has parametric nullness -- and thus its
       * value may be legitimately {@code null}.)
       */
      @SuppressWarnings("nullness")
      @ParametricNullness
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 10 20:36:34 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                                /*
                                 * Before we return, in anticipation of this address being cached we must
                                 * augment the addresses name's hashCode to distinguish those resolved by
                                 * Lmhosts, WINS, or BCAST. Otherwise a failed query from say WINS would
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/UniAddress.java

         * Return the IP address of this address as a 32 bit integer.
         */
    
        @Override
        public int hashCode () {
            return this.addr.hashCode();
        }
    
    
        /**
         * Compare two addresses for equality. Two <tt>UniAddress</tt>s are equal
         * if they are both <tt>UniAddress</tt>' and refer to the same IP address.
         */
        @Override
        public boolean equals ( Object obj ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
Back to top