Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 232 for factories (0.14 sec)

  1. src/math/big/float.go

    // but using the sign of z for rounding the result.
    // x and y must have a non-empty mantissa and valid exponent.
    func (z *Float) usub(x, y *Float) {
    	// This code is symmetric to uadd.
    	// We have not factored the common code out because
    	// eventually uadd (and usub) should be optimized
    	// by special-casing, and the code will diverge.
    
    	if debugFloat {
    		validateBinaryOperands(x, y)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

            }
            catch ( CIFSException e ) {
                throw SmbException.wrap(e);
            }
        }
    
    
        /**
         * Returns the full URL of this SMB resource with '.' and '..' components
         * factored out. An <code>SmbFile</code> constructed with the result of
         * this method will result in an <code>SmbFile</code> that is equal to
         * the original.
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. src/runtime/mgcpacer.go

    	// disproportionately affect small heaps: as heaps get smaller, the pacer's inputs get fuzzier.
    	// Shorter GC cycles and less GC work means noisy external factors like the OS scheduler have a
    	// greater impact.
    
    	memoryLimit := uint64(c.memoryLimit.Load())
    
    	// Compute term 1.
    	nonHeapMemory := mappedReady - heapFree - heapAlloc
    
    	// Compute term 2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

                return "\\\\" + url.getHost();
            }
            return "\\\\" + url.getHost() + canon.replace( '/', '\\' );
        }
    /**
     * Returns the full URL of this SMB resource with '.' and '..' components
     * factored out. An <code>SmbFile</code> constructed with the result of
     * this method will result in an <code>SmbFile</code> that is equal to
     * the original.
     *
     * @return  The canonicalized URL of this SMB resource.
     */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def GroupByDialectPass : Pass<"tf-group-by-dialect", "mlir::ModuleOp"> {
      let summary = "Groups ops into functions that only contain one dialect.";
      let description = [{
          Factors operations into subroutines such that all functions only
          contain a single dialect. Which of the dialects are allowed in the
          "top" function is configurable.
    
          For example, the code
            x.a()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/regalloc.go

    			// TODO: Improve this part. At least the size of endRegs of the predecessor also has
    			// an impact on the code size and compiler speed. But it is not easy to find a simple
    			// and efficient method that combines multiple factors.
    			idx := -1
    			for i, p := range b.Preds {
    				// If the predecessor has not been visited yet, skip it because its end state
    				// (redRegs and spillLive) has not been computed yet.
    				pb := p.b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    func (l *Loader) LoadSyms(arch *sys.Arch) {
    	// Allocate space for symbols, making a guess as to how much space we need.
    	// This function was determined empirically by looking at the cmd/compile on
    	// Darwin, and picking factors for hashed and hashed64 syms.
    	var symSize, hashedSize, hashed64Size int
    	for _, r := range l.objs[goObjStart:] {
    		symSize += r.ndef + r.nhasheddef/2 + r.nhashed64def/2 + r.NNonpkgdef()
    		hashedSize += r.nhasheddef / 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    pass for now, but should be integrated with some notion of "target" in the
    MLIR pipeline in the future.
    ### `-tf-group-by-dialect`
    
    _Groups ops into functions that only contain one dialect._
    
    Factors operations into subroutines such that all functions only
    contain a single dialect. Which of the dialects are allowed in the
    "top" function is configurable.
    
    For example, the code
      x.a()
      x.b()
      %c = y.c()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_Float32Tensor, [{The float value(s) used as scale factors when quantizing the original data that `lhs` represents.}]>:$lhs_scales,
        Arg<TF_Int32Tensor, [{The int32 value(s) used as zero points when quantizing original data that `lhs` represents.
    Must have same shape with `lhs_scales`.}]>:$lhs_zero_points,
        Arg<TF_Float32Tensor, [{The float value(s) used as scale factors when quantizing the original data that `rhs` represents.}]>:$rhs_scales,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //
    //	go 1.18
    //
    //	use ../foo/bar
    //	use ./baz
    //
    //	replace example.com/foo v1.2.3 => example.com/bar v1.4.5
    //
    // The leading keyword can be factored out of adjacent lines to create a block,
    // like in Go imports.
    //
    //	use (
    //	  ../foo/bar
    //	  ./baz
    //	)
    //
    // The use directive specifies a module to be included in the workspace's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top