Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 427 for Primitive (0.18 sec)

  1. android/guava/src/com/google/common/collect/FluentIterable.java

     *       parallelizing stream operations.
     *   <li>{@code FluentIterable} contains several features not available on {@code Stream}, which are
     *       noted in the method descriptions below.
     *   <li>Streams include primitive-specialized variants such as {@code IntStream}, the use of which
     *       is strongly recommended.
     *   <li>Streams are standard Java, not requiring a third-party dependency (but do render your code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/FluentIterable.java

     *       parallelizing stream operations.
     *   <li>{@code FluentIterable} contains several features not available on {@code Stream}, which are
     *       noted in the method descriptions below.
     *   <li>Streams include primitive-specialized variants such as {@code IntStream}, the use of which
     *       is strongly recommended.
     *   <li>Streams are standard Java, not requiring a third-party dependency.
     * </ul>
     *
     * <h3>Example</h3>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    	cases := []struct {
    		name            string
    		input           schema.Structural
    		expectedResults []validationMatcher
    		unmodified      bool
    	}{
    		{
    			name: "optional primitive transition rule type checking",
    			input: schema.Structural{
    				Generic: schema.Generic{
    					Type: "integer",
    				},
    				ValidationExtensions: schema.ValidationExtensions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/expand_calls.go

    		if isBlockMultiValueExit(b) {
    			exitBlocks = append(exitBlocks, b)
    		}
    	}
    
    	// Convert each aggregate arg into Make of its parts (and so on, to primitive types)
    	for _, v := range args {
    		var rc registerCursor
    		a := x.prAssignForArg(v)
    		aux := x.f.OwnAux
    		regs := a.Registers
    		var offset int64
    		if len(regs) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  5. ChangeLog.md

    - [`KT-65210`](https://youtrack.jetbrains.com/issue/KT-65210) K/Wasm `::class` operator produces Number KClass for Short expression
    - [`KT-66065`](https://youtrack.jetbrains.com/issue/KT-66065) [Wasm] Make specialisations for closured primitive values
    - [`KT-64890`](https://youtrack.jetbrains.com/issue/KT-64890) K/Wasm compiler crash with external class and Kodein
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/scalar_fiat.go

    // Code generated by Fiat Cryptography. DO NOT EDIT.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
  7. src/encoding/json/encode.go

    		return v.IsZero()
    	}
    	return false
    }
    
    func (e *encodeState) reflectValue(v reflect.Value, opts encOpts) {
    	valueEncoder(v)(e, v, opts)
    }
    
    type encOpts struct {
    	// quoted causes primitive fields to be encoded inside JSON strings.
    	quoted bool
    	// escapeHTML causes '<', '>', and '&' to be escaped in JSON strings.
    	escapeHTML bool
    }
    
    type encoderFunc func(e *encodeState, v reflect.Value, opts encOpts)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/CharMatcher.java

        return new InRange(startInclusive, endInclusive);
      }
    
      /**
       * Returns a matcher with identical behavior to the given {@link Character}-based predicate, but
       * which operates on primitive {@code char} instances instead.
       */
      public static CharMatcher forPredicate(final Predicate<? super Character> predicate) {
        return predicate instanceof CharMatcher ? (CharMatcher) predicate : new ForPredicate(predicate);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/CharMatcher.java

        return new InRange(startInclusive, endInclusive);
      }
    
      /**
       * Returns a matcher with identical behavior to the given {@link Character}-based predicate, but
       * which operates on primitive {@code char} instances instead.
       */
      public static CharMatcher forPredicate(final Predicate<? super Character> predicate) {
        return predicate instanceof CharMatcher ? (CharMatcher) predicate : new ForPredicate(predicate);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // Synchronization:
    //   Mutex, MutexLock, ThreadLocal, GetThreadCount()
    //                  - synchronization primitives.
    //   GTEST_IS_THREADSAFE - defined to 1 to indicate that the above
    //                         synchronization primitives have real implementations
    //                         and Google Test is thread-safe; or 0 otherwise.
    //
    // Template meta programming:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top