Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 109 for nyaris (0.12 sec)

  1. src/cmd/compile/internal/ssa/cse.go

    type eqclass []*Value
    
    // partitionValues partitions the values into equivalence classes
    // based on having all the following features match:
    //   - opcode
    //   - type
    //   - auxint
    //   - aux
    //   - nargs
    //   - block # if a phi op
    //   - first two arg's opcodes and auxint
    //   - NOT first two arg's aux; that can break CSE.
    //
    // partitionValues returns a list of equivalence classes, each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/mgc.go

    func gcWaitOnMark(n uint32) {
    	for {
    		// Disable phase transitions.
    		lock(&work.sweepWaiters.lock)
    		nMarks := work.cycles.Load()
    		if gcphase != _GCmark {
    			// We've already completed this cycle's mark.
    			nMarks++
    		}
    		if nMarks > n {
    			// We're done.
    			unlock(&work.sweepWaiters.lock)
    			return
    		}
    
    		// Wait until sweep termination, mark, and mark
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/syscall/zsysnum_freebsd_386.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)
  9. src/syscall/zsysnum_freebsd_arm.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. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    	"fmt"
    	"os"
    	"runtime"
    	"sync"
    	"syscall"
    	"unsafe"
    )
    
    // Implemented in runtime/syscall_solaris.go.
    type syscallFunc uintptr
    
    func rawSysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno)
    func sysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno)
    
    // SockaddrDatalink implements the Sockaddr interface for AF_LINK type sockets.
    type SockaddrDatalink struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
Back to top