Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Representation (0.14 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

            return false;
        }
    
    
        /**
         * Returns the string representation of this SmbFile object. This will
         * be the same as the URL used to construct this <code>SmbFile</code>.
         * This method will return the same value
         * as <code>getPath</code>.
         *
         * @return The original URL representation of this SMB resource
         */
    
        @Override
        public String toString () {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  2. cmd/iam.go

    	var parentUserActualDNList []string
    	// Map of LDAP user (internal representation) to list of active credential objects
    	parentUserToCredsMap := make(map[string][]auth.Credentials)
    	// DN to ldap username mapping for each LDAP user
    	actualDNToLDAPUsernameMap := make(map[string]string)
    	// External (actual) LDAP DN to internal normalized representation
    	actualDNToParentUserMap := make(map[string]string)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 29 16:01:48 UTC 2024
    - 74.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/CacheBuilder.java

              LoggerHolder.logger.log(
                  Level.WARNING, "ignoring weigher specified without maximumWeight");
            }
          }
        }
      }
    
      /**
       * Returns a string representation for this CacheBuilder instance. The exact form of the returned
       * string is not specified.
       */
      @Override
      public String toString() {
        MoreObjects.ToStringHelper s = MoreObjects.toStringHelper(this);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/CharMatcher.java

       *     instead.
       */
      @Deprecated
      @Override
      public boolean apply(Character character) {
        return matches(character);
      }
    
      /**
       * Returns a string representation of this {@code CharMatcher}, such as {@code
       * CharMatcher.or(WHITESPACE, JAVA_DIGIT)}.
       */
      @Override
      public String toString() {
        return super.toString();
      }
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:00:28 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Iterators.java

          Object o2 = iterator2.next();
          if (!Objects.equal(o1, o2)) {
            return false;
          }
        }
        return !iterator2.hasNext();
      }
    
      /**
       * Returns a string representation of {@code iterator}, with the format {@code [e1, e2, ..., en]}.
       * The iterator will be left exhausted: its {@code hasNext()} method will return {@code false}.
       */
      public static String toString(Iterator<?> iterator) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/CacheBuilder.java

              LoggerHolder.logger.log(
                  Level.WARNING, "ignoring weigher specified without maximumWeight");
            }
          }
        }
      }
    
      /**
       * Returns a string representation for this CacheBuilder instance. The exact form of the returned
       * string is not specified.
       */
      @Override
      public String toString() {
        MoreObjects.ToStringHelper s = MoreObjects.toStringHelper(this);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrFilterValueInvalid: {
    		Code:           "InvalidArgument",
    		Description:    "Size of filter rule value cannot exceed 1024 bytes in UTF-8 representation",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrOverlappingConfigs: {
    		Code:           "InvalidArgument",
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 01 22:13:18 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(parse("http://%5B%3A%3A1%5D/").host).isEqualTo("::1")
      }
    
      @Test
      fun hostIpv6AddressDifferentFormats() {
        // Multiple representations of the same address; see http://tools.ietf.org/html/rfc5952.
        val a3 = "2001:db8::1:0:0:1"
        assertThat(parse("http://[2001:db8:0:0:1:0:0:1]").host).isEqualTo(a3)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top