Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,213 for flagstr (0.12 sec)

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

    )
    
    // DebugFlags adds handlers for flags under /debug/flags.
    type DebugFlags struct {
    }
    
    // Install registers the APIServer's flags handler.
    func (f DebugFlags) Install(c *mux.PathRecorderMux, flag string, handler func(http.ResponseWriter, *http.Request)) {
    	c.UnlistedHandle("/debug/flags", http.HandlerFunc(f.Index))
    	c.UnlistedHandlePrefix("/debug/flags/", http.HandlerFunc(f.Index))
    
    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. src/cmd/asm/internal/flags/flags.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package flags implements top-level flags and the usage message for the assembler.
    package flags
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"flag"
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.h

        absl::flat_hash_set<std::string> xla_compile_and_run_allowed_devices_;
      } tf_xla_use_device_api;
    };
    
    // Flags for the XlaCallModule kernel.
    struct XlaCallModuleFlags {
      // Used by XlaCallModuleOp to specify safety checks to disable.
      absl::flat_hash_set<std::string> disabled_checks;
    };
    
    // Flags for the build_xla_ops pass.
    struct BuildXlaOpsPassFlags {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/flags.go

    )
    
    var (
    	callTimeout      = 30 * time.Second
    	callDelay        = 20 * time.Millisecond
    	callConverge     = 3
    	readinessTimeout = 10 * time.Minute
    	callsPerWorkload = 3
    )
    
    // init registers the command-line flags that we can exposed for "go test".
    func init() {
    	flag.DurationVar(&callTimeout, "istio.test.echo.callTimeout", callTimeout,
    		"Specifies the default total timeout used when retrying calls to the Echo service")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 17:44:00 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/kubelet/flags.go

    		nodeName = name
    	}
    	return nodeName, hostname, err
    }
    
    // WriteKubeletDynamicEnvFile writes an environment file with dynamic flags to the kubelet.
    // Used at "kubeadm init" and "kubeadm join" time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. pkg/test/framework/resource/flags.go

    	"istio.io/istio/pkg/test/framework/config"
    	"istio.io/istio/pkg/test/framework/label"
    )
    
    var settingsFromCommandLine = DefaultSettings()
    
    // SettingsFromCommandLine returns settings obtained from command-line flags. config.Parse must be called before
    // calling this function.
    func SettingsFromCommandLine(testID string) (*Settings, error) {
    	if !config.Parsed() {
    		panic("config.Parse must be called before this function")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. cmd/kube-apiserver/app/options/globalflags.go

    	// ensure libs have a chance to globally register their flags
    	_ "k8s.io/apiserver/pkg/admission"
    )
    
    // AddCustomGlobalFlags explicitly registers flags that internal packages register
    // against the global flagsets from "flag". We do this in order to prevent
    // unwanted flags from leaking into the kube-apiserver's flagset.
    func AddCustomGlobalFlags(fs *pflag.FlagSet) {
    	// Lookup flags in global flag set and re-register the values with our flagset.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 07:44:58 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. cmd/kubelet/app/options/globalflags.go

    	"k8s.io/component-base/version/verflag"
    )
    
    // AddGlobalFlags explicitly registers flags that libraries (glog, verflag, etc.) register
    // against the global flagsets from "flag" and "github.com/spf13/pflag".
    // We do this in order to prevent unwanted flags from leaking into the Kubelet's flagset.
    func AddGlobalFlags(fs *pflag.FlagSet) {
    	addCadvisorFlags(fs)
    	addCredentialProviderFlags(fs)
    	verflag.AddFlags(fs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/flags.go

    //  See the License for the specific language governing permissions and
    //  limitations under the License.
    
    package istio
    
    import (
    	"flag"
    )
    
    // init registers the command-line flags that we can exposed for "go test".
    func init() {
    	flag.StringVar(&settingsFromCommandline.SystemNamespace, "istio.test.kube.systemNamespace", settingsFromCommandline.SystemNamespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. pkg/test/framework/components/environment/kube/flags.go

    	configTopology string
    	// file defining all types of topology
    	clusterConfigs configsVal
    )
    
    // NewSettingsFromCommandLine returns Settings obtained from command-line flags.
    // config.Parse must be called before calling this function.
    func NewSettingsFromCommandLine() (*Settings, error) {
    	if !config.Parsed() {
    		panic("config.Parse must be called before this function")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top