Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 186 for qsub (0.19 sec)

  1. src/crypto/internal/edwards25519/scalar_fiat.go

    //
    // curve description: Scalar
    //
    // machine_wordsize = 64 (from "64")
    //
    // requested operations: mul, add, sub, opp, nonzero, from_montgomery, to_montgomery, to_bytes, from_bytes
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
  2. src/log/slog/handler_test.go

    						t.Error(err)
    					}
    					if err := sub2.Handle(ctx, sub2Record); err != nil {
    						t.Error(err)
    					}
    				}()
    			}
    			wg.Wait()
    			for i := 1; i <= 2; i++ {
    				want := "hello from sub" + strconv.Itoa(i)
    				n := strings.Count(buf.String(), want)
    				if n != count {
    					t.Fatalf("want %d occurrences of %q, got %d", count, want, n)
    				}
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. src/crypto/ecdsa/ecdsa.go

    	params := curve.Params()
    	c.curve = curve
    	var err error
    	c.N, err = bigmod.NewModulusFromBig(params.N)
    	if err != nil {
    		panic(err)
    	}
    	c.nMinus2 = new(big.Int).Sub(params.N, big.NewInt(2)).Bytes()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/fiat/p256_fiat64.go

    //
    // curve description: p256
    //
    // machine_wordsize = 64 (from "64")
    //
    // requested operations: mul, square, add, sub, one, from_montgomery, to_montgomery, selectznz, to_bytes, from_bytes
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 41.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		{name: "ADDconst", argLength: 1, reg: gp11sp, asm: "ADDU", aux: "Int32"},                                                                         // arg0 + auxInt
    		{name: "SUB", argLength: 2, reg: gp21, asm: "SUBU"},                                                                                              // arg0 - arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  6. src/go/printer/testdata/parser.go

    func (p *parser) parseUnaryExpr(lhs bool) ast.Expr {
    	if p.trace {
    		defer un(trace(p, "UnaryExpr"))
    	}
    
    	switch p.tok {
    	case token.ADD, token.SUB, token.NOT, token.XOR, token.AND, token.RANGE:
    		pos, op := p.pos, p.tok
    		p.next()
    		x := p.parseUnaryExpr(false)
    		return &ast.UnaryExpr{pos, op, p.checkExpr(x)}
    
    	case token.ARROW:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/container_manager_linux.go

    		}
    		klog.InfoS("Container manager verified user specified cgroup-root exists", "cgroupRoot", cgroupRoot)
    		// Include the top level cgroup for enforcing node allocatable into cgroup-root.
    		// This way, all sub modules can avoid having to understand the concept of node allocatable.
    		cgroupRoot = NewCgroupName(cgroupRoot, defaultNodeAllocatableCgroupName)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/staticinit/sched.go

    	default:
    		return true
    
    	// No side effects here (arguments are checked separately).
    	case ir.ONAME,
    		ir.ONONAME,
    		ir.OTYPE,
    		ir.OLITERAL,
    		ir.ONIL,
    		ir.OADD,
    		ir.OSUB,
    		ir.OOR,
    		ir.OXOR,
    		ir.OADDSTR,
    		ir.OADDR,
    		ir.OANDAND,
    		ir.OBYTES2STR,
    		ir.ORUNES2STR,
    		ir.OSTR2BYTES,
    		ir.OSTR2RUNES,
    		ir.OCAP,
    		ir.OCOMPLIT,
    		ir.OMAPLIT,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    //
    // revision is the revision of the repository to create the zip from. Examples
    // include HEAD or SHA sums for git repositories.
    //
    // subdir must be the relative path from the base of the repository, such as
    // "sub/dir". To create a zip from the base of the repository, pass an empty
    // string.
    //
    // If CreateFromVCS returns [UnrecognizedVCSError], consider falling back to
    // [CreateFromDir].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    	}
    }
    
    func (p *parser) parseUnaryExpr() ast.Expr {
    	defer decNestLev(incNestLev(p))
    
    	if p.trace {
    		defer un(trace(p, "UnaryExpr"))
    	}
    
    	switch p.tok {
    	case token.ADD, token.SUB, token.NOT, token.XOR, token.AND, token.TILDE:
    		pos, op := p.pos, p.tok
    		p.next()
    		x := p.parseUnaryExpr()
    		return &ast.UnaryExpr{OpPos: pos, Op: op, X: x}
    
    	case token.ARROW:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top