Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 788 for Tables (0.1 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            in com.sun.tools.javac.main.RecognizedOptions#getAll(OptionHelper helper). This option was introduced in JDK 7 and controls if compiler's name tables should be reused.
            Without this option being set they are stored in a static list using soft references which can lead to memory pressure and performance deterioration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/debug/gosym/pclntab.go

    //
    // Deprecated: Use Table's PCToLine method instead.
    func (t *LineTable) PCToLine(pc uint64) int {
    	if t.isGo12() {
    		return t.go12PCToLine(pc)
    	}
    	_, _, line := t.parse(pc, -1)
    	return line
    }
    
    // LineToPC returns the program counter for the given line number,
    // considering only program counters before maxpc.
    //
    // Deprecated: Use Table's LineToPC method instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/security.go

    	re(`-W`),
    	re(`-W([^@,]+)`), // -Wall but not -Wa,-foo.
    	re(`-Wa,-mbig-obj`),
    	re(`-Wp,-D([A-Za-z_][A-Za-z0-9_]*)(=[^@,\-]*)?`),
    	re(`-Wp,-U([A-Za-z_][A-Za-z0-9_]*)`),
    	re(`-ansi`),
    	re(`-f(no-)?asynchronous-unwind-tables`),
    	re(`-f(no-)?blocks`),
    	re(`-f(no-)builtin-[a-zA-Z0-9_]*`),
    	re(`-f(no-)?common`),
    	re(`-f(no-)?constant-cfstrings`),
    	re(`-fdebug-prefix-map=([^@]+)=([^@]+)`),
    	re(`-fdiagnostics-show-note-include-stack`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/internal/zstd/fse.go

    // The FSE is written into table, which must be at least 1<<maxBits in size.
    // This returns the number of bits in the FSE table and the new offset.
    // RFC 4.1.1.
    func (r *Reader) readFSE(data block, off, maxSym, maxBits int, table []fseEntry) (tableBits, roff int, err error) {
    	br := r.makeBitReader(data, off)
    	if err := br.moreBits(); err != nil {
    		return 0, 0, err
    	}
    
    	accuracyLog := int(br.val(4)) + 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. src/unicode/letter.go

    func (special SpecialCase) ToLower(r rune) rune {
    	r1, hadMapping := to(LowerCase, r, []CaseRange(special))
    	if r1 == r && !hadMapping {
    		r1 = ToLower(r)
    	}
    	return r1
    }
    
    // caseOrbit is defined in tables.go as []foldPair. Right now all the
    // entries fit in uint16, so use uint16. If that changes, compilation
    // will fail (the constants in the composite literal will not fit in uint16)
    // and the types here can change to uint32.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/StandardTable.java

     * since an iteration across all row keys occurs.
     *
     * <p>Note that this implementation is not synchronized. If multiple threads access this table
     * concurrently and one of the threads modifies the table, it must be synchronized externally.
     *
     * @author Jared Levy
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  7. gorm.go

    	// GORM perform single create, update, delete operations in transactions by default to ensure database data integrity
    	// You can disable it by setting `SkipDefaultTransaction` to true
    	SkipDefaultTransaction bool
    	// NamingStrategy tables, columns naming strategy
    	NamingStrategy schema.Namer
    	// FullSaveAssociations full save associations
    	FullSaveAssociations bool
    	// Logger
    	Logger logger.Interface
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Aug 20 11:46:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/flags.h

      // Disable table stacking for all the tables passed to the SparseCore
      // mid level API.
      bool tf_xla_sparse_core_disable_table_stacking;
    
      // If non-zero, limits the size of the activations for a given table to
      // be below these many bytes.
      int64_t tf_xla_sparse_core_stacking_mem_limit_bytes;
    
      // If non-zero, limits the size of any table shard to be below these
      // many bytes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      output_type : TensorType;
    }
    
    table ArgMinOptions {
      output_type : TensorType;
    }
    
    table GreaterOptions {
    }
    
    table GreaterEqualOptions {
    }
    
    table LessOptions {
    }
    
    table LessEqualOptions {
    }
    
    table NegOptions {
    }
    
    table SelectOptions {
    }
    
    table SliceOptions {
    }
    
    table TransposeConvOptions {
      padding:Padding;
      stride_w:int;
      stride_h:int;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  10. src/runtime/trace.go

    		// we want is even and one more than a multiple of 3. The smallest such number is 4.
    		return 4
    	}
    	return gen + 1
    }
    
    // traceRegisterLabelsAndReasons re-registers mark worker labels and
    // goroutine stop/block reasons in the string table for the provided
    // generation. Note: the provided generation must not have started yet.
    func traceRegisterLabelsAndReasons(gen uintptr) {
    	for i, label := range gcMarkWorkerModeStrings[:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top