Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for nyaris (0.23 sec)

  1. 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)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "time", "name": null, "show": true, "values": [] }, "yaxes": [ { "format": "short", "label": null, "logBase": 1, "max": null, "min": null, "show": true }, { "format": "short", "label": null, "logBase": 1, "max": null, "min": null, "show": false } ], "yaxis": { "align": false, "alignLevel": null } }, { "collapsed": false, "gridPos": { "h": 1, "w": 24, "x": 0, "y": 6 }, "id": 62, "panels": [], "title": "Resource Usage", "type": "row" }, { "aliasColors": {}, "bars": false, "dashLength": 10, "dashes": false,...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. 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)
  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. 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)
  7. 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)
  8. istioctl/pkg/multicluster/remote_secret.go

      istioctl --kubeconfig=c0.yaml create-remote-secret --name c0 --auth-type=plugin --auth-plugin-name=gcp \
        | kubectl --kubeconfig=c1.yaml apply -f -`,
    		Args: cobra.NoArgs,
    		RunE: func(c *cobra.Command, args []string) error {
    			if err := opts.prepare(ctx); err != nil {
    				return err
    			}
    			client, err := ctx.CLIClient()
    			if err != nil {
    				return err
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
  9. manifests/addons/dashboards/istio-mesh-dashboard.json

              "logBase": 1,
              "show": true
            },
            {
              "format": "short",
              "logBase": 1,
              "show": false
            }
          ],
          "yaxis": {
            "align": false
          }
        }
      ],
      "schemaVersion": 38,
      "style": "dark",
      "tags": [],
      "templating": {
        "list": [
          {
            "hide": 0,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/init.go

    			if !ok {
    				return errors.New("invalid data struct")
    			}
    
    			fmt.Printf("[init] Using Kubernetes version: %s\n", data.cfg.KubernetesVersion)
    
    			return initRunner.Run(args)
    		},
    		Args: cobra.NoArgs,
    	}
    
    	// add flags to the init command.
    	// init command local flags could be eventually inherited by the sub-commands automatically generated for phases
    	AddInitConfigFlags(cmd.Flags(), initOptions.externalInitCfg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top