Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for nyaris (0.1 sec)

  1. src/time/zoneinfo_abbrs_windows.go

    	"Belarus Standard Time":           {"+03", "+03"},     // Europe/Minsk
    	"Russian Standard Time":           {"MSK", "MSK"},     // Europe/Moscow
    	"Romance Standard Time":           {"CET", "CEST"},    // Europe/Paris
    	"Russia Time Zone 3":              {"+04", "+04"},     // Europe/Samara
    	"Saratov Standard Time":           {"+04", "+04"},     // Europe/Saratov
    	"Volgograd Standard Time":         {"MSK", "MSK"},     // Europe/Volgograd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. src/syscall/syscall_solaris.go

    func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    
    // Implemented in asm_solaris_amd64.s.
    func rawSysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    func sysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    
    type SockaddrDatalink struct {
    	Family uint16
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/op.go

    	for i := int64(0); i < a.NResults(); i++ {
    		tys = append(tys, a.TypeOfResult(i))
    	}
    	tys = append(tys, types.TypeMem)
    	return types.NewResults(tys)
    }
    
    // NArgs returns the number of arguments (including receiver, if there is one).
    func (a *AuxCall) NArgs() int64 {
    	return int64(len(a.abiInfo.InParams()))
    }
    
    // String returns "AuxCall{<fn>}"
    func (a *AuxCall) String() string {
    	var fn string
    	if a.Fn == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/unify.go

    			// even if the origins don't match; for better error
    			// messages (see go.dev/issue/53692).
    			xargs := x.TypeArgs().list()
    			yargs := y.TypeArgs().list()
    			if len(xargs) != len(yargs) {
    				return false
    			}
    			for i, xarg := range xargs {
    				if !u.nify(xarg, yargs[i], mode, p) {
    					return false
    				}
    			}
    			return identicalOrigin(x, y)
    		}
    
    	case *TypeParam:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/syscall/syscall_aix.go

    func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    
    // Implemented in runtime/syscall_aix.go.
    func rawSyscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    func syscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    
    // Constant expected by package but not supported
    const (
    	_ = iota
    	TIOCSCTTY
    	SYS_EXECVE
    	SYS_FCNTL
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. istioctl/pkg/validate/validate.go

      kubectl get services -o yaml | istioctl validate -f -
    
      # Also see the related command 'istioctl analyze'
      istioctl analyze samples/bookinfo/networking/bookinfo-gateway.yaml
    `,
    		Args: cobra.NoArgs,
    		RunE: func(c *cobra.Command, _ []string) error {
    			istioNamespace := ctx.IstioNamespace()
    			defaultNamespace := ctx.NamespaceOrDefault("")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    			p.LocalFlags.VisitAll(func(f *pflag.Flag) {
    				phaseCmd.Flags().AddFlag(f)
    			})
    		}
    
    		// if this phase has children (not a leaf) it doesn't accept any args
    		if len(p.Phases) > 0 {
    			phaseCmd.Args = cobra.NoArgs
    		} else {
    			if p.ArgsValidator == nil {
    				phaseCmd.Args = cmd.Args
    			} else {
    				phaseCmd.Args = p.ArgsValidator
    			}
    		}
    
    		// adds the command to parent
    		if p.level == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	// Verb is good. If len(state.argNums)>trueArgs, we have something like %.*s and all
    	// but the final arg must be an integer.
    	trueArgs := 1
    	if state.verb == '%' {
    		trueArgs = 0
    	}
    	nargs := len(state.argNums)
    	for i := 0; i < nargs-trueArgs; i++ {
    		argNum := state.argNums[i]
    		if !argCanBeChecked(pass, call, i, state) {
    			return
    		}
    		arg := call.Args[argNum]
    		if reason, ok := matchArgType(pass, argInt, arg); !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_SIGQUEUE                 = 456 // { int sigqueue(pid_t pid, int signum, void *value); }
    	SYS_ABORT2                   = 463 // { int abort2(const char *why, int nargs, void **args); }
    	SYS_THR_SET_NAME             = 464 // { int thr_set_name(long id, const char *name); }
    	SYS_RTPRIO_THREAD            = 466 // { int rtprio_thread(int function, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/cc_op_gen_util.cc

      } else {
        comment = strings::StrCat(api_def.summary(), "\n");
      }
      if (!api_def.description().empty()) {
        strings::StrAppend(&comment, "\n", api_def.description(), "\n");
      }
      strings::StrAppend(&comment, "\nArgs:\n* scope: A Scope object\n");
    
      // Process inputs
      for (int i = 0; i < api_def.arg_order_size(); ++i) {
        const auto& arg = *FindInputArg(api_def.arg_order(i), graph_op_def);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
Back to top