Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 145 for Avery (0.19 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // An access token contains the security information for a logon session.
    // The system creates an access token when a user logs on, and every
    // process executed on behalf of the user has a copy of the token.
    // The token identifies the user, the user's groups, and the user's
    // privileges. The system uses the token to control access to securable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		// - Before the informer cache here catches up, the pod runs, terminates and
    		//   the claim gets deallocated without ever sending the claim status with
    		//   allocation to the scheduler.
    		// - The comparison below is for a *very* old claim with no allocation and the
    		//   new claim where the allocation is already removed again, so no
    		//   RemovedClaimAllocation event gets emitted.
    		//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. pkg/apis/certificates/validation/validation_test.go

    			for _, err := range validateCertificateSigningRequest(tt.csr, certificateValidationOptions{}) {
    				gotErrs.Insert(err.Error())
    			}
    
    			// filter errors matching strictRegexes and ensure every strictRegex matches at least one error
    			for _, expectedRegex := range tt.strictRegexes {
    				matched := false
    				for _, err := range gotErrs.List() {
    					if expectedRegex.MatchString(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  4. .bazelrc

    # Please note that MKL on MacOS is still not supported.
    # If you would like to use a local MKL instead of downloading, please set the
    # environment variable "TF_MKL_ROOT" every time before build.
    build:mkl --define=build_with_mkl=true --define=enable_mkl=true
    build:mkl --define=tensorflow_mkldnn_contraction_kernel=0
    build:mkl --define=build_with_openmp=true
    build:mkl -c opt
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. pkg/proxy/winkernel/proxier.go

    			}
    		}
    
    		var hnsEndpoints []endpointInfo
    		var hnsLocalEndpoints []endpointInfo
    		klog.V(4).InfoS("Applying Policy", "serviceInfo", svcName)
    		// Create Remote endpoints for every endpoint, corresponding to the service
    		containsPublicIP := false
    		containsNodeIP := false
    		var allEndpointsTerminating, allEndpointsNonServing bool
    		someEndpointsServing := true
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/CharMatcher.java

       * character, until this returns {@code false} or the end is reached.
       *
       * @param sequence the character sequence to examine, possibly empty
       * @return {@code true} if this matcher matches every character in the sequence, including when
       *     the sequence is empty
       */
      public boolean matchesAllOf(CharSequence sequence) {
        for (int i = sequence.length() - 1; i >= 0; i--) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/CharMatcher.java

       * character, until this returns {@code false} or the end is reached.
       *
       * @param sequence the character sequence to examine, possibly empty
       * @return {@code true} if this matcher matches every character in the sequence, including when
       *     the sequence is empty
       */
      public boolean matchesAllOf(CharSequence sequence) {
        for (int i = sequence.length() - 1; i >= 0; i--) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    isAltFile = arg.equals("-f") || arg.equals("--file");
                }
            }
            topDirectory = getCanonicalPath(topDirectory);
            cliRequest.topDirectory = topDirectory;
            // We're very early in the process, and we don't have the container set up yet,
            // so we rely on the JDK services to eventually look up a custom RootLocator.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Preconditions.java

     * environment if possible) before spending a lot of effort on tweaking a particular element.
     *
     * <h3>Other types of preconditions</h3>
     *
     * <p>Not every type of precondition failure is supported by these methods. Continue to throw
     * standard JDK exceptions such as {@link java.util.NoSuchElementException} or {@link
     * UnsupportedOperationException} in the situations they are intended for.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * `%F0%9F%8D%A9`). This approach works for whitespace characters, control characters, non-ASCII
     * characters, and characters that already have another meaning in a particular context.
     *
     * Percent encoding is used in every URL component except for the hostname. But the set of
     * characters that need to be encoded is different for each component. For example, the path
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
Back to top