Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Footer (0.1 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/HtmlReportTemplate.kt

        /**
         * Returns the header and footer of the html template as a pair.
         */
        fun load(): Pair<String, String> {
            val template = readHtmlTemplate()
            val headerEnd = template.indexOf(modelLine)
            require(headerEnd > 0) {
                "Invalid configuration cache report template!"
            }
            val header = template.substring(0, headerEnd)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

    "properties":[{"id":"unit","value":"short"},{"id":"decimals","value":2},{"id":"custom.align"},{"id":"custom.hidden","value":true}]}]},"gridPos":{"h":21,"w":24,"x":0,"y":12},"hideTimeOverride":false,"id":73,"links":[],"options":{"cellHeight":"sm","footer":{"countRows":false,"fields":"","reducer":["sum"],"show":false},"showHeader":true},"pluginVersion":"10.1.5","repeatDirection":"v","targets":[{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"label_join(sum(rate(istio_requests_tota...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. pkg/ctrlz/ctrlz.go

    	router := mux.NewRouter()
    	for _, t := range allTopics {
    		registerTopic(router, mainLayout, t)
    	}
    
    	if o.EnablePprof && o.Address == "localhost" {
    		router.HandleFunc("/debug/pprof/cmdline", pprof.Cmdline)
    		router.HandleFunc("/debug/pprof/profile", pprof.Profile)
    		router.HandleFunc("/debug/pprof/symbol", pprof.Symbol)
    		router.HandleFunc("/debug/pprof/trace", pprof.Trace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    	Short:     "package lists and patterns",
    	Long: `
    Many commands apply to a set of packages:
    
    	go <action> [packages]
    
    Usually, [packages] is a list of import paths.
    
    An import path that is a rooted path or that begins with
    a . or .. element is interpreted as a file system path and
    denotes the package in that directory.
    
    Otherwise, the import path P denotes the package found in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    			IPAddresses:  c.proxyIps,
    			Locality:     c.locality,
    			DNSDomain:    "com",
    			Metadata:     c.meta,
    			IstioVersion: c.istioVersion,
    		}
    	case model.Router:
    		proxy = &model.Proxy{
    			Type:         model.Router,
    			IPAddresses:  []string{"6.6.6.6"},
    			Locality:     c.locality,
    			DNSDomain:    "default.example.org",
    			Metadata:     c.meta,
    			IstioVersion: c.istioVersion,
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. cmd/object-api-utils.go

    // but may produce false positives on non-trivial paths.
    func pathNeedsClean(path []byte) bool {
    	if len(path) == 0 {
    		return true
    	}
    
    	rooted := path[0] == '/'
    	n := len(path)
    
    	r, w := 0, 0
    	if rooted {
    		r, w = 1, 1
    	}
    
    	for r < n {
    		switch {
    		case path[r] > 127:
    			// Non ascii.
    			return true
    		case path[r] == '/':
    			// multiple / elements
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/helpers_test.go

    				"or add it to the kubeletConfigurationNonPathFieldPaths set, as appropriate:\n%s",
    				strings.Join(sets.List(unexpected), "\n"))
    		}
    	}
    }
    
    // allPrimitiveFieldPaths returns the set of field paths in type `tp`, rooted at `path`.
    // It recursively descends into the definition of type `tp` accumulating paths to primitive leaf fields or paths in `skipRecurseList`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster.go

    	// In Sotw, we care about all services.
    	var services []*model.Service
    	if features.FilterGatewayClusterConfig && proxy.Type == model.Router {
    		services = req.Push.GatewayServices(proxy)
    	} else {
    		services = proxy.SidecarScope.Services()
    	}
    	return configgen.buildClusters(proxy, req, services)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

    #   REGION
    #   NETWORK
    function create-cloud-nat-router() {
      if [[ ${GCE_PRIVATE_CLUSTER:-} == "true" ]]; then
        if gcloud compute routers describe "$NETWORK-nat-router" --project "$NETWORK_PROJECT" --region "$REGION" &>/dev/null; then
          echo "Cloud nat already exists"
          return 0
        fi
        gcloud compute routers create "$NETWORK-nat-router" \
          --project "$NETWORK_PROJECT" \
          --region "$REGION" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    		if node, ok := path[i].(*ast.IfStmt); ok && node.Else == stmt {
    			stmt = node
    			continue
    		}
    		break
    	}
    	return stmt.(ast.Stmt)
    }
    
    // WalkASTWithParent walks the AST rooted at n. The semantics are
    // similar to ast.Inspect except it does not call f(nil).
    func WalkASTWithParent(n ast.Node, f func(n ast.Node, parent ast.Node) bool) {
    	var ancestors []ast.Node
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top