Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,643 for orderID (0.28 sec)

  1. src/runtime/trace/trace.go

    // trace to trace the durations of sequential steps in a cappuccino making
    // operation.
    //
    //	trace.WithRegion(ctx, "makeCappuccino", func() {
    //
    //	   // orderID allows to identify a specific order
    //	   // among many cappuccino order region records.
    //	   trace.Log(ctx, "orderID", orderID)
    //
    //	   trace.WithRegion(ctx, "steamMilk", steamMilk)
    //	   trace.WithRegion(ctx, "extractCoffee", extractCoffee)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. test/typeparam/ordered.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"math"
    	"sort"
    )
    
    type Ordered interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
    		~float32 | ~float64 |
    		~string
    }
    
    type orderedSlice[Elem Ordered] []Elem
    
    func (s orderedSlice[Elem]) Len() int { return len(s) }
    func (s orderedSlice[Elem]) Less(i, j int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/order.go

    		// but it doesn't. So we use the first statement's position instead.
    		ir.SetPos((*n)[0])
    	}
    	var order orderState
    	order.free = free
    	mark := order.markTemp()
    	order.edge()
    	order.stmtList(*n)
    	order.popTemp(mark)
    	*n = order.out
    }
    
    // exprInPlace orders the side effects in *np and
    // leaves them as the init list of the final *np.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  4. releasenotes/notes/filter-order.yaml

    upgradeNotes:
      - title: "Envoy filter ordering"
        content: |
          This change impacts internal implementation of how Envoy "filters" are ordered. These filters run in order to implement various functionality.
          
          The ordering is now consistent across inbound, outbound and gateway proxy modes, as well as HTTP and TCP protocols:
          
          * Metadata Exchange
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 18:28:50 UTC 2023
    - 895 bytes
    - Viewed (0)
  5. tools/go-ordered-test

    # This script runs go tests in a package, but each test is run individually. This helps
    # isolate tests that are improperly depending on global state modification of other tests
    
    # Usage: `go test -p 1 -exec $PWD/tools/go-ordered-test ./...`
    # Supported `go test` flags: -v, -race, -run, -count. All others are ignored (-timeout, etc)
    
    set -u
    
    red='\e[0;31m'
    green='\e[0;32m'
    yellow='\e[0;33m'
    clr='\e[0m'
    
    binary="${1}"
    RUN="."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 04 23:04:41 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. releasenotes/notes/serviceregistry-order.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50968
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 214 bytes
    - Viewed (0)
  7. src/internal/trace/order.go

    	return fmt.Sprintf("%d (gen=%d)", c.seq, c.gen)
    }
    
    func dumpOrdering(order *ordering) string {
    	var sb strings.Builder
    	for id, state := range order.gStates {
    		fmt.Fprintf(&sb, "G %d [status=%s seq=%s]\n", id, state.status, state.seq)
    	}
    	fmt.Fprintln(&sb)
    	for id, state := range order.pStates {
    		fmt.Fprintf(&sb, "P %d [status=%s seq=%s]\n", id, state.status, state.seq)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. src/internal/trace/internal/oldtrace/order.go

    Ian Lance Taylor <******@****.***> 1716410320 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.1-order.txt

    -- .mod --
    module example.com/retract/rationale
    
    go 1.14
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 96 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.0.0-order.txt

    -- .mod --
    module example.com/retract/rationale
    
    go 1.14
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 96 bytes
    - Viewed (0)
Back to top