Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for Dword2 (0.12 sec)

  1. guava/src/com/google/common/base/CharMatcher.java

        return Whitespace.INSTANCE;
      }
    
      /**
       * Determines whether a character is a breaking whitespace (that is, a whitespace which can be
       * interpreted as a break between words for formatting purposes). See {@link #whitespace()} for a
       * discussion of that term.
       *
       * @since 19.0 (since 2.0 as constant {@code BREAKING_WHITESPACE})
       */
      public static CharMatcher breakingWhitespace() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    	ABEXTI & obj.AMask: iIEncoding,
    	ABINV & obj.AMask:  rIIIEncoding,
    	ABINVI & obj.AMask: iIEncoding,
    	ABSET & obj.AMask:  rIIIEncoding,
    	ABSETI & obj.AMask: iIEncoding,
    
    	// Escape hatch
    	AWORD & obj.AMask: rawEncoding,
    
    	// Pseudo-operations
    	obj.AFUNCDATA: pseudoOpEncoding,
    	obj.APCDATA:   pseudoOpEncoding,
    	obj.ATEXT:     pseudoOpEncoding,
    	obj.ANOP:      pseudoOpEncoding,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    In other words, you can only use one or the other in Groovy for any given method.
    
    ==== Calling Kotlin from Groovy
    
    To call a Kotlin function that has named arguments from Groovy, just use a normal method call with positional parameters.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    	podMaxInUnschedulablePodsDuration time.Duration
    
    	cond sync.Cond
    
    	// inFlightPods holds the UID of all pods which have been popped out for which Done
    	// hasn't been called yet - in other words, all pods that are currently being
    	// processed (being scheduled, in permit, or in the binding cycle).
    	//
    	// The values in the map are the entry of each pod in the inFlightEvents list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	}
    
    	// additionalProperties and properties are mutual exclusive because otherwise they
    	// contradict Kubernetes' API convention to ignore unknown fields.
    	//
    	// In other words:
    	// - properties are for structs,
    	// - additionalProperties are for map[string]interface{}
    	//
    	// Note: when patternProperties is added to OpenAPI some day, this will have to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
        // using variant of single-word Wang/Jenkins hash.
        // TODO(kevinb): use Hashing/move this to Hashing?
        h += (h << 15) ^ 0xffffcd7d;
        h ^= (h >>> 10);
        h += (h << 3);
        h ^= (h >>> 6);
        h += (h << 2) + (h << 14);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    // Assumes that in gcc, char is 1 byte, short 2 bytes, int 4 bytes, long long 8 bytes.
    // These assumptions are checked by the gccProlog.
    // Also assumes that gc convention is to word-align the
    // input and output parameters.
    func (p *Package) structType(n *Name) (string, int64) {
    	var buf strings.Builder
    	fmt.Fprint(&buf, "struct {\n")
    	off := int64(0)
    	for i, t := range n.FuncType.Params {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
        // using variant of single-word Wang/Jenkins hash.
        // TODO(kevinb): use Hashing/move this to Hashing?
        h += (h << 15) ^ 0xffffcd7d;
        h ^= (h >>> 10);
        h += (h << 3);
        h ^= (h >>> 6);
        h += (h << 2) + (h << 14);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	// two non-static member functions are considered to be
    	// different, for the purposes of substitution, if the
    	// functions are members of different classes. In other words,
    	// for the purposes of substitution, the class of which the
    	// function is a member is considered part of the type of
    	// function."
    	//
    	// For a pointer to member function, this call to demangleType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ==== The `org.gradle.util` package is now a public API
    
    Officially, the `org.gradle.util` package is not part of the public API.
    But, because this package name doesn't contain the word `internal`, many Gradle plugins already consider as one.
    Gradle 7.1 addresses the situation and marks the package as public.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top