Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 892 for rflags (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/routes/flags.go

    <head>
    <title>/debug/flags/</title>
    </head>
    <body>
    /debug/flags/<br>
    <br>
    flags:<br>
    <table>
    {{range .}}
    <tr>{{.Flag}}<br>
    {{end}}
    </table>
    <br>
    full flags configurable<br>
    </body>
    </html>
    `))
    
    type debugFlag struct {
    	Flag string
    }
    
    func (f DebugFlags) addFlag(flag string) {
    	lock.Lock()
    	defer lock.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/flags.cc

    ==============================================================================*/
    
    #include "tensorflow/compiler/aot/flags.h"
    
    namespace tensorflow {
    namespace tfcompile {
    
    void AppendMainFlags(std::vector<Flag>* flag_list, MainFlags* flags) {
      const std::vector<Flag> tmp = {
          {"graph", &flags->graph,
           "Input GraphDef file.  If the file ends in '.pbtxt' it is expected to "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. src/internal/pkgbits/flags.go

    Matthew Dempsky <******@****.***> 1657649084 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 19:30:30 UTC 2022
    - 253 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    		a.Flags.VisitAll(func(f *flag.Flag) {
    			if !multi && flag.Lookup(f.Name) != nil {
    				log.Printf("%s flag -%s would conflict with driver; skipping", a.Name, f.Name)
    				return
    			}
    
    			name := prefix + f.Name
    			flag.Var(f.Value, name, f.Usage)
    		})
    	}
    
    	// standard flags: -flags, -V.
    	printflags := flag.Bool("flags", false, "print analyzer flags in JSON")
    	addVersionFlag()
    
    	// flags common to all checkers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/flags.go

    //  limitations under the License.
    
    package kube
    
    import "flag"
    
    var (
    	serviceTemplateFile      = "service.yaml"
    	deploymentTemplateFile   = "deployment.yaml"
    	vmDeploymentTemplateFile = "vm_deployment.yaml"
    )
    
    func init() {
    	flag.StringVar(&serviceTemplateFile, "istio.test.echo.kube.template.service", serviceTemplateFile,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 16:45:53 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. pkg/util/flag/flags.go

    )
    
    // TODO(mikedanese): remove these flag wrapper types when we remove command line flags
    
    var (
    	_ pflag.Value = &IPVar{}
    	_ pflag.Value = &IPPortVar{}
    	_ pflag.Value = &PortRangeVar{}
    	_ pflag.Value = &ReservedMemoryVar{}
    	_ pflag.Value = &RegisterWithTaintsVar{}
    )
    
    // IPVar is used for validating a command line option that represents an IP. It implements the pflag.Value interface
    type IPVar struct {
    	Val *string
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 19 03:30:46 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  7. src/runtime/defs_freebsd_arm.go

    }
    
    type itimerval struct {
    	it_interval timeval
    	it_value    timeval
    }
    
    type umtx_time struct {
    	_timeout timespec
    	_flags   uint32
    	_clockid uint32
    }
    
    type keventt struct {
    	ident     uint32
    	filter    int16
    	flags     uint16
    	fflags    uint32
    	pad_cgo_0 [4]byte
    	data      int64
    	udata     *byte
    	pad_cgo_1 [4]byte
    	ext       [4]uint64
    }
    
    type bintime struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/deployment/flags.go

    // limitations under the License.
    
    package deployment
    
    import (
    	"bytes"
    	"flag"
    	"fmt"
    	"os"
    
    	"gopkg.in/yaml.v3"
    
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/config"
    	"istio.io/istio/pkg/test/util/file"
    )
    
    var additionalConfigs = &configs{}
    
    func init() {
    	flag.Var(additionalConfigs, "istio.test.echo.configs", "The path to a file containing a list of "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. src/runtime/defs_freebsd_arm64.go

    }
    
    type itimerval struct {
    	it_interval timeval
    	it_value    timeval
    }
    
    type umtx_time struct {
    	_timeout timespec
    	_flags   uint32
    	_clockid uint32
    }
    
    type keventt struct {
    	ident  uint64
    	filter int16
    	flags  uint16
    	fflags uint32
    	data   int64
    	udata  *byte
    	ext    [4]uint64
    }
    
    type bintime struct {
    	sec  int64
    	frac uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/flags.go

    package driver
    
    import (
    	"flag"
    	"strings"
    )
    
    // GoFlags implements the plugin.FlagSet interface.
    type GoFlags struct {
    	UsageMsgs []string
    }
    
    // Bool implements the plugin.FlagSet interface.
    func (*GoFlags) Bool(o string, d bool, c string) *bool {
    	return flag.Bool(o, d, c)
    }
    
    // Int implements the plugin.FlagSet interface.
    func (*GoFlags) Int(o string, d int, c string) *int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 21:26:10 UTC 2020
    - 1.9K bytes
    - Viewed (0)
Back to top