Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 461 for Cfg (0.03 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    // license that can be found in the LICENSE file.
    
    // Package cfg constructs a simple control-flow graph (CFG) of the
    // statements and expressions within a single function.
    //
    // Use cfg.New to construct the CFG for a function body.
    //
    // The blocks of the CFG contain all the function's non-control
    // statements.  The CFG does not contain control statements such as If,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/internal/cfg/cfg.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package cfg holds configuration shared by the Go command and internal/testenv.
    // Definitions that don't need to be exposed outside of cmd/go should be in
    // cmd/go/internal/cfg instead of this package.
    package cfg
    
    // KnownEnv is a list of environment variables that affect the operation
    // of the Go command.
    const KnownEnv = `
    	AR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cfg/cfg.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package cfg holds configuration shared by multiple parts
    // of the go command.
    package cfg
    
    import (
    	"bytes"
    	"context"
    	"fmt"
    	"go/build"
    	"internal/buildcfg"
    	"internal/cfg"
    	"io"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"sync"
    
    	"cmd/go/internal/fsys"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. src/internal/buildcfg/cfg.go

    Andrey Bokhanko <******@****.***> 1709736243 +0300
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/runlit.cfg.py

    from lit.llvm import llvm_config
    from lit.llvm.subst import ToolSubst
    
    # Lint for undefined variables is disabled as config is not defined inside this
    # file, instead config is injected by way of evaluating runlit.cfg.py from
    # runlit.site.cfg.py which in turn is evaluated by lit.py. The structure is
    # common for lit tests and intended to only persist temporarily (b/136126535).
    # pylint: disable=undefined-variable
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/runlit.site.cfg.py

    # Let the main config do the real work.
    lit_config.load_config(
        config,
        os.path.join(
            os.path.join(real_test_srcdir, os.environ['TEST_WORKSPACE'],
                         'tensorflow/compiler/mlir/runlit.cfg.py')))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	addFilter("tagignore", cfg.TagIgnore)
    	addFilter("tagshow", cfg.TagShow)
    	addFilter("taghide", cfg.TagHide)
    
    	ropt := &report.Options{
    		CumSort:      cfg.Sort == "cum",
    		CallTree:     cfg.CallTree,
    		DropNegative: cfg.DropNegative,
    
    		CompactLabels: cfg.CompactLabels,
    		Ratio:         1 / cfg.DivideBy,
    
    		NodeCount:    cfg.NodeCount,
    		NodeFraction: cfg.NodeFraction,
    		EdgeFraction: cfg.EdgeFraction,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. tools/istio-clean-iptables/pkg/cmd/cleanup_test.go

    				cfg.ProxyUID = "3,4"
    			},
    		},
    		{
    			"outbound-owner-groups",
    			func(cfg *config.Config) {
    				cfg.RedirectDNS = true
    				cfg.OwnerGroupsInclude = "java,202"
    			},
    		},
    		{
    			"outbound-owner-groups-exclude",
    			func(cfg *config.Config) {
    				cfg.RedirectDNS = true
    				cfg.OwnerGroupsExclude = "888,ftp"
    			},
    		},
    		{
    			"inbound-interception-mode",
    			func(cfg *config.Config) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. internal/config/scanner/scanner.go

    				return cfg, err
    			}
    		}
    	}
    
    	switch speed := env.Get(EnvSpeed, kvs.GetWithDefault(Speed, DefaultKVS)); speed {
    	case "fastest":
    		cfg.Delay, cfg.MaxWait, cfg.Cycle = 0, 0, time.Second
    	case "fast":
    		cfg.Delay, cfg.MaxWait, cfg.Cycle = 1, 100*time.Millisecond, time.Minute
    	case "default":
    		cfg.Delay, cfg.MaxWait, cfg.Cycle = 2, time.Second, time.Minute
    	case "slow":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. cni/pkg/iptables/nldeps.go

    type NetlinkDependencies interface {
    	AddInpodMarkIPRule(cfg *Config) error
    	DelInpodMarkIPRule(cfg *Config) error
    	AddLoopbackRoutes(cfg *Config) error
    	DelLoopbackRoutes(cfg *Config) error
    }
    
    func RealNlDeps() NetlinkDependencies {
    	return &realDeps{}
    }
    
    type realDeps struct{}
    
    func (r *realDeps) AddInpodMarkIPRule(cfg *Config) error {
    	return AddInpodMarkIPRule(cfg)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top