Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 282 for intVar (0.71 sec)

  1. src/runtime/runtime-lldb_test.go

                if frame.function:
                  print "Stopped in %s" % (frame.function.name,)
                var = frame.FindVariable('intvar')
                if var:
                  print "intvar = %s" % (var.GetValue(),)
                else:
                  print "no intvar"
        else:
          print "Process state", state
        process.Destroy()
    else:
      print "Failed to create target a.exe"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/options/options.go

    		"The file path to a pod definition used as a template for NFS persistent volume recycling")
    	fs.IntVar(&o.VolumeConfigFlags.PersistentVolumeRecyclerMinimumTimeoutNFS, "pv-recycler-minimum-timeout-nfs",
    		o.VolumeConfigFlags.PersistentVolumeRecyclerMinimumTimeoutNFS, "The minimum ActiveDeadlineSeconds to use for an NFS Recycler pod")
    	fs.IntVar(&o.VolumeConfigFlags.PersistentVolumeRecyclerIncrementTimeoutNFS, "pv-recycler-increment-timeout-nfs",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 04 20:45:21 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/app/wait.go

    	}
    	return nil
    }
    
    func init() {
    	waitCmd.PersistentFlags().IntVar(&timeoutSeconds, "timeoutSeconds", 60, "maximum number of seconds to wait for Envoy to be ready")
    	waitCmd.PersistentFlags().IntVar(&requestTimeoutMillis, "requestTimeoutMillis", 500, "number of milliseconds to wait for response")
    	waitCmd.PersistentFlags().IntVar(&periodMillis, "periodMillis", 500, "number of milliseconds to wait between attempts")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. cmd/kubemark/app/hollow_node.go

    	fs.IntVar(&c.KubeletPort, "kubelet-port", ports.KubeletPort, "Port on which HollowKubelet should be listening.")
    	fs.IntVar(&c.KubeletReadOnlyPort, "kubelet-read-only-port", ports.KubeletReadOnlyPort, "Read-only port on which Kubelet is listening.")
    	fs.StringVar(&c.NodeName, "name", "fake-node", "Name of this Hollow Node.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. pkg/env/var.go

    type StringVar struct {
    	Var
    }
    
    // BoolVar represents a single boolean environment variable.
    type BoolVar struct {
    	Var
    }
    
    // IntVar represents a single integer environment variable.
    type IntVar struct {
    	Var
    }
    
    // FloatVar represents a single floating-point environment variable.
    type FloatVar struct {
    	Var
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/flags.go

    	flag.IntVar(&callConverge, "istio.test.echo.callConverge", callConverge,
    		"Specifies the number of successive retry attempts that must be successful when calling the Echo service")
    	flag.DurationVar(&readinessTimeout, "istio.test.echo.readinessTimeout", readinessTimeout,
    		"Specifies the default timeout for echo readiness check")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 17:44:00 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. istioctl/pkg/dashboard/dashboard.go

    	kiali.PersistentFlags().IntVar(&kialiPort, "ui-port", defaultKialiPort, "The component dashboard UI port.")
    	dashboardCmd.AddCommand(kiali)
    
    	prom := promDashCmd(cliContext)
    	prom.PersistentFlags().IntVar(&promPort, "ui-port", defaultPrometheusPort, "The component dashboard UI port.")
    	dashboardCmd.AddCommand(prom)
    
    	graf := grafanaDashCmd(cliContext)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. pkg/log/options.go

    		"The path for the optional rotating log file")
    
    	intVar(&o.RotationMaxAge, "log_rotate_max_age", o.RotationMaxAge,
    		"The maximum age in days of log file backups to keep before older files are deleted (0 indicates no limit)")
    
    	intVar(&o.RotationMaxSize, "log_rotate_max_size", o.RotationMaxSize,
    		"The maximum size in megabytes of a log file beyond which the file is rotated")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	fs.IntVar(&o.MaxAge, "audit-log-maxage", o.MaxAge,
    		"The maximum number of days to retain old audit log files based on the timestamp encoded in their filename.")
    	fs.IntVar(&o.MaxBackups, "audit-log-maxbackup", o.MaxBackups,
    		"The maximum number of old audit log files to retain. Setting a value of 0 will mean there's no restriction on the number of files.")
    	fs.IntVar(&o.MaxSize, "audit-log-maxsize", o.MaxSize,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  10. pkg/test/framework/logging.go

    		func(p *[]string, name string, value []string, usage string) {
    			// TODO(ozben): Implement string array method for capturing the complete set of log settings.
    		},
    		flag.StringVar,
    		flag.IntVar,
    		flag.BoolVar)
    }
    
    func configureLogging() error {
    	o := *logOptionsFromCommandline
    	// This is spammy at info level, even for tests, so set to warn level
    	o.SetDefaultOutputLevel("installer", log.WarnLevel)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top