Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for avoided (0.27 sec)

  1. src/database/sql/sql.go

    //
    // If a dest argument has type *[]byte, Scan saves in that argument a
    // copy of the corresponding data. The copy is owned by the caller and
    // can be modified and held indefinitely. The copy can be avoided by
    // using an argument of type [*RawBytes] instead; see the documentation
    // for [RawBytes] for restrictions on its use.
    //
    // If an argument has type *interface{}, Scan copies the value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    // This is much faster since it avoids expensive signal-related syscalls.
    //
    // This always runs without a P, so //go:nowritebarrierrec is required.
    //
    // This may run with a different stack than was recorded in g0 (there is no
    // call to callbackUpdateSystemStack prior to dropm), so this must be
    // //go:nosplit to avoid the stack bounds check.
    //
    //go:nowritebarrierrec
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	coverIndex := 0
    	// We create the cover counters as new top-level variables in the package.
    	// We need to avoid collisions with user variables (GoCover_0 is unlikely but still)
    	// and more importantly with dot imports of other covered packages,
    	// so we append 12 hex digits from the SHA-256 of the import path.
    	// The point is only to avoid accidents, not to defeat users determined to
    	// break things.
    	sum := sha256.Sum256([]byte(p.ImportPath))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/reflect/value.go

    	ktype := t.Key
    	return copyVal(ktype, iter.m.flag.ro()|flag(ktype.Kind()), iterkey)
    }
    
    // SetIterKey assigns to v the key of iter's current map entry.
    // It is equivalent to v.Set(iter.Key()), but it avoids allocating a new Value.
    // As in Go, the key must be assignable to v's type and
    // must not be derived from an unexported field.
    func (v Value) SetIterKey(iter *MapIter) {
    	if !iter.hiter.initialized() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

            }
          }
          return new EntrySetImpl();
        }
    
        @Override
        public void forEach(BiConsumer<? super K, ? super V> action) {
          checkNotNull(action);
          // avoids allocation of entries
          backingSet().forEach(k -> action.accept(k, function.apply(k)));
        }
      }
    
      static <K extends @Nullable Object, V extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // feeding into the function return. This is necessary to avoid inserting
      // casts which cannot be refined.
      if (isa<CastOp>(op)) return InferShapeForCast(op);
    
      // Handle IfOp here by inferring the shape from the else/then function
      // results. Since `output_shapes` is a derived attribute, avoid going down the
      // TF InferenceContext path as IfOp shape inference is implemented as just
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

          Class<X> exceptionType, ClosingFunction<? super X, ? extends V> fallback, Executor executor) {
        return catchingMoreGeneric(exceptionType, fallback, executor);
      }
    
      // Avoids generic type capture inconsistency problems where |? extends V| is incompatible with V.
      private <X extends Throwable, W extends V> ClosingFuture<V> catchingMoreGeneric(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ClosingFuture.java

          Class<X> exceptionType, ClosingFunction<? super X, ? extends V> fallback, Executor executor) {
        return catchingMoreGeneric(exceptionType, fallback, executor);
      }
    
      // Avoids generic type capture inconsistency problems where |? extends V| is incompatible with V.
      private <X extends Throwable, W extends V> ClosingFuture<V> catchingMoreGeneric(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

            map.removalNotificationQueue.offer(notification);
          }
        }
    
        /**
         * Performs eviction if the segment is over capacity. Avoids flushing the entire cache if the
         * newest entry exceeds the maximum weight all on its own.
         *
         * @param newest the most recently added entry
         */
        @GuardedBy("this")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

            map.removalNotificationQueue.offer(notification);
          }
        }
    
        /**
         * Performs eviction if the segment is over capacity. Avoids flushing the entire cache if the
         * newest entry exceeds the maximum weight all on its own.
         *
         * @param newest the most recently added entry
         */
        @GuardedBy("this")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top