Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for racewrite (0.34 sec)

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

    // a” = (Select0 a')
    // b  = (CMPconst [0] a”)
    // c  = (OR a z)
    //
    // which makes it impossible to rewrite the second user. Instead the result
    // of this conversion is:
    // a' = (ADDCC x y)
    // a  = (Select0 a')
    // b  = (CMPconst [0] a)
    // c  = (OR a z)
    //
    // Which makes it trivial to rewrite b using a lowering rule.
    func convertPPC64OpToOpCC(op *Value) *Value {
    	ccOpMap := map[Op]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)
  2. pilot/pkg/config/kube/gateway/conversion.go

    				Rewrite: *filter.Path.ReplaceFullPath,
    			}
    		}
    	}
    	if filter.Hostname != nil {
    		rewrite.Authority = string(*filter.Hostname)
    	}
    	// Nothing done
    	if rewrite.Uri == "" && rewrite.UriRegexRewrite == nil && rewrite.Authority == "" {
    		return nil
    	}
    	return rewrite
    }
    
    func createRedirectFilter(filter *k8s.HTTPRequestRedirectFilter) *istio.HTTPRedirect {
    	if filter == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

     protected:
      // This flag will control the behavior of error emitting during rewrite:
      // 1) If it's true, then patterns will only emit errors during debug or
      // tracing mode. 2) If it's false, then patterns will emit standard errors
      // when there is a rewrite failure.
      bool allow_tensorlist_pass_through_;
    
      // This flag will control the behavior of setting the batch size one when the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    ((CMP|CMPW|CMPU|CMPWU) x y) && canonLessThan(x,y) => (InvertFlags ((CMP|CMPW|CMPU|CMPWU) y x))
    
    // n is always a zero-extended uint16 value, so n & z is always a non-negative 32 or 64 bit value.
    // Rewrite to a cmp int64(0) to lower into ANDCCconst in the latelower pass.
    (CMP(W|U|WU)const [0] a:(ANDconst [n] z)) => (CMPconst [0] a)
    
    // SETBC auxInt values 0=LT 1=GT 2=EQ   Crbit==1 ? 1 : 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    				fmt.Fprintf(os.Stderr, "go: %v\n", c.String())
    			}
    		}
    
    		// modload.EditBuildList reports constraint errors at
    		// the module level, but 'go get' operates on packages.
    		// Rewrite the errors to explain them in terms of packages.
    		reason := func(m module.Version) string {
    			rv, ok := r.resolvedVersion[m.Path]
    			if !ok {
    				return fmt.Sprintf("(INTERNAL ERROR: no reason found for %v)", m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top