Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 123 for lineAt (0.1 sec)

  1. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

                .incrementAndGet()
            }
    
            override fun flush() {
            }
    
            override fun close() {
            }
          }.apply {
            level = Level.FINEST
          }
    
        Logger.getLogger("")
          .addHandler(testHandler)
        Logger.getLogger("okhttp3")
          .addHandler(testHandler)
        Logger.getLogger(Http2::class.java.name)
          .addHandler(testHandler)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSet.java

      private static final int CUTOFF = (int) (MAX_TABLE_SIZE * DESIRED_LOAD_FACTOR);
    
      /**
       * Returns an array size suitable for the backing array of a hash table that uses open addressing
       * with linear probing in its implementation. The returned size is the smallest power of two that
       * can hold setSize elements with the desired load factor. Always returns at least setSize + 2.
       */
      @VisibleForTesting
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/util.go

    	"io"
    	"strings"
    )
    
    const REG_NONE = 0
    
    // Line returns a string containing the filename and line number for p
    func (p *Prog) Line() string {
    	return p.Ctxt.OutermostPos(p.Pos).Format(false, true)
    }
    func (p *Prog) InnermostLine(w io.Writer) {
    	p.Ctxt.InnermostPos(p.Pos).WriteTo(w, false, true)
    }
    
    // InnermostLineNumber returns a string containing the line number for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

    }
    
    LogicalResult ClusteringState::VerifyDominanceProperty(
        unsigned src_root, unsigned dst_root, Operation *insertion_point) {
      // TODO(ezhulenev): Optimize this linear scan with a map lookup.
      for (auto &member : members) {
        unsigned root = FindRoot(member.root);
        if (root != src_root) continue;
    
        // Block arguments do not really participate in clustering, they are only
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    // "Efficient Data Structures for Tamper-Evident Logging".
    // https://www.usenix.org/legacy/event/sec09/tech/full_papers/crosby.pdf
    
    // StoredHashIndex maps the tree coordinates (level, n)
    // to a dense linear ordering that can be used for hash storage.
    // Hash storage implementations that store hashes in sequential
    // storage can use this function to compute where to read or write
    // a given hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_SWAPOFF                = 529 // { int swapoff(char *name); }
    	SYS_VQUOTACTL              = 530 // { int vquotactl(const char *path, struct plistref *pref); }
    	SYS_LINKAT                 = 531 // { int linkat(int fd1, char *path1, int fd2, char *path2, int flags); }
    	SYS_EACCESS                = 532 // { int eaccess(char *path, int flags); }
    	SYS_LPATHCONF              = 533 // { int lpathconf(char *path, int name); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS_PACCEPT              = 456 // { int|sys||paccept(int s, struct sockaddr *name, socklen_t *anamelen, const sigset_t *mask, int flags); }
    	SYS_LINKAT               = 457 // { int|sys||linkat(int fd1, const char *name1, int fd2, const char *name2, int flags); }
    	SYS_RENAMEAT             = 458 // { int|sys||renameat(int fromfd, const char *from, int tofd, const char *to); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  8. src/runtime/sema.go

    	// Try to find the g that needs to be notified.
    	// If it hasn't made it to the list yet we won't find it,
    	// but it won't park itself once it sees the new notify number.
    	//
    	// This scan looks linear but essentially always stops quickly.
    	// Because g's queue separately from taking numbers,
    	// there may be minor reorderings in the list, but we
    	// expect the g we're looking for to be near the front.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_netbsd_arm64.go

    	SYS_PACCEPT              = 456 // { int|sys||paccept(int s, struct sockaddr *name, socklen_t *anamelen, const sigset_t *mask, int flags); }
    	SYS_LINKAT               = 457 // { int|sys||linkat(int fd1, const char *name1, int fd2, const char *name2, int flags); }
    	SYS_RENAMEAT             = 458 // { int|sys||renameat(int fromfd, const char *from, int tofd, const char *to); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

    union QuantizationDetails {
      CustomQuantization,
    }
    
    // Parameters for converting a quantized tensor back to float.
    table QuantizationParameters {
      // These four parameters are the asymmetric linear quantization parameters.
      // Given a quantized value q, the corresponding float value f should be:
      //   f = scale * (q - zero_point)
      // For other quantization types, the QuantizationDetails below is used.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
Back to top