Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 260 for interesting (0.17 sec)

  1. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

          time_format %m%d %H:%M:%S.%N
          path /var/log/cluster-autoscaler.log
          pos_file /var/log/gcp-cluster-autoscaler.log.pos
          tag cluster-autoscaler
        </source>
    
        # Logs from systemd-journal for interesting services.
        # TODO(random-liu): Keep this for compatibility, remove this after
        # cri container runtime rolls out.
        <source>
          @type systemd
          filters [{ "_SYSTEMD_UNIT": "docker.service" }]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    	didx := 0
    	for _, line := range golines {
    		if strings.HasPrefix(line, "func ") {
    
    			// We have a function definition.
    			// Pick out the corresponding entry or entries in the dump
    			// and emit if interesting (or skip if not).
    			dentry := dentries[didx]
    			emit := interestingToCompare(dentry.fname)
    			didx = processClump(didx, emit)
    		}
    
    		// Consume all existing comments.
    		if strings.HasPrefix(line, "//") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. pkg/kube/kclient/client_test.go

    	namespaces.AddEventHandler(clienttest.TrackerHandler(tracker))
    	// This is not great! But seems the best we can do.
    	// For namespaces specifically we have an interesting race.
    	// We will have 2+ informer handlers: the filter itself, and N controllers.
    	// The ordering of handlers if random. If the filter receives the event first, it could suppress re-sending the namespace event,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/encoding/json/stream_test.go

    }
    
    func TestEncoderSetEscapeHTML(t *testing.T) {
    	var c C
    	var ct CText
    	var tagStruct struct {
    		Valid   int `json:"<>&#! "`
    		Invalid int `json:"\\"`
    	}
    
    	// This case is particularly interesting, as we force the encoder to
    	// take the address of the Ptr field to use its MarshalJSON method. This
    	// is why the '&' is important.
    	marshalerStruct := &struct {
    		NonPtr strMarshaler
    		Ptr    strPtrMarshaler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse_test.go

    	{`\p{Any}`, `dot{}`},
    	{`\p{^Any}`, `cc{}`},
    
    	// Hex, octal.
    	{`[\012-\234]\141`, `cat{cc{0xa-0x9c}lit{a}}`},
    	{`[\x{41}-\x7a]\x61`, `cat{cc{0x41-0x7a}lit{a}}`},
    
    	// More interesting regular expressions.
    	{`a{,2}`, `str{a{,2}}`},
    	{`\.\^\$\\`, `str{.^$\}`},
    	{`[a-zABC]`, `cc{0x41-0x43 0x61-0x7a}`},
    	{`[^a]`, `cc{0x0-0x60 0x62-0x10ffff}`},
    	{`[α-ε☺]`, `cc{0x3b1-0x3b5 0x263a}`}, // utf-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    func (g *Graph) SortNodes(cum bool, visualMode bool) {
    	// Sort nodes based on requested mode
    	switch {
    	case visualMode:
    		// Specialized sort to produce a more visually-interesting graph
    		g.Nodes.Sort(EntropyOrder)
    	case cum:
    		g.Nodes.Sort(CumNameOrder)
    	default:
    		g.Nodes.Sort(FlatNameOrder)
    	}
    }
    
    // SelectTopNodePtrs returns a set of the top maxNodes *Node in a graph.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. src/runtime/arena_test.go

    	GC()
    	GC()
    
    	arena := NewUserArena()
    
    	// Allocate a few pointer-ful but un-initialized objects so that later we can
    	// place a reference to heap object at a more interesting location.
    	for i := 0; i < 3; i++ {
    		var x any
    		x = (*mediumPointerOdd)(nil)
    		arena.New(&x)
    	}
    
    	var x any
    	x = (*smallPointerMix)(nil)
    	arena.New(&x)
    	v := x.(*smallPointerMix)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/runtime/heapdump.go

    	args   bitvector // if args.n >= 0, pointer map of args region
    	sp     *uint8    // callee sp
    	depth  uintptr   // depth in call stack (0 == most recent)
    }
    
    // dump kinds & offsets of interesting fields in bv.
    func dumpbv(cbv *bitvector, offset uintptr) {
    	for i := uintptr(0); i < uintptr(cbv.n); i++ {
    		if cbv.ptrbit(i) == 1 {
    			dumpint(fieldKindPtr)
    			dumpint(uint64(offset + i*goarch.PtrSize))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. src/cmd/internal/src/pos.go

    	// step targets for debugging purposes (examples: register spills and reloads; code generated into
    	// the entry block; invariant code hoisted out of loops) but those instructions will still have interesting
    	// positions for profiling purposes. To reflect this these positions will be changed to PosNotStmt.
    	//
    	// When the optimizer removes an instruction marked PosIsStmt; it should attempt to find a nearby
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-binary-elementwise.mlir

      func.return %1: tensor<2xi32>
    }
    
    // CHECK-LABEL: func @broadcast_add
    // TODO(laurenzo): Change this to a (5 + 2x1) shaped add to make the check
    // patterns unambiguous and more interesting (once broadcastable trait is
    // fixed upstream).
    func.func @broadcast_add(%arg0: tensor<1xi32>, %arg1: tensor<1x2xi32>) -> tensor<1x2xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top