Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for fcma (0.05 sec)

  1. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    		return true
    	}
    
    	isVirtual := listener.Name == model.VirtualInboundListenerName || listener.Name == model.VirtualOutboundListenerName
    	// We only do this for virtual listeners, which will move the listener port into a FCM. For non-virtual listeners,
    	// we will handle this in the proper listener match.
    	if isVirtual && lMatch.GetPortNumber() > 0 && fc.GetFilterChainMatch().GetDestinationPort().GetValue() != lMatch.GetPortNumber() {
    		return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. src/encoding/asn1/asn1.go

    		case TagT61String:
    			v, err = parseT61String(innerBytes)
    		case TagUTF8String:
    			v, err = parseUTF8String(innerBytes)
    		case TagGeneralString:
    			// GeneralString is specified in ISO-2022/ECMA-35,
    			// A brief review suggests that it includes structures
    			// that allow the encoding to change midstring and
    			// such. We give up and pass it as an 8-bit string.
    			v, err = parseT61String(innerBytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Neq16  x y) => (NotEqual (CMPW (ZeroExt16to32 x) (ZeroExt16to32 y)))
    (Neq32  x y) => (NotEqual (CMPW  x y))
    (Neq64  x y) => (NotEqual (CMP   x y))
    (NeqPtr x y) => (NotEqual (CMP   x y))
    (Neq(32|64)F x y) => (NotEqual (FCMP(S|D) x y))
    
    (Less(8|16) x y) => (LessThan (CMPW (SignExt(8|16)to32 x) (SignExt(8|16)to32 y)))
    (Less32 x y) => (LessThan (CMPW x y))
    (Less64 x y) => (LessThan (CMP  x y))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"FCMP","Bits":"0|0|0|1|1|1|1|0|00:2|1|Rm:5|0|0|1|0|0|0|Rn:5|00:2|0|0|0","Arch":"Single-precision variant","Syntax":"FCMP <Sn>, <Sm>","Code":"","Alias":""},
    {"Name":"FCMP","Bits":"0|0|0|1|1|1|1|0|00:2|1|(00000):5|0|0|1|0|0|0|Rn:5|01:2|0|0|0","Arch":"Single-precision, zero variant","Syntax":"FCMP <Sn>, #0.0","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    		}
    	}
    }
    
    // Test to catch new fields in FilterChainMatch message.
    func TestFilterChainMatchFields(t *testing.T) {
    	fcm := listener.FilterChainMatch{}
    	e := reflect.ValueOf(&fcm).Elem()
    	// If this fails, that means new fields have been added to FilterChainMatch, filterChainMatchEqual function needs to be updated.
    	if e.NumField() != 14 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	flag.BoolVar(&b.Verbose, "v", false, "enable verbose output")
    
    	env := ""
    	envFlag := ""
    	flag.Func("compile", "bisect source locations affected by Go compiler `rewrite` (fma, loopvar, ...)", func(value string) error {
    		if envFlag != "" {
    			return fmt.Errorf("cannot use -%s and -compile", envFlag)
    		}
    		envFlag = "compile"
    		env = "GOCOMPILEDEBUG=" + value + "hash=PATTERN"
    		return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/asm5.go

    		o1 |= (uint32(v) & 0xf) << 0
    		o1 |= (uint32(v) & 0xf0) << 12
    
    	case 82: /* fcmp freg,freg, */
    		o1 = c.oprrr(p, p.As, int(p.Scond))
    
    		o1 |= (uint32(p.Reg)&15)<<12 | (uint32(p.From.Reg)&15)<<0
    		o2 = 0x0ef1fa10 // VMRS R15
    		o2 |= ((uint32(p.Scond) & C_SCOND) ^ C_SCOND_XOR) << 28
    
    	case 83: /* fcmp freg,, */
    		o1 = c.oprrr(p, p.As, int(p.Scond))
    
    		o1 |= (uint32(p.From.Reg)&15)<<12 | 1<<16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// determined by the sign of the exact result a*b+c.
    	// See section 6.3 in ieee754.
    	//
    	// When the multiply is an infinity times a zero, the result is NaN.
    	// See section 7.2 in ieee754.
    	{name: "FMA", argLength: 3}, // compute (a*b)+c without intermediate rounding
    
    	// Data movement. Max argument length for Phi is indefinite.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
    
      <!-- =================================================================== -->
      <!-- Office Open XML file formats                                        -->
      <!-- http://www.ecma-international.org/publications/standards/Ecma-376.htm -->
      <!-- =================================================================== -->
      <mime-type type="application/x-tika-ooxml">
        <sub-class-of type="application/zip"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteS390X.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (FCMP x (FMOVDconst [0.0]))
    	// result: (LTDBR x)
    	for {
    		x := v_0
    		if v_1.Op != OpS390XFMOVDconst || auxIntToFloat64(v_1.AuxInt) != 0.0 {
    			break
    		}
    		v.reset(OpS390XLTDBR)
    		v.AddArg(x)
    		return true
    	}
    	// match: (FCMP (FMOVDconst [0.0]) x)
    	// result: (InvertFlags (LTDBR <v.Type> x))
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
Back to top