Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 109 for nyaris (0.14 sec)

  1. src/internal/syscall/unix/at_solaris.go

    package unix
    
    import "syscall"
    
    // Implemented as sysvicall6 in runtime/syscall_solaris.go.
    func syscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno)
    
    // Implemented as rawsysvicall6 in runtime/syscall_solaris.go.
    func rawSyscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno)
    
    //go:cgo_import_dynamic libc_fstatat fstatat "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 814 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/argument.go

    // nArgs holds how many existing arguments with this name should be set.
    // If nArgs is less than 1, all of them will be updated.
    func SetArgValues(args []Arg, name, value string, nArgs int) []Arg {
    	var count int
    	var found bool
    	for i := len(args) - 1; i >= 0; i-- {
    		if args[i].Name == name {
    			found = true
    			args[i].Value = value
    			if nArgs < 1 {
    				continue
    			}
    			count++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    				ArgsValidator:  cobra.NoArgs,
    			},
    			newEtcdLocalSubphase(),
    			newMarkControlPlaneSubphase(),
    		},
    	}
    }
    
    func newEtcdLocalSubphase() workflow.Phase {
    	return workflow.Phase{
    		Name:          "etcd",
    		Short:         "Add a new local etcd member",
    		Run:           runEtcdPhase,
    		InheritFlags:  getControlPlaneJoinPhaseFlags("etcd"),
    		ArgsValidator: cobra.NoArgs,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/runtime/syscall_windows.go

    }
    
    //go:linkname syscall_Syscall9 syscall.Syscall9
    //go:nosplit
    func syscall_Syscall9(fn, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2, err uintptr) {
    	args := [...]uintptr{a1, a2, a3, a4, a5, a6, a7, a8, a9}
    	return syscall_SyscallN(fn, args[:nargs]...)
    }
    
    //go:linkname syscall_Syscall12 syscall.Syscall12
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/argument_test.go

    		testName     string
    		args         []Arg
    		name         string
    		value        string
    		nArgs        int
    		expectedArgs []Arg
    	}{
    		{
    			testName:     "update 1 argument",
    			args:         []Arg{{Name: "foo", Value: "bar1"}, {Name: "foo", Value: "bar2"}},
    			name:         "foo",
    			value:        "zz",
    			nArgs:        1,
    			expectedArgs: []Arg{{Name: "foo", Value: "bar1"}, {Name: "foo", Value: "zz"}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

                    });
                    $.each(plot.getYAxes(), function(_, axis) {
                        const opts = axis.options;
                        opts.min = reset ? 0 : ranges.yaxis.from;
                        opts.max = reset ? null : ranges.yaxis.to;
                    });
                    plot.setupGrid();
                    plot.draw();
                    plot.clearSelection();
                };
            };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/go/types/builtins.go

    		nargs = len(argList)
    	}
    
    	// check argument count
    	{
    		msg := ""
    		if nargs < bin.nargs {
    			msg = "not enough"
    		} else if !bin.variadic && nargs > bin.nargs {
    			msg = "too many"
    		}
    		if msg != "" {
    			check.errorf(argErrPos(call), WrongArgCount, invalidOp+"%s arguments for %v (expected %d, found %d)", msg, call, bin.nargs, nargs)
    			return
    		}
    	}
    
    	switch id {
    	case _Append:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. okhttp-tls/build.gradle.kts

    import com.vanniktech.maven.publish.KotlinJvm
    
    plugins {
      kotlin("jvm")
      id("org.jetbrains.dokka")
      id("com.vanniktech.maven.publish.base")
      id("binary-compatibility-validator")
      id("ru.vyarus.animalsniffer")
    }
    
    project.applyOsgi(
      "Export-Package: okhttp3.tls",
      "Automatic-Module-Name: okhttp3.tls",
      "Bundle-SymbolicName: com.squareup.okhttp3.tls"
    )
    
    dependencies {
      api(libs.squareup.okio)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 06 05:31:00 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. src/runtime/syscall_aix.go

    // This is exported via linkname to assembly in the syscall package.
    //
    //go:nosplit
    //go:cgo_unsafe_args
    //go:linkname syscall_syscall6
    func syscall_syscall6(fn, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr) {
    	c := libcall{
    		fn:   fn,
    		n:    nargs,
    		args: uintptr(unsafe.Pointer(&a1)),
    	}
    
    	entersyscallblock()
    	asmcgocall(unsafe.Pointer(&asmsyscall6), unsafe.Pointer(&c))
    	exitsyscall()
    	return c.r1, 0, c.err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/lib/panels.libsonnet

          + options.color.withSteps(128)
          + options.yAxis.withDecimals(0)
          + options.yAxis.withUnit('s')
          + if std.length(desc) > 0 then
            heatmap.panelOptions.withDescription(desc)
          else {},
    
        bytes(title, targets, desc=''):
          self.base(title, targets, desc)
          + options.yAxis.withUnit('bytes'),
      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top