Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 98 for planes (0.12 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // "decomposed" quantized ops produced from the framework level. This is why
      // they are placed right after the `LegalizeTFXlaCallModuleToStablehloPass`
      // because the quantization patterns should be identified before any
      // optimizations kick in.
      //
      // There are future plans to make the framework to directly produce StableHLO
      // uniform quantized ops and deprecate `ComposeUniformQuantizedTypePass`. If
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. pilot/pkg/xds/discovery.go

    // limitations under the License.
    
    package xds
    
    import (
    	"context"
    	"fmt"
    	"sort"
    	"strconv"
    	"sync"
    	"time"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"github.com/google/uuid"
    	"go.uber.org/atomic"
    	"golang.org/x/time/rate"
    	"google.golang.org/grpc"
    
    	"istio.io/istio/pilot/pkg/autoregistration"
    	"istio.io/istio/pilot/pkg/features"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/emit.go

    // files simultaneously.
    //
    // For counter data files there is less chance of a collision, hence
    // the openOutputFiles() stores the counter data file in 'cfname' and
    // then places the *io.File into 'cf'.
    type emitState struct {
    	mfname string   // path of final meta-data output file
    	mftmp  string   // path to meta-data temp file (if needed)
    	mf     *os.File // open os.File for meta-data temp file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/syscall/exec_linux.go

    	if sys.Setpgid || sys.Foreground {
    		// Place child in process group.
    		_, _, err1 = RawSyscall(SYS_SETPGID, 0, uintptr(sys.Pgid), 0)
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	if sys.Foreground {
    		pgrp = int32(sys.Pgid)
    		if pgrp == 0 {
    			pid, _ = rawSyscallNoError(SYS_GETPID, 0, 0, 0)
    
    			pgrp = int32(pid)
    		}
    
    		// Place process group in foreground.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/runtime/sema.go

    	// on the ticket: s.ticket <= both s.prev.ticket and s.next.ticket.
    	// https://en.wikipedia.org/wiki/Treap
    	// https://faculty.washington.edu/aragon/pubs/rst89.pdf
    	//
    	// s.ticket compared with zero in couple of places, therefore set lowest bit.
    	// It will not affect treap's quality noticeably.
    	s.ticket = cheaprand() | 1
    	s.parent = last
    	*pt = s
    
    	// Rotate up into tree according to ticket (priority).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. pkg/bootstrap/config.go

    // limitations under the License.
    
    package bootstrap
    
    import (
    	"encoding/json"
    	"errors"
    	"fmt"
    	"os"
    	"path"
    	"sort"
    	"strconv"
    	"strings"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	"google.golang.org/protobuf/types/known/structpb"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	"istio.io/api/annotation"
    	meshAPI "istio.io/api/mesh/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/go.sum

    github.com/emicklei/go-restful/v3 v3.11.0 h1:rAQeMHw1c7zTmncogyy8VvRZwtkmkZ4FxERmMY4rD+g=
    github.com/emicklei/go-restful/v3 v3.11.0/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc=
    github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
    github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/query-params-str-validations.md

    The **default** value of the **function parameter** is the **actual default** value, that's more intuitive with Python in general. 😌
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. README.md

    **Spoiler alert**: the tutorial - user guide includes:
    
    * Declaration of **parameters** from other different places as: **headers**, **cookies**, **form fields** and **files**.
    * How to set **validation constraints** as `maximum_length` or `regex`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. src/runtime/runtime2.go

    // and in scheduling lists that are manipulated without a P.
    //
    // The Gobuf.g goroutine pointer is almost always updated by assembly code.
    // In one of the few places it is updated by Go code - func save - it must be
    // treated as a uintptr to avoid a write barrier being emitted at a bad time.
    // Instead of figuring out how to emit the write barriers missing in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top