Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for reevaluate (0.36 sec)

  1. cmd/bucket-handlers.go

    			apiErr := errorCodes.ToAPIErr(ErrInvalidRequest)
    			apiErr.Description = err.Error()
    			writeErrorResponse(ctx, w, apiErr, r.URL)
    			return
    		}
    
    		// if force delete header is set, we need to evaluate the policy anyways
    		// regardless of it being true or not.
    		if s3Error := checkRequestAuthType(ctx, r, policy.ForceDeleteBucketAction, bucket, ""); s3Error != ErrNone {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    // formulas:
    //
    //     softmax = div(exp(logits), sum(exp(logits)))
    //     log_softmax = sub(logits, log(sum(exp(logits))))
    //
    // TODO(jpienaar): Evaluate benefit of templating here.
    template <typename OpTy, bool use_log = true>
    class LowerSoftmaxOp : public OpRewritePattern<OpTy> {
     public:
      using OpRewritePattern<OpTy>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    	//
    	// Rewrite C.f(p) to
    	//    func() {
    	//            _cgo0 := p
    	//            _cgoCheckPointer(_cgo0, nil)
    	//            C.f(_cgo0)
    	//    }()
    	// Using a function literal like this lets us evaluate the
    	// function arguments only once while doing pointer checks.
    	// This is particularly useful when passing additional arguments
    	// to _cgoCheckPointer, as done in checkIndex and checkAddr.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // - The array size is (bool(expr) ? 1 : -1), instead of simply
    //
    //     ((expr) ? 1 : -1).
    //
    //   This is to avoid running into a bug in MS VC 7.1, which
    //   causes ((0.0) ? 1 : -1) to incorrectly evaluate to 1.
    
    // StaticAssertTypeEqHelper is used by StaticAssertTypeEq defined in gtest.h.
    //
    // This template is declared, but intentionally undefined.
    template <typename T1, typename T2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    // build list, but we cannot follow the dependencies of a given package until we
    // know which candidate is selected — and that selection may depend on the
    // results of other queries. We need to re-evaluate the "all" queries whenever
    // the module for one or more packages in "all" are resolved.
    func (r *resolver) performPatternAllQueries(ctx context.Context) {
    	if len(r.patternAllQueries) == 0 {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    	case OpARM64NotLessEqualF:
    		return OpARM64NotGreaterEqualF
    	case OpARM64NotGreaterEqualF:
    		return OpARM64NotLessEqualF
    	default:
    		panic("unreachable")
    	}
    }
    
    // evaluate an ARM64 op against a flags value
    // that is potentially constant; return 1 for true,
    // -1 for false, and 0 for not constant.
    func ccARM64Eval(op Op, flags *Value) int {
    	fop := flags.Op
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    		if pattern == "all" {
    			allPatternIsRoot = true
    		}
    	}
    
    	updateMatches := func(rs *Requirements, ld *loader) {
    		for _, m := range matches {
    			switch {
    			case m.IsLocal():
    				// Evaluate list of file system directories on first iteration.
    				if m.Dirs == nil {
    					matchModRoots := modRoots
    					if opts.MainModule != (module.Version{}) {
    						matchModRoots = []string{MainModules.ModRoot(opts.MainModule)}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top