Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,850 for cased (0.07 sec)

  1. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingSet.java

    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.Set;
    import java.util.function.Function;
    
    /**
     * The special-cased implementation of {@link Set} that tracks all accesses to its elements.
     *
     * @param <E> the type of elements
     */
    class AccessTrackingSet<E> extends ForwardingSet<E> {
        public interface Listener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. src/image/image_test.go

    		case *NYCbCrA:
    			memset(tc.YCbCr.Y, 0x77)
    			memset(tc.YCbCr.Cb, 0x88)
    			memset(tc.YCbCr.Cr, 0x99)
    			memset(tc.A, 0xAA)
    
    		case *Uniform:
    			tc.C = color.RGBA64{0x7FFF, 0x3FFF, 0x0000, 0x7FFF}
    
    		case *YCbCr:
    			memset(tc.Y, 0x77)
    			memset(tc.Cb, 0x88)
    			memset(tc.Cr, 0x99)
    
    		case Rectangle:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 30 02:00:49 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  3. pkg/config/schema/codegen/collections.go

    	ClientGroupPath string
    	// ClientGetter returns the path to get the client from a kube.Client. Example: Istio.
    	ClientGetter string
    	// ClientTypePath returns the kind name. Basically upper cased "plural". Example: Gateways
    	ClientTypePath string
    	// SpecType returns the type of the Spec field. Example: HTTPRouteSpec.
    	SpecType   string
    	StatusType string
    }
    
    type inputs struct {
    	Entries  []colEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. tensorflow/c/eager/parallel_device/parallel_device.cc

    // explicitly by running a TPUReplicatedOutput operation on the parallel device.
    //
    // TODO(allenl): There are some use-cases that are only supported by copying to
    // host at the moment (e.g. debug print on a tensor, .numpy(), etc.). We either
    // need to return something here or address these use-cases one by one.
    TFE_TensorHandle* CopyTensorFromParallelDevice(TFE_Context* context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 29 22:05:31 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  5. src/unicode/letter_test.go

    	// SimpleFold(x) returns the next equivalent rune > x or wraps
    	// around to smaller values.
    
    	// Easy cases.
    	"Aa",
    	"δΔ",
    
    	// ASCII special cases.
    	"KkK",
    	"Ssſ",
    
    	// Non-ASCII special cases.
    	"ρϱΡ",
    	"ͅΙιι",
    
    	// Extra special cases: has lower/upper but no case fold.
    	"İ",
    	"ı",
    
    	// Upper comes before lower (Cherokee).
    	"\u13b0\uab80",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  6. src/net/http/header.go

    // hasToken reports whether token appears with v, ASCII
    // case-insensitive, with space or comma boundaries.
    // token must be all lowercase.
    // v may contain mixed cased.
    func hasToken(v, token string) bool {
    	if len(token) > len(v) || token == "" {
    		return false
    	}
    	if v == token {
    		return true
    	}
    	for sp := 0; sp <= len(v)-len(token); sp++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // RequestURI is the request URI as sent by the client to a server.
      optional string requestURI = 4;
    
      // Verb is the kubernetes verb associated with the request.
      // For non-resource requests, this is the lower-cased HTTP method.
      optional string verb = 5;
    
      // Authenticated user information.
      optional .k8s.io.api.authentication.v1.UserInfo user = 6;
    
      // Impersonated user information.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. internal/config/identity/ldap/ldap.go

    // input DN, as LDAP equality is not a simple Golang string equality. However,
    // we assume the value returned by the LDAP server is canonical. Additionally,
    // the attribute type names in the DN are lower-cased.
    //
    // Return values:
    //
    // If the DN is found, the normalized (string) value and any requested
    // attributes are returned and error is nil.
    //
    // If the DN is not found, a nil result and error are returned.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  9. guava/src/com/google/common/hash/HashCode.java

      }
    
      /**
       * Creates a {@code HashCode} from a hexadecimal ({@code base 16}) encoded string. The string must
       * be at least 2 characters long, and contain only valid, lower-cased hexadecimal characters.
       *
       * <p>This method accepts the exact format generated by {@link #toString}. If you require more
       * lenient {@code base 16} decoding, please use {@link com.google.common.io.BaseEncoding#decode}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// A request may match multiple rules, in which case the FIRST matching rule is used.
    	// The default audit level is None, but can be overridden by a catch-all rule at the end of the list.
    	// PolicyRules are strictly ordered.
    	Rules []PolicyRule
    
    	// OmitStages is a list of stages for which no events are created. Note that this can also
    	// be specified per rule in which case the union of both are omitted.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top