Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 109 for nyaris (0.13 sec)

  1. cmd/kubeadm/app/cmd/certs.go

    	cmd := &cobra.Command{
    		Use:     "generate-csr",
    		Short:   "Generate keys and certificate signing requests",
    		Long:    generateCSRLongDesc,
    		Example: generateCSRExample,
    		Args:    cobra.NoArgs,
    		RunE: func(cmd *cobra.Command, args []string) error {
    			if err := config.load(); err != nil {
    				return err
    			}
    			return runGenCSR(out, config)
    		},
    	}
    	config.addFlagSet(cmd.Flags())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

            return builder.toString();
        }
    
        private static class ArgumentAppender {
    
            private final StringBuilder builder;
            private final File workingDirectory;
            private boolean anyArgs;
    
            public ArgumentAppender(StringBuilder builder, File workingDirectory) {
                this.builder = builder;
                this.workingDirectory = workingDirectory;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. kotlin-js-store/yarn.lock

    yargs-parser@20.2.4:
      version "20.2.4"
      resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54"
      integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==
    
    yargs-parser@^20.2.2:
      version "20.2.9"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  4. build.gradle.kts

    import org.gradle.api.tasks.testing.logging.TestExceptionFormat
    import org.jetbrains.dokka.gradle.DokkaTaskPartial
    import org.jetbrains.kotlin.gradle.dsl.kotlinExtension
    import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
    import ru.vyarus.gradle.plugin.animalsniffer.AnimalSnifferExtension
    
    buildscript {
      dependencies {
        classpath(libs.gradlePlugin.dokka)
        classpath(libs.gradlePlugin.kotlin)
        classpath(libs.gradlePlugin.kotlinSerialization)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:32:42 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. cmd/kubeadm/app/cmd/version.go

    	cmd := &cobra.Command{
    		Use:   "version",
    		Short: "Print the version of kubeadm",
    		RunE: func(cmd *cobra.Command, args []string) error {
    			return RunVersion(out, cmd)
    		},
    		Args: cobra.NoArgs,
    	}
    	cmd.Flags().StringP("output", "o", "", "Output format; available options are 'yaml', 'json' and 'short'")
    	return cmd
    }
    
    // RunVersion provides the version information of kubeadm in format depending on arguments
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. test-site/activator

                -J*) addJava "${1:2}" && shift ;;
                  *) addResidual "$1" && shift ;;
        esac
      done
    
      is_function_defined process_my_args && {
        myargs=("${residual_args[@]}")
        residual_args=()
        process_my_args "${myargs[@]}"
      }
    }
    
    # Actually runs the script.
    run() {
      # TODO - check for sane environment
    
      # process the combined args, then reset "$@" to the residuals
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
Back to top