Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,213 for flagstr (0.13 sec)

  1. src/cmd/compile/internal/inline/inlheur/testdata/props/acrosscall.go

    // {"Flags":0,"ParamFlags":null,"ResultFlags":[4]}
    // callsite: acrosscall.go:135:19|0 flagstr "" flagval 0 score 7 mask 0 maskstr ""
    // <endcallsites>
    // <endfuncpreamble>
    func T_acrosscall_returnscci() I {
    	return returnscci()
    }
    
    // acrosscall.go T_acrosscall_multiret 144 0 1
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":[0],"ResultFlags":[0]}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/testdata/props/calls.go

    //   1 ParamNoInfo
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":[96,0],"ResultFlags":null}
    // callsite: calls.go:103:9|0 flagstr "" flagval 0 score 2 mask 0 maskstr ""
    // callsite: calls.go:112:9|1 flagstr "" flagval 0 score 2 mask 0 maskstr ""
    // callsite: calls.go:115:9|2 flagstr "" flagval 0 score 2 mask 0 maskstr ""
    // callsite: calls.go:119:12|3 flagstr "CallSiteOnPanicPath" flagval 2 score 102 mask 1 maskstr "panicPathAdj"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/testdata/props/returns2.go

    // <endcallsites>
    // <endfuncpreamble>
    func T_multi_return_feeds_iface_call() {
    	_, b, _ := newBar2(10)
    	b.Plark()
    }
    
    // returns2.go T_returned_inlinable_func_feeds_indirect_call 41 0 1
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":[0],"ResultFlags":null}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. internal/config/bool-flag_test.go

    			t.Fatalf("result: expected: %v, got: %v", testCase.expectedResult, flag)
    		}
    	}
    }
    
    // Test ParseBoolFlag()
    func TestParseBoolFlag(t *testing.T) {
    	testCases := []struct {
    		flagStr        string
    		expectedResult BoolFlag
    		expectedErr    bool
    	}{
    		{"", BoolFlag(false), true},
    		{"junk", BoolFlag(false), true},
    		{"true", BoolFlag(true), false},
    		{"false", BoolFlag(false), false},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/mmu.go

    	"assist":     trace.UtilAssist,
    	"sweep":      trace.UtilSweep,
    }
    
    func requestUtilFlags(r *http.Request) trace.UtilFlags {
    	var flags trace.UtilFlags
    	for _, flagStr := range strings.Split(r.FormValue("flags"), "|") {
    		flags |= utilFlagNames[flagStr]
    	}
    	return flags
    }
    
    type mmuCacheEntry struct {
    	init     sync.Once
    	util     [][]trace.MutatorUtil
    	mmuCurve *trace.MMUCurve
    	err      error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    	dfp := dentry.props
    	efp := eentry.props
    	dfn := dentry.fname
    
    	// Compare function flags.
    	if dfp.Flags != efp.Flags {
    		t.Errorf("testcase %q: Flags mismatch for %q: got %s, wanted %s",
    			tc, dfn, dfp.Flags.String(), efp.Flags.String())
    	}
    	// Compare returns
    	rgot := propBitsToString[ResultPropBits](dfp.ResultFlags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/inlheur/testdata/props/funcflags.go

    import "os"
    
    // funcflags.go T_simple 20 0 1
    // Flags FuncPropNeverReturns
    // <endpropsdump>
    // {"Flags":1,"ParamFlags":null,"ResultFlags":null}
    // <endcallsites>
    // <endfuncpreamble>
    func T_simple() {
    	panic("bad")
    }
    
    // funcflags.go T_nested 32 0 1
    // Flags FuncPropNeverReturns
    // ParamFlags
    //   0 ParamFeedsIfOrSwitch
    // <endpropsdump>
    // {"Flags":1,"ParamFlags":[32],"ResultFlags":null}
    // <endcallsites>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. 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 {
    	return flag.Int(o, d, c)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 21:26:10 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  9. pkg/kubelet/config/flags.go

    	// specified in imageCredentialProviderConfigFile.
    	// +optional
    	ImageCredentialProviderBinDir string
    }
    
    // AddFlags adds flags to the container runtime, according to ContainerRuntimeOptions.
    func (s *ContainerRuntimeOptions) AddFlags(fs *pflag.FlagSet) {
    	// General settings.
    	fs.StringVar(&s.RuntimeCgroups, "runtime-cgroups", s.RuntimeCgroups, "Optional absolute name of cgroups to create and run the runtime in.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 03:14:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/flags.cc

          {"out_session_module", &flags->out_session_module,
           "Output session module proto."},
          {"mlir_components", &flags->mlir_components,
           "The MLIR components to enable. Currently only Bridge is supported."},
          {"experimental_quantize", &flags->experimental_quantize,
           "If set, quantization passes will run and dump the result before HLO "
           "code generation."},
          {"sanitize_dataflow", &flags->sanitize_dataflow,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 4.9K bytes
    - Viewed (0)
Back to top