Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for nyaris (0.43 sec)

  1. 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)
  2. 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)
  3. doc/README.md

    ## For the release team
    
    The `relnote` tool, at `golang.org/x/build/cmd/relnote`, operates on the files
    in `doc/next`.
    
    As a release cycle nears completion, run `relnote todo` to get a list of
    unfinished release note work.
    
    To prepare the release notes for a release, run `relnote generate`.
    That will merge the `.md` files in `next` into a single file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. hack/verify-flags-underscore.py

    # limitations under the License.
    
    import argparse
    import os
    import re
    import sys
    
    parser = argparse.ArgumentParser()
    parser.add_argument("filenames", help="list of files to check, all files if unspecified", nargs='*')
    args = parser.parse_args()
    
    # Cargo culted from http://stackoverflow.com/questions/898669/how-can-i-detect-if-a-file-is-binary-non-text-in-python
    def is_binary(pathname):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/os/env_test.go

    	"strings"
    	"testing"
    )
    
    // testGetenv gives us a controlled set of variables for testing Expand.
    func testGetenv(s string) string {
    	switch s {
    	case "*":
    		return "all the args"
    	case "#":
    		return "NARGS"
    	case "$":
    		return "PID"
    	case "1":
    		return "ARGUMENT1"
    	case "HOME":
    		return "/usr/gopher"
    	case "H":
    		return "(Value of H)"
    	case "home_1":
    		return "/usr/foo"
    	case "_":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 04 15:31:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    		InheritFlags:  getControlPlanePreparePhaseFlags("control-plane"),
    		ArgsValidator: cobra.NoArgs,
    	}
    }
    
    func runControlPlanePrepareControlPlaneSubphase(c workflow.RunData) error {
    	data, ok := c.(JoinData)
    	if !ok {
    		return errors.New("control-plane-prepare phase invoked with an invalid data struct")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. istioctl/pkg/version/version.go

    	})
    	opts.AttachControlPlaneFlags(versionCmd)
    	centralOpts.AttachControlPlaneFlags(versionCmd)
    	versionCmd.Args = func(c *cobra.Command, args []string) error {
    		if err := cobra.NoArgs(c, args); err != nil {
    			return err
    		}
    		if err := centralOpts.ValidateControlPlaneFlags(); err != nil {
    			return err
    		}
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. hack/boilerplate/boilerplate.py

    import datetime
    import difflib
    import glob
    import os
    import re
    import sys
    
    parser = argparse.ArgumentParser()
    parser.add_argument(
        "filenames", help="list of files to check, all files if unspecified", nargs="*"
    )
    
    rootdir = os.path.dirname(__file__) + "/../../"
    rootdir = os.path.abspath(rootdir)
    parser.add_argument("--rootdir", default=rootdir, help="root directory to examine")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/universe.go

    	_Alignof
    	_Offsetof
    	_Sizeof
    	_Slice
    	_SliceData
    	_String
    	_StringData
    
    	// testing support
    	_Assert
    	_Trace
    )
    
    var predeclaredFuncs = [...]struct {
    	name     string
    	nargs    int
    	variadic bool
    	kind     exprKind
    }{
    	_Append:  {"append", 1, true, expression},
    	_Cap:     {"cap", 1, false, expression},
    	_Clear:   {"clear", 1, false, statement},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/go/types/universe.go

    	_Alignof
    	_Offsetof
    	_Sizeof
    	_Slice
    	_SliceData
    	_String
    	_StringData
    
    	// testing support
    	_Assert
    	_Trace
    )
    
    var predeclaredFuncs = [...]struct {
    	name     string
    	nargs    int
    	variadic bool
    	kind     exprKind
    }{
    	_Append:  {"append", 1, true, expression},
    	_Cap:     {"cap", 1, false, expression},
    	_Clear:   {"clear", 1, false, statement},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top