Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 244 for Primitive (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/crypto/internal/nistec/fiat/p256_fiat64.go

    // Code generated by Fiat Cryptography. DO NOT EDIT.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 41.2K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/fiat/p224_fiat64.go

    // Code generated by Fiat Cryptography. DO NOT EDIT.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 43.2K bytes
    - Viewed (0)
  7. src/math/big/float.go

    	ex := int64(x.exp) - int64(len(x.mant))*_W
    	ey := int64(y.exp) - int64(len(y.mant))*_W
    
    	al := alias(z.mant, x.mant) || alias(z.mant, y.mant)
    
    	// TODO(gri) having a combined add-and-shift primitive
    	//           could make this code significantly faster
    	switch {
    	case ex < ey:
    		if al {
    			t := nat(nil).shl(y.mant, uint(ey-ex))
    			z.mant = z.mant.add(x.mant, t)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/eventbus/SubscriberRegistry.java

    import com.google.common.collect.Iterators;
    import com.google.common.collect.Lists;
    import com.google.common.collect.Maps;
    import com.google.common.collect.Multimap;
    import com.google.common.primitives.Primitives;
    import com.google.common.reflect.TypeToken;
    import com.google.common.util.concurrent.UncheckedExecutionException;
    import com.google.j2objc.annotations.Weak;
    import java.lang.reflect.Method;
    import java.util.Arrays;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

    import com.google.common.io.ByteStreams;
    import com.google.common.io.CharSink;
    import com.google.common.io.CharSource;
    import com.google.common.primitives.Primitives;
    import com.google.common.primitives.UnsignedInteger;
    import com.google.common.primitives.UnsignedLong;
    import com.google.errorprone.annotations.Keep;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.File;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

    import com.google.common.io.ByteStreams;
    import com.google.common.io.CharSink;
    import com.google.common.io.CharSource;
    import com.google.common.primitives.Primitives;
    import com.google.common.primitives.UnsignedInteger;
    import com.google.common.primitives.UnsignedLong;
    import com.google.errorprone.annotations.Keep;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.File;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 20.5K bytes
    - Viewed (0)
Back to top