Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for fcma (0.04 sec)

  1. pkg/proxy/ipvs/ipset/ipset_test.go

    	}
    	if !sets.NewString(fcmd.CombinedOutputLog[0]...).HasAll("ipset", "destroy", "FOOBAR") {
    		t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[0])
    	}
    	// Failure
    	err = runner.DestroySet("FOOBAR")
    	if err == nil {
    		t.Errorf("expected failure, got nil")
    	}
    }
    
    func TestDestroyAllSets(t *testing.T) {
    	fcmd := fakeexec.FakeCmd{
    		CombinedOutputScript: []fakeexec.FakeAction{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  2. pkg/volume/git_repo/git_repo_test.go

    	}
    	if !reflect.DeepEqual(expectedCmds, fcmd.CombinedOutputLog) {
    		allErrs = append(allErrs,
    			fmt.Errorf("unexpected commands: %v, expected: %v", fcmd.CombinedOutputLog, expectedCmds))
    	}
    
    	var expectedPaths []string
    	for _, expected := range expecteds {
    		expectedPaths = append(expectedPaths, filepath.Join(g.GetPath(), expected.dir))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. src/hash/crc64/crc64_test.go

    	tabISO := MakeTable(ISO)
    	tabECMA := MakeTable(ECMA)
    	for i := 0; i < len(golden); i++ {
    		g := golden[i]
    		c := New(tabISO)
    		io.WriteString(c, g.in)
    		s := c.Sum64()
    		if s != g.outISO {
    			t.Fatalf("ISO crc64(%s) = 0x%x want 0x%x", g.in, s, g.outISO)
    		}
    		c = New(tabECMA)
    		io.WriteString(c, g.in)
    		s = c.Sum64()
    		if s != g.outECMA {
    			t.Fatalf("ECMA crc64(%s) = 0x%x want 0x%x", g.in, s, g.outECMA)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 25 06:32:12 UTC 2018
    - 9.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/amd64/versions_test.go

    		}
    	}
    }
    
    func TestFMA(t *testing.T) {
    	for _, tt := range []struct {
    		x, y, z, want float64
    	}{
    		{2, 3, 4, 10},
    		{3, 4, 5, 17},
    	} {
    		if got := math.FMA(tt.x, tt.y, tt.z); got != tt.want {
    			t.Errorf("FMA(%f,%f,%f) = %f, want %f", tt.x, tt.y, tt.z, got, tt.want)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  5. src/syscall/js/js_test.go

    }
    
    // See
    // - https://developer.mozilla.org/en-US/docs/Glossary/Truthy
    // - https://stackoverflow.com/questions/19839952/all-falsey-values-in-javascript/19839953#19839953
    // - http://www.ecma-international.org/ecma-262/5.1/#sec-9.2
    func TestTruthy(t *testing.T) {
    	want := true
    	for _, key := range []string{
    		"someBool", "someString", "someInt", "someFloat", "someArray", "someDate",
    		"stringZero", // "0" is truthy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/config.go

    	SoftFloat      bool        //
    	Race           bool        // race detector enabled
    	BigEndian      bool        //
    	UseFMA         bool        // Use hardware FMA operation
    	unalignedOK    bool        // Unaligned loads/stores are ok
    	haveBswap64    bool        // architecture implements Bswap64
    	haveBswap32    bool        // architecture implements Bswap32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_inbound.go

    		opts := getFilterChainMatchOptions(mtls, lp)
    		chains := lb.inboundChainForOpts(cc, mtls, opts)
    		for _, c := range chains {
    			fcm := c.GetFilterChainMatch()
    			if fcm != nil {
    				// Clear out settings that do not matter anymore
    				fcm.TransportProtocol = ""
    			}
    		}
    		l.FilterChains = append(l.FilterChains, chains...)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/a.out.go

     */
    const (
    	BIG = 32768 - 8
    )
    
    const (
    	/* mark flags */
    	LABEL    = 1 << 0
    	LEAF     = 1 << 1
    	FLOAT    = 1 << 2
    	BRANCH   = 1 << 3
    	LOAD     = 1 << 4
    	FCMP     = 1 << 5
    	SYNC     = 1 << 6
    	LIST     = 1 << 7
    	FOLL     = 1 << 8
    	NOSCHED  = 1 << 9
    	PFX_X64B = 1 << 10 // A prefixed instruction crossing a 64B boundary
    )
    
    // Values for use in branch instruction BC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/a.out.go

    	REG_V28: 92,
    	REG_V29: 93,
    	REG_V30: 94,
    	REG_V31: 95,
    }
    
    const (
    	BIG = 2048 - 8
    )
    
    const (
    	/* mark flags */
    	LABEL = 1 << iota
    	LEAF
    	FLOAT
    	BRANCH
    	LOAD
    	FCMP
    	SYNC
    	LIST
    	FOLL
    	NOSCHED
    )
    
    const (
    	// optab is sorted based on the order of these constants
    	// and the first match is chosen.
    	// The more specific class needs to come earlier.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    		args[2] = args[3]
    		return op + " " + args[1] + ", " + args[2] + ", " + args[0]
    
    	case FCCMP, FCCMPE:
    		args[0], args[1] = args[1], args[0]
    		fallthrough
    
    	case FCMP, FCMPE:
    		if _, ok := inst.Args[1].(Imm); ok {
    			args[1] = "$(0.0)"
    		}
    		fallthrough
    
    	case FADD, FSUB, FMUL, FNMUL, FDIV, FMAX, FMIN, FMAXNM, FMINNM, FCSEL, FMADD, FMSUB, FNMADD, FNMSUB:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
Back to top