Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Monmul (0.14 sec)

  1. test/chan/powser1.go

    	return Add(U, Cmul(neg(one), V))
    }
    
    // Multiply a power series by the monomial x^n
    
    func Monmul(U PS, n int) PS {
    	Z := mkPS()
    	go func() {
    		for ; n > 0; n-- {
    			put(zero, Z)
    		}
    		copy(U, Z)
    	}()
    	return Z
    }
    
    // Multiply by x
    
    func Xmul(U PS) PS {
    	return Monmul(U, 1)
    }
    
    func Rep(c rat) PS {
    	Z := mkPS()
    	go repeat(c, Z)
    	return Z
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  2. test/chan/powser2.go

    	return Add(U, Cmul(neg(one), V))
    }
    
    // Multiply a power series by the monomial x^n
    
    func Monmul(U PS, n int) PS {
    	Z := mkPS()
    	go func(n int, U PS, Z PS) {
    		for ; n > 0; n-- {
    			put(zero, Z)
    		}
    		copy(U, Z)
    	}(n, U, Z)
    	return Z
    }
    
    // Multiply by x
    
    func Xmul(U PS) PS {
    	return Monmul(U, 1)
    }
    
    func Rep(c *rat) PS {
    	Z := mkPS()
    	go repeat(c, Z)
    	return Z
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  3. hack/unwanted-dependencies.json

          "cloud.google.com/go/storage": "cloud dependency",
          "github.com/GoogleCloudPlatform/k8s-cloud-provider": "cloud dependency",
          "github.com/PuerkitoBio/urlesc": "unmaintained, archive mode",
          "github.com/armon/consul-api": "MPL license not in CNCF allowlist",
          "github.com/bketelsen/crypt": "unused, crypto",
          "github.com/form3tech-oss/jwt-go": "unmaintained, archive mode",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	{VSUB_EQ_F64, []int{2, 1, 0}, "VSUB", "SUBD"},
    	{VMUL_EQ_F32, []int{2, 1, 0}, "VMUL", "MULF"},
    	{VMUL_EQ_F64, []int{2, 1, 0}, "VMUL", "MULD"},
    	{VNMUL_EQ_F32, []int{2, 1, 0}, "VNMUL", "NMULF"},
    	{VNMUL_EQ_F64, []int{2, 1, 0}, "VNMUL", "NMULD"},
    	{VMLA_EQ_F32, []int{2, 1, 0}, "VMLA", "MULAF"},
    	{VMLA_EQ_F64, []int{2, 1, 0}, "VMLA", "MULAD"},
    	{VMLS_EQ_F32, []int{2, 1, 0}, "VMLS", "MULSF"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. go.work.sum

    github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8=
    github.com/hashicorp/consul/api v1.1.0 h1:BNQPM9ytxj6jbjjdRPioQ94T6YXriSopn0i8COv6SRA=
    github.com/hashicorp/consul/sdk v0.1.1 h1:LnuDWGNsoajlhGyHJvuWW6FVqRl8JOTPqS6CPTsYjhY=
    github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:12 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ir/fmt.go

    	OLE:               "<=",
    	OLSH:              "<<",
    	OLT:               "<",
    	OMAKE:             "make",
    	ONEG:              "-",
    	OMAX:              "max",
    	OMIN:              "min",
    	OMOD:              "%",
    	OMUL:              "*",
    	ONEW:              "new",
    	ONE:               "!=",
    	ONOT:              "!",
    	OOROR:             "||",
    	OOR:               "|",
    	OPANIC:            "panic",
    	OPLUS:             "+",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/field/fe_test.go

    	x2sq.Square(&x)
    
    	if x2 != x2sq {
    		t.Fatalf("all ones failed\nmul: %x\nsqr: %x\n", x2, x2sq)
    	}
    
    	var bytes [32]byte
    
    	_, err := io.ReadFull(rand.Reader, bytes[:])
    	if err != nil {
    		t.Fatal(err)
    	}
    	x.SetBytes(bytes[:])
    
    	x2.Multiply(&x, &x)
    	x2sq.Square(&x)
    
    	if x2 != x2sq {
    		t.Fatalf("all ones failed\nmul: %x\nsqr: %x\n", x2, x2sq)
    	}
    }
    
    func TestEqual(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/assign.go

    		ir.OAND,
    		ir.OANDAND,
    		ir.OANDNOT,
    		ir.OBITNOT,
    		ir.OCONV,
    		ir.OCONVIFACE,
    		ir.OCONVNOP,
    		ir.ODIV,
    		ir.ODOT,
    		ir.ODOTTYPE,
    		ir.OLITERAL,
    		ir.OLSH,
    		ir.OMOD,
    		ir.OMUL,
    		ir.ONEG,
    		ir.ONIL,
    		ir.OOR,
    		ir.OOROR,
    		ir.OPAREN,
    		ir.OPLUS,
    		ir.ORSH,
    		ir.OSUB,
    		ir.OXOR:
    		return false
    	}
    
    	// Be conservative.
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/debug/dwarf/const.go

    	opSwap       = 0x16
    	opRot        = 0x17
    	opXderef     = 0x18
    	opAbs        = 0x19
    	opAnd        = 0x1A
    	opDiv        = 0x1B
    	opMinus      = 0x1C
    	opMod        = 0x1D
    	opMul        = 0x1E
    	opNeg        = 0x1F
    	opNot        = 0x20
    	opOr         = 0x21
    	opPlus       = 0x22
    	opPlusUconst = 0x23 /* 1 op, ULEB128 addend */
    	opShl        = 0x24
    	opShr        = 0x25
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/addons/dns/dns_test.go

        cache 30
        loop
        reload
        loadbalance
        ready
    }
    `,
    			coreDNSVersion: "1.3.1",
    		},
    		{
    			name: "Modified Corefile with no migration required",
    			initialCorefileData: `consul {
            errors
            forward . 10.10.96.16:8600 10.10.96.17:8600 10.10.96.18:8600 {
                max_concurrent 1000
            }
            loadbalance
            cache 5
            reload
        }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top