Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for vstrihl (0.13 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	VSRQ V1, V2, V3                         // 10611205
    	VSTRIBL V1, V2                          // 1040080d
    	VSTRIBLCC V1, V2                        // 10400c0d
    	VSTRIBR V1, V2                          // 1041080d
    	VSTRIBRCC V1, V2                        // 10410c0d
    	VSTRIHL V1, V2                          // 1042080d
    	VSTRIHLCC V1, V2                        // 10420c0d
    	VSTRIHR V1, V2                          // 1043080d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9_gtables.go

    	"XSMINCQP",
    	"XSMAXCQP",
    	"XSCVUQQP",
    	"XSCVSQQP",
    	"XSCVQPUQZ",
    	"XSCVQPSQZ",
    	"XSCMPGTQP",
    	"XSCMPGEQP",
    	"XSCMPEQQP",
    	"VSTRIHRCC",
    	"VSTRIHR",
    	"VSTRIHLCC",
    	"VSTRIHL",
    	"VSTRIBRCC",
    	"VSTRIBR",
    	"VSTRIBLCC",
    	"VSTRIBL",
    	"VSRQ",
    	"VSRDBI",
    	"VSRAQ",
    	"VSLQ",
    	"VSLDBI",
    	"VRLQNM",
    	"VRLQMI",
    	"VRLQ",
    	"VPEXTD",
    	"VPDEPD",
    	"VMULOUD",
    	"VMULOSD",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	VSRAQ:          "vsraq",
    	VSRDBI:         "vsrdbi",
    	VSRQ:           "vsrq",
    	VSTRIBL:        "vstribl",
    	VSTRIBLCC:      "vstribl.",
    	VSTRIBR:        "vstribr",
    	VSTRIBRCC:      "vstribr.",
    	VSTRIHL:        "vstrihl",
    	VSTRIHLCC:      "vstrihl.",
    	VSTRIHR:        "vstrihr",
    	VSTRIHRCC:      "vstrihr.",
    	XSCMPEQQP:      "xscmpeqqp",
    	XSCMPGEQP:      "xscmpgeqp",
    	XSCMPGTQP:      "xscmpgtqp",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/anames.go

    	"VSRL",
    	"VSRLB",
    	"VSEG",
    	"VSEGB",
    	"VSEGH",
    	"VSEGF",
    	"VST",
    	"VSTEH",
    	"VSTEF",
    	"VSTEG",
    	"VSTEB",
    	"VSTM",
    	"VSTL",
    	"VSTRC",
    	"VSTRCB",
    	"VSTRCH",
    	"VSTRCF",
    	"VSTRCBS",
    	"VSTRCHS",
    	"VSTRCFS",
    	"VSTRCZB",
    	"VSTRCZH",
    	"VSTRCZF",
    	"VSTRCZBS",
    	"VSTRCZHS",
    	"VSTRCZFS",
    	"VS",
    	"VSB",
    	"VSH",
    	"VSF",
    	"VSG",
    	"VSQ",
    	"VSCBI",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/ipset.go

    	}
    	return nil
    }
    
    // checkMinVersion checks if ipset current version satisfies required min version
    func checkMinVersion(vstring string) bool {
    	version, err := utilversion.ParseGeneric(vstring)
    	if err != nil {
    		klog.ErrorS(err, "Got invalid version string", "versionString", vstring)
    		return false
    	}
    
    	minVersion, err := utilversion.ParseGeneric(MinIPSetCheckVersion)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/ipset_test.go

    	utilipset "k8s.io/kubernetes/pkg/proxy/ipvs/ipset"
    	fakeipset "k8s.io/kubernetes/pkg/proxy/ipvs/ipset/testing"
    )
    
    func TestCheckIPSetVersion(t *testing.T) {
    	testCases := []struct {
    		name    string
    		vstring string
    		valid   bool
    	}{
    		{"4.0 < 6.0 is invalid", "4.0", false},
    		{"5.1 < 6.0 is invalid", "5.1", false},
    		{"5.2 < 6.0 is invalid", "5.1.2", false},
    		{"7 is not a valid version", "7", false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. pkg/util/iptables/iptables.go

    	// --version, assume it also supports --wait
    	vstring, err := getIPTablesRestoreVersionString(exec, protocol)
    	if err != nil || vstring == "" {
    		klog.V(3).InfoS("Couldn't get iptables-restore version; assuming it doesn't support --wait")
    		return nil
    	}
    	if _, err := utilversion.ParseGeneric(vstring); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/ipset/ipset_test.go

    import (
    	"reflect"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/utils/exec"
    	fakeexec "k8s.io/utils/exec/testing"
    )
    
    func TestCheckIPSetVersion(t *testing.T) {
    	testCases := []struct {
    		vstring string
    		Expect  string
    		Err     bool
    	}{
    		{"ipset v4.0, protocol version: 4", "v4.0", false},
    		{"ipset v5.1, protocol version: 5", "v5.1", false},
    		{"ipset v6.0, protocol version: 6", "v6.0", false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  9. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    will not distil from Salt of Tartar without a great Heat? And is it not from the like attractive Power between the Particles of Oil of Vitriol and the Particles of Water, that Oil of Vitriol draws to it a good quantity of Water out of the Air, and after it is satiated draws no more, and in Distillation lets go the Water very difficultly? And when Water and Oil of Vitriol poured successively into the same Vessel grow very hot in the mixing, does not this Heat argue a great Motion in the Parts of the Liquors?...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  10. src/testdata/Isaac.Newton-Opticks.txt

    Salt of Tartar without a great Heat? And is it not from the like
    attractive Power between the Particles of Oil of Vitriol and the
    Particles of Water, that Oil of Vitriol draws to it a good quantity of
    Water out of the Air, and after it is satiated draws no more, and in
    Distillation lets go the Water very difficultly? And when Water and Oil
    of Vitriol poured successively into the same Vessel grow very hot in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
Back to top