Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 232 for factories (0.13 sec)

  1. guava/src/com/google/common/math/DoubleMath.java

       * Double.MAX_VALUE}.
       *
       * <p>The result is within 1 ulp of the true value.
       *
       * @throws IllegalArgumentException if {@code n < 0}
       */
      public static double factorial(int n) {
        checkNonNegative("n", n);
        if (n > MAX_FACTORIAL) {
          return Double.POSITIVE_INFINITY;
        } else {
          // Multiplying the last (n & 0xf) values into their own accumulator gives a more accurate
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    = Important concepts
    
    How much of your build gets loaded from the cache depends on many factors.
    In this section you will see some of the tools that are essential for well-cached builds.
    https://gradle.com/build-scans[Build scans] are part of that toolchain and will be used throughout this guide.
    
    == Build cache key
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Collections2.java

        final ImmutableList<E> inputList;
    
        PermutationCollection(ImmutableList<E> input) {
          this.inputList = input;
        }
    
        @Override
        public int size() {
          return IntMath.factorial(inputList.size());
        }
    
        @Override
        public boolean isEmpty() {
          return false;
        }
    
        @Override
        public Iterator<List<E>> iterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/runtime/sys_darwin.go

    	return
    }
    func open_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func nanotime1() int64 {
    	var r struct {
    		t            int64  // raw timer
    		numer, denom uint32 // conversion factors. nanoseconds = t * numer / denom.
    	}
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(nanotime_trampoline)), unsafe.Pointer(&r))
    	// Note: Apple seems unconcerned about overflow here. See
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

              return nullptr;
            }
            scale *=
                mlir::dyn_cast<quant::UniformQuantizedType>(quant_type).getScale();
          }
          for (float factor : tensor_property.derived_scale.factors) {
            scale *= factor;
          }
          spec->biases_params.emplace(
              index,
              std::make_pair(tensor_property.derived_scale.input_tensors,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. src/encoding/json/scanner.go

    // license that can be found in the LICENSE file.
    
    package json
    
    // JSON value parser state machine.
    // Just about at the limit of what is reasonable to write by hand.
    // Some parts are a bit tedious, but overall it nicely factors out the
    // otherwise common code from the multiple scanning functions
    // in this package (Compact, Indent, checkValid, etc).
    //
    // This file starts with two simple examples using the scanner
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. src/image/jpeg/scan.go

    		}
    	}
    	// Section B.2.3 states that if there is more than one component then the
    	// total H*V values in a scan must be <= 10.
    	if d.nComp > 1 && totalHV > 10 {
    		return FormatError("total sampling factors too large")
    	}
    
    	// zigStart and zigEnd are the spectral selection bounds.
    	// ah and al are the successive approximation high and low values.
    	// The spec calls these values Ss, Se, Ah and Al.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	Comments
    	Start   Position
    	Token   []string
    	InBlock bool
    	End     Position
    }
    
    func (x *Line) Span() (start, end Position) {
    	return x.Start, x.End
    }
    
    // A LineBlock is a factored block of lines, like
    //
    //	require (
    //		"x"
    //		"y"
    //	)
    type LineBlock struct {
    	Comments
    	Start  Position
    	LParen LParen
    	Token  []string
    	Line   []*Line
    	RParen RParen
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/CompactHashSet.java

     *
     * <p>This class should not be assumed to be universally superior to {@code java.util.HashSet}.
     * Generally speaking, this class reduces object allocation and memory consumption at the price of
     * moderately increased constant factors of CPU. Only use this class when there is a specific reason
     * to prioritize memory over CPU.
     *
     * @author Dimitris Andreou
     * @author Jon Noack
     */
    @GwtIncompatible // not worth using in GWT for now
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. src/go/doc/example.go

    			}
    		}
    	}
    
    	// Synthesize import declaration.
    	importDecl := &ast.GenDecl{
    		Tok:    token.IMPORT,
    		Lparen: 1, // Need non-zero Lparen and Rparen so that printer
    		Rparen: 1, // treats this as a factored import.
    	}
    	importDecl.Specs = append(namedImports, blankImports...)
    
    	// Synthesize main function.
    	funcDecl := &ast.FuncDecl{
    		Name: ast.NewIdent("main"),
    		Type: f.Type,
    		Body: body,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top