Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 98 for nyaris (0.28 sec)

  1. security/tools/jwt/samples/gen-jwt.py

            "--listclaim",
            action='append',
            nargs='+',
            help="A list claim in format key1 value2 value3... Only string values are supported. Multiple list claims can be specified, e.g., -listclaim key1 val2 val3 -listclaim key2 val3 val4.")
        parser.add_argument(
            "-nestedclaim",
            "--nestedclaim",
            action='append',
            nargs='+',
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/lif/syscall.go

    //go:build solaris
    
    package lif
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    //go:cgo_import_dynamic libc_ioctl ioctl "libc.so"
    
    //go:linkname procIoctl libc_ioctl
    
    var procIoctl uintptr
    
    func sysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (uintptr, uintptr, syscall.Errno)
    
    func ioctl(s, ioc uintptr, arg unsafe.Pointer) error {
    	_, _, errno := sysvicall6(uintptr(unsafe.Pointer(&procIoctl)), 3, s, ioc, uintptr(arg), 0, 0, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 642 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/predicates.go

    			// (for correct source code we need to do all checks so
    			// order doesn't matter)
    			xargs := x.TypeArgs().list()
    			yargs := y.TypeArgs().list()
    			if len(xargs) != len(yargs) {
    				return false
    			}
    			for i, xarg := range xargs {
    				if !Identical(xarg, yargs[i]) {
    					return false
    				}
    			}
    			return identicalOrigin(x, y)
    		}
    
    	case *TypeParam:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. istioctl/pkg/config/config.go

    }
    
    // Cmd represents the config subcommand command
    func Cmd() *cobra.Command {
    	configCmd := &cobra.Command{
    		Use:   "config SUBCOMMAND",
    		Short: "Configure istioctl defaults",
    		Args:  cobra.NoArgs,
    		Example: `  # list configuration parameters
      istioctl experimental config list`,
    	}
    	configCmd.AddCommand(listCommand())
    	return configCmd
    }
    
    func listCommand() *cobra.Command {
    	listCmd := &cobra.Command{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jul 30 12:16:07 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/workflow/runner_test.go

    			runner: Runner{
    				Phases: []Phase{phaseBuilder6("foo", cobra.NoArgs,
    					phaseBuilder6("bar", cobra.ExactArgs(1)),
    					phaseBuilder6("baz", customArgs),
    				)},
    			},
    			testCases: map[string]argTest{
    				"phase foo": {
    					pass: []string{},
    					fail: []string{"one"},
    					args: cobra.NoArgs,
    				},
    				"phase foo bar": {
    					pass: []string{"one"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 20:03:45 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  6. pkg/kube/client.go

    		serverInfo.Version = strings.Join(versionParts[:nParts-2], "-")
    		serverInfo.GitRevision = versionParts[nParts-2]
    		serverInfo.BuildStatus = versionParts[nParts-1]
    		if serverInfo.GitRevision == "dirty" {
    			serverInfo.GitRevision = strings.Join([]string{versionParts[nParts-3], "dirty"}, "-")
    			serverInfo.Version = strings.Join(versionParts[:nParts-3], "-")
    		}
    		serverInfo.GitTag = serverInfo.Version
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/kubeconfig.go

    			}
    
    			// Otherwise, write a kubeconfig file with a generate client cert
    			return kubeconfigphase.WriteKubeConfigWithClientCert(out, internalCfg, clientName, organizations, notAfter)
    		},
    		Args: cobra.NoArgs,
    	}
    
    	options.AddConfigFlag(cmd.Flags(), &cfgPath)
    
    	// Add command specific flags
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. docs/tr/docs/tutorial/request-forms.md

    !!! warning "Uyarı"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed May 08 19:10:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/syscall/mksyscall_libc.pl

    			$text .= "\tif $name {\n\t\t_p$n = 1\n\t} else {\n\t\t_p$n = 0\n\t}\n";
    			push @args, "uintptr(_p$n)";
    			$n++;
    		} else {
    			push @args, "uintptr($name)";
    		}
    	}
    	my $nargs = @args;
    
    	my $asmfuncname="";
    	my $asmrawfuncname="";
    
    	if($aix){
    		$asmfuncname="syscall6";
    		$asmrawfuncname="rawSyscall6";
    	} else {
    		$asmfuncname="sysvicall6";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 11:28:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/check.go

    		for _, v := range b.Values {
    			// Check to make sure argument count makes sense (argLen of -1 indicates
    			// variable length args)
    			nArgs := opcodeTable[v.Op].argLen
    			if nArgs != -1 && int32(len(v.Args)) != nArgs {
    				f.Fatalf("value %s has %d args, expected %d", v.LongString(),
    					len(v.Args), nArgs)
    			}
    
    			// Check to make sure aux values make sense.
    			canHaveAux := false
    			canHaveAuxInt := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top