Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 671 - 680 of 1,195 for subjects (0.18 seconds)

  1. src/main/java/jcifs/netbios/NodeStatusResponse.java

                 * returned by the Node Status. A new NbtAddress object should not be
                 * created for it because the original is potentially being actively
                 * referenced by other objects. We must populate the existing object's
                 * data explicitly (and carefully).
                 */
                if (!addrFound && this.queryAddress.hostName.hexCode == hexCode
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  2. cmd/object-api-input-checks.go

    	}
    	if !IsValidObjectPrefix(object) {
    		return ObjectNameInvalid{Bucket: bucket, Object: object}
    	}
    	if runtime.GOOS == globalWindowsOSName && strings.Contains(object, "\\") {
    		// Objects cannot be contain \ in Windows and is listed as `Characters to Avoid`.
    		return ObjectNameInvalid{Bucket: bucket, Object: object}
    	}
    	return nil
    }
    
    // Checks for all ListObjects arguments validity.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 5.7K bytes
    - Click Count (0)
  3. guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

       *     expectContents(E...)} and its friends.
       */
      protected abstract Collection<E> actualContents();
    
      /**
       * Replaces the existing container under test with a new container created by the subject
       * generator.
       *
       * @see #resetContainer(Object) resetContainer(C)
       * @return the new container instance.
       */
      @CanIgnoreReturnValue
      protected C resetContainer() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 20:54:16 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       *
       * <p>Despite the method name, this method attempts to avoid actually copying the data when it is
       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
       * <p>This method is not type-safe, as it may be called on a map with keys that are not mutually
       * comparable.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 08 18:10:02 GMT 2026
    - 54.7K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/escape/CharEscaperBuilder.java

    import java.util.HashMap;
    import java.util.Map;
    import java.util.Map.Entry;
    import org.jspecify.annotations.Nullable;
    
    /**
     * Simple helper class to build a "sparse" array of objects based on the indexes that were added to
     * it. The array will be from 0 to the maximum index given. All non-set indexes will contain null
     * (so it's not really a sparse array, just a pseudo sparse array). The builder can also return a
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jul 17 15:26:41 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/io/MoreFiles.java

        return dotIndex == -1 ? fileName : fileName.substring(0, dotIndex);
      }
    
      /**
       * Deletes the file or directory at the given {@code path} recursively. Deletes symbolic links,
       * not their targets (subject to the caveat below).
       *
       * <p>If an I/O exception occurs attempting to read, open or delete any file under the given
       * directory, this method skips that file and continues. All such exceptions are collected and,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Apr 14 16:07:06 GMT 2025
    - 34.6K bytes
    - Click Count (0)
  7. README.md

        * Convert Python types (`str`, `int`, `float`, `bool`, `list`, etc).
        * `datetime` objects.
        * `UUID` objects.
        * Database models.
        * ...and many more.
    * Automatic interactive API documentation, including 2 alternative user interfaces:
        * Swagger UI.
        * ReDoc.
    
    ---
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 24.3K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/tutorial/security/oauth2-jwt.md

    用權杖有效期建立一個 `timedelta`。
    
    建立真正的 JWT access token 並回傳它。
    
    {* ../../docs_src/security/tutorial004_an_py310.py hl[121:136] *}
    
    ### 關於 JWT「主體」`sub` 的技術細節 { #technical-details-about-the-jwt-subject-sub }
    
    JWT 規範說有個鍵 `sub`,代表權杖的主體(subject)。
    
    使用它是可選的,但通常會把使用者的識別資訊放在這裡,所以我們在此採用。
    
    JWT 除了用來識別使用者並允許他直接對你的 API 執行操作外,也可用於其他用途。
    
    例如,你可以識別一台「車」或一篇「部落格文章」。
    
    接著可以替該實體加上權限,如「drive」(對車而言)或「edit」(對文章而言)。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  9. docs/zh/docs/tutorial/security/oauth2-jwt.md

    用令牌的过期时间创建一个 `timedelta`。
    
    创建一个真正的 JWT 访问令牌并返回它。
    
    {* ../../docs_src/security/tutorial004_an_py310.py hl[121:136] *}
    
    ### 关于 JWT “主题” `sub` 的技术细节 { #technical-details-about-the-jwt-subject-sub }
    
    JWT 规范中有一个 `sub` 键,表示令牌的“主题”(subject)。
    
    使用它是可选的,但通常会把用户的标识放在这里,所以本例中我们使用它。
    
    JWT 除了用于识别用户并允许其直接在你的 API 上执行操作之外,还可能用于其他场景。
    
    例如,你可以用它来标识一辆“车”或一篇“博客文章”。
    
    然后你可以为该实体添加权限,比如“drive”(用于车)或“edit”(用于博客)。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/graph/AbstractValueGraph.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.graph;
    
    import static java.util.Objects.requireNonNull;
    
    import com.google.common.collect.Maps;
    import java.util.Map;
    import java.util.Set;
    import org.jspecify.annotations.Nullable;
    
    /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 4K bytes
    - Click Count (0)
Back to Top