Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 126 for mutator (0.04 sec)

  1. src/archive/zip/writer.go

    1. }
    2. return nil
    3. }
    4.  
    5. // CreateHeader adds a file to the zip archive using the provided [FileHeader]
    6. // for the file metadata. [Writer] takes ownership of fh and may mutate
    7. // its fields. The caller must not modify fh after calling [Writer.CreateHeader].
    8. //
    9. // This returns a [Writer] to which the file contents should be written.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Sep 23 14:32:33 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

    1. * static factory method whose return type is {@code cls} or {@code cls}'s subtype.
    2. * <li>Inequality check is not performed against state mutation methods such as {@link
    3. * List#add}, or functional update methods such as {@link
    4. * com.google.common.base.Joiner#skipNulls}.
    5. * </ul>
    6. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:18:12 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. internal/s3select/sql/value.go

    1. return ok
    2. }
    3.  
    4. func (v Value) isNumeric() bool {
    5. //nolint:gocritic
    6. switch v.value.(type) {
    7. case int64, float64:
    8. return true
    9. }
    10. return false
    11. }
    12.  
    13. // setters used internally to mutate values
    14.  
    15. func (v *Value) setInt(i int64) {
    16. v.value = i
    17. }
    18.  
    19. func (v *Value) setFloat(f float64) {
    20. v.value = f
    21. }
    22.  
    23. func (v *Value) setString(s string) {
    24. v.value = s
    25. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 20.2K bytes
    - Viewed (0)
  4. fastapi/dependencies/utils.py

    1. )
    2. else:
    3. fastapi_annotation = None
    4. # Set default for Annotated FieldInfo
    5. if isinstance(fastapi_annotation, FieldInfo):
    6. # Copy `field_info` because we mutate `field_info.default` below.
    7. field_info = copy_field_info(
    8. field_info=fastapi_annotation, annotation=use_annotation
    9. )
    10. assert (
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 21:46:26 UTC 2024
    - 34.7K bytes
    - Viewed (3)
  5. android/guava/src/com/google/common/hash/BloomFilter.java

    1. * filters are appropriately sized to avoid saturating them.
    2. *
    3. * @param that The Bloom filter to combine this Bloom filter with. It is not mutated.
    4. * @throws IllegalArgumentException if {@code isCompatible(that) == false}
    5. * @since 15.0
    6. */
    7. public void putAll(BloomFilter<T> that) {
    8. checkNotNull(that);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_2x.md

    1. connection. Now it is.
    2. * Fix: Never return null on `call.proceed()`. This was a bug in call
    3. cancelation.
    4. * Fix: When a network interceptor mutates a request, that change is now
    5. reflected in `Response.networkResponse()`.
    6. * Fix: Badly-behaving caches now throw a checked exception instead of a
    7. `NullPointerException`.
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/Network.java

    1. * }</pre>
    2. *
    3. * <p>{@link NetworkBuilder#build()} returns an instance of {@link MutableNetwork}, which is a
    4. * subtype of {@code Network} that provides methods for adding and removing nodes and edges. If you
    5. * do not need to mutate a network (e.g. if you write a method than runs a read-only algorithm on
    6. * the network), you should use the non-mutating {@link Network} interface, or an {@link
    7. * ImmutableNetwork}.
    8. *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 10 15:41:27 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/archive/tar/reader.go

    1. // to store the rest of the sparse map.
    2. //
    3. // The Header.Size does not reflect the size of any extended headers used.
    4. // Thus, this function will read from the raw io.Reader to fetch extra headers.
    5. // This method mutates blk in the process.
    6. func (tr *Reader) readOldGNUSparseMap(hdr *Header, blk *block) (sparseDatas, error) {
    7. // Make sure that the input format is GNU.
    8. // Unfortunately, the STAR format also has a sparse header format that uses
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Range.java

    1. * </ul>
    2. *
    3. * <h3>Warnings</h3>
    4. *
    5. * <ul>
    6. * <li>Use immutable value types only, if at all possible. If you must use a mutable type, <b>do
    7. * not</b> allow the endpoint instances to mutate after the range is created!
    8. * <li>Your value type's comparison method should be {@linkplain Comparable consistent with
    9. * equals} if at all possible. Otherwise, be aware that concepts used throughout this
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. cmd/metacache-set.go

    1. // or the context is canceled.
    2. func (o *listPathOptions) gatherResults(ctx context.Context, in <-chan metaCacheEntry) func() (metaCacheEntriesSorted, error) {
    3. resultsDone := make(chan metaCacheEntriesSorted)
    4. // Copy so we can mutate
    5. resCh := resultsDone
    6. var done bool
    7. var mu sync.Mutex
    8. resErr := io.EOF
    9.  
    10. go func() {
    11. var results metaCacheEntriesSorted
    12. var returned bool
    13. for entry := range in {
    14. if returned {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jul 12 16:23:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top