Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 381 for flagstr (0.19 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. 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)
  5. 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)
  6. 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)
  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. hack/verify-flags-underscore.py

        return all_files
    
    # Collects all the flags used in golang files and verifies the flags do
    # not contain underscore. If any flag needs to be excluded from this check,
    # need to add that flag in hack/verify-flags/excluded-flags.txt.
    def check_underscore_in_flags(rootdir, files):
        # preload the 'known' flags which don't follow the - standard
        pathname = os.path.join(rootdir, "hack/verify-flags/excluded-flags.txt")
        f = open(pathname, 'r')
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top