Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for swiftc (0.33 sec)

  1. CHANGELOG/CHANGELOG-1.27.md

    `Interrupted()` instead. If you are returning `ErrWaitTimeout` from your own methods, switch to creating a location specific `cause err` and pass it to the new method `wait.ErrorInterrupted(cause) error` which will ensure `Interrupted()` returns true for your loop. 
      
      The `wait.NewExponentialBackoffManager` and `wait.NewJitteringBackoffManager` functions have been marked as deprecated.  Callers should switch to using the `Backoff{...}.DelayWithReset(clock, resetInterval)` method and must...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // Stride must be > 0
        if (stride <= 0) return false;
        // Dilation rate must be >= 1
        if (dilation_rate < 1) return false;
    
        Location loc = op.getLoc();
        switch (padding_type) {
          case tensorflow::Padding::VALID: {
            auto zero =
                rewriter.create<arith::ConstantIntOp>(loc, 0, shape_scalar_type);
            *padding_low = *padding_high = zero;
            break;
    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. prow/config/calico.yaml

                      chain or by appending a rule at the bottom. insert is the safe default
                      since it prevents Calico''s rules from being bypassed. If you switch
                      to append mode, be sure that the other rules in the chains signal
                      acceptance by falling through to the Calico rules, otherwise the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritePPC64.go

    // Code generated from _gen/PPC64.rules using 'go generate'; DO NOT EDIT.
    
    package ssa
    
    import "internal/buildcfg"
    import "math"
    import "cmd/compile/internal/types"
    
    func rewriteValuePPC64(v *Value) bool {
    	switch v.Op {
    	case OpAbs:
    		v.Op = OpPPC64FABS
    		return true
    	case OpAdd16:
    		v.Op = OpPPC64ADD
    		return true
    	case OpAdd32:
    		v.Op = OpPPC64ADD
    		return true
    	case OpAdd32F:
    		v.Op = OpPPC64FADDS
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

    - Kubeadm: remove 'system:masters' organization from etcd/healthcheck-client certificate. ([#119859](https://github.com/kubernetes/kubernetes/pull/119859), [@SataQiu](https://github.com/SataQiu)) [SIG Cluster Lifecycle]
    - Kubectl prune v2: Switch annotation from `contains-group-resources` to `contains-group-kinds`,
      because this is what we defined in the KEP and is clearer to end-users.  Although the functionality is
    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