Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Result (1.03 sec)

  1. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// match: (AtomicLoad32 ptr mem)
    	// result: (LoweredAtomicLoad32 [1] ptr mem)
    	for {
    		ptr := v_0
    		mem := v_1
    		v.reset(OpPPC64LoweredAtomicLoad32)
    		v.AuxInt = int64ToAuxInt(1)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    }
    func rewriteValuePPC64_OpAtomicLoad64(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (AtomicLoad64 ptr mem)
    	// result: (LoweredAtomicLoad64 [1] ptr mem)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          return failure();
    
        Location loc = op.getLoc();
        Value result = rewriter.create<mhlo::ConstantOp>(loc, op.getValue());
        if (result.getType() != op.getType())
          result = rewriter.create<tensor::CastOp>(loc, op.getType(), result);
        rewriter.replaceOp(op, result);
        return success();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. doc/go_spec.html

    <p>
    A function type denotes the set of all functions with the same parameter
    and result types. The value of an uninitialized variable of function type
    is <code>nil</code>.
    </p>
    
    <pre class="ebnf">
    FunctionType   = "func" Signature .
    Signature      = Parameters [ Result ] .
    Result         = Parameters | Type .
    Parameters     = "(" [ ParameterList [ "," ] ] ")" .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    			}
    		}
    
    		rt := types.Types[callDef.rtype]
    		result := s.rtcall(callDef.rtfn, true, []*types.Type{f2i(rt)}, args...)[0]
    		if rt.IsFloat() {
    			result = s.newValue1(ssa.OpCopy, rt, result)
    		}
    		if op == ssa.OpNeq32F || op == ssa.OpNeq64F {
    			result = s.newValue1(ssa.OpNot, result.Type, result)
    		}
    		return result, true
    	}
    	return nil, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

    that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - Kube-apiserver now reports latency metric for JWT authenticator authenticate token decisions in the `apiserver_authentication_jwt_authenticator_latency_seconds` metric, labeled by jwtIssuer hash and result. ([#123225](https://github.com/kubernetes/kubernetes/pull/123225), [@aramase](https://github.com/aramase))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    ### Bug or Regression
    
    - Fixes a race condition in the iptables mode of kube-proxy in 1.27 and later
      that could result in some updates getting lost (e.g., when a service gets a
      new endpoint, the rules for the new endpoint might not be added until
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    ### Bug or Regression
    
    - Fixes a race condition in the iptables mode of kube-proxy in 1.27 and later
      that could result in some updates getting lost (e.g., when a service gets a
      new endpoint, the rules for the new endpoint might not be added until
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    type http2frameWriteResult struct {
    	_   http2incomparable
    	wr  http2FrameWriteRequest // what was written (or attempted)
    	err error                  // result of the writeFrame call
    }
    
    // writeFrameAsync runs in its own goroutine and writes a single frame
    // and then reports when it's done.
    // At most one goroutine can be running writeFrameAsync at a time per
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    - Fixes a race condition in the iptables mode of kube-proxy in 1.27 and later
      that could result in some updates getting lost (e.g., when a service gets a
      new endpoint, the rules for the new endpoint might not be added until
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top