Search Options

Results per page
Sort
Preferred Languages
Advance

Results 401 - 410 of 659 for small7 (0.06 sec)

  1. common-protos/k8s.io/api/authentication/v1/generated.proto

    1. // The token will only be valid for as long as the bound object exists.
    2. // NOTE: The API server's TokenReview endpoint will validate the
    3. // BoundObjectRef, but other audiences may not. Keep ExpirationSeconds
    4. // small if you want prompt revocation.
    5. // +optional
    6. optional BoundObjectReference boundObjectRef = 3;
    7. }
    8.  
    9. // TokenRequestStatus is the result of a token request.
    10. message TokenRequestStatus {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/http/NetworkExplorer.java

    1. out.print( "\"><b>" );
    2. out.print( name );
    3. out.print( "</b><br><small>" );
    4. out.print( (f.length() / 1024) + "KB <br>" );
    5. out.print( sdf.format( new Date( f.lastModified() )));
    6. out.print( "</small>" );
    7. out.println( "</a>" );
    8. }
    9. }
    10. }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 22 03:57:31 UTC 2020
    - 19.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

    1. // shufflesharding and thus makes the distinguisher method of
    2. // associated flow schemas irrelevant. This field has a default
    3. // value of 64.
    4. // +optional
    5. optional int32 queues = 1;
    6.  
    7. // `handSize` is a small positive number that configures the
    8. // shuffle sharding of requests into queues. When enqueuing a request
    9. // at this priority level the request's flow identifier (a string
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

    1. // shufflesharding and thus makes the distinguisher method of
    2. // associated flow schemas irrelevant. This field has a default
    3. // value of 64.
    4. // +optional
    5. optional int32 queues = 1;
    6.  
    7. // `handSize` is a small positive number that configures the
    8. // shuffle sharding of requests into queues. When enqueuing a request
    9. // at this priority level the request's flow identifier (a string
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NetworkExplorer.java

    1. out.print("\"><b>");
    2. out.print(name);
    3. out.print("</b><br><small>");
    4. out.print( ( f.length() / 1024 ) + "KB <br>");
    5. out.print(sdf.format(new Date(f.lastModified())));
    6. out.print("</small>");
    7. out.println("</a>");
    8. }
    9. }
    10. }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Ascii.java

    1. * interpreted as outside of the character set of the standard code table until a Shift In
    2. * character is reached.
    3. *
    4. * @since 8.0
    5. */
    6. public static final byte SO = 14;
    7.  
    8. /**
    9. * Shift In: A control character indicating that the code combinations which follow shall be
    10. * interpreted according to the standard code table.
    11. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Aug 02 13:50:22 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/DialectVersion.java

    1. */
    2. public boolean atMost ( DialectVersion v ) {
    3. return ordinal() <= v.ordinal();
    4. }
    5.  
    6.  
    7. /**
    8. *
    9. * @param a
    10. * @param b
    11. * @return smaller of the two versions
    12. */
    13. public static DialectVersion min ( DialectVersion a, DialectVersion b ) {
    14. if ( a.atMost(b) ) {
    15. return a;
    16. }
    17. return b;
    18. }
    19.  
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  8. PATENTS

    1. implementation of Go constitutes direct or contributory patent
    2. infringement, or inducement of patent infringement, then any patent
    3. rights granted to you under this License for this implementation of Go
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Dec 06 21:31:59 UTC 2010
    - 1.3K bytes
    - Viewed (0)
  9. licenses/github.com/russross/blackfriday/v2/LICENSE.txt

    1. > "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    2. > LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
    3. > FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
    4. > COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
    5. > INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
    6. > BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Apr 23 04:14:15 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/RateLimiter.java

    1. *
    2. * @author Dimitris Andreou
    3. * @since 13.0
    4. */
    5. // TODO(user): switch to nano precision. A natural unit of cost is "bytes", and a micro precision
    6. // would mean a maximum rate of "1MB/s", which might be small in some cases.
    7. @Beta
    8. @J2ktIncompatible
    9. @GwtIncompatible
    10. @ElementTypesAreNonnullByDefault
    11. public abstract class RateLimiter {
    12. /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top