Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for Uncommon (0.48 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		gpspsb     = gpsp | buildReg("SB")
    		gpspsbg    = gpspsb | g
    		callerSave = gp | fp | g // runtime.setg (and anything calling it) may clobber g
    	)
    	// Common slices of register masks
    	var (
    		gponly = []regMask{gp}
    		fponly = []regMask{fp}
    	)
    
    	// Common regInfo
    	var (
    		gp01           = regInfo{inputs: nil, outputs: gponly}
    		gp11           = regInfo{inputs: []regMask{gp}, outputs: gponly}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    to all hosts in a cluster at a given time. format: int32 type: integer useClientProtocol: description: If set to true, client protocol will be preserved while initiating connection to backend. type: boolean type: object tcp: description: Settings common to both HTTP and TCP upstream connections. properties: connectTimeout: description: TCP connection timeout. type: string maxConnectionDuratio: description: The maximum duration of a connection. type: string maxConnections: description: Maximum number...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    include "mlir/Interfaces/SideEffectInterfaces.td"
    include "tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td"
    include "tensorflow/compiler/mlir/lite/ir/tfl_op_enums.td"
    include "tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td"
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator.go

    				eventErr, detailedErr := volumeToMount.GenerateError("MapVolume.MarkDeviceAsMounted failed", markDeviceMappedErr)
    				return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    			}
    		}
    
    		// Execute common map
    		volumeMapPath, volName := blockVolumeMapper.GetPodDeviceMapPath()
    		mapErr := util.MapBlockVolume(og.blkUtil, devicePath, globalMapPath, volumeMapPath, volName, volumeToMount.Pod.UID)
    		if mapErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        return "";
      }
    
      const FunctionLibraryDefinition& flib_;
    };
    
    // Stateful helper class to import a TensorFlow model into an MLIR Module.
    //
    // This is the base class that contains common utilities shared between the
    // GraphDef importer and SavedModel importer.
    //
    // A subclass is expected to call `PrepareConvert` first to perform necessary
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        return nullptr;
      }
    
      ValuePort req = ComputeInputComponentFor(op, port);
      if (req.IsValid()) return values(req);
    
      return nullptr;
    }
    
    // Context used during ShapeInference. This class contains common information
    // that is required by the individual shape inference helper functions (e.g.,
    // TF Graph version, constant values computed, etc.)
    class ShapeInference {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		a = append(a, "-gno-record-gcc-switches")
    	}
    
    	// On OS X, some of the compilers behave as if -fno-common
    	// is always set, and the Mach-O linker in 6l/8l assumes this.
    	// See https://golang.org/issue/3253.
    	if cfg.Goos == "darwin" || cfg.Goos == "ios" {
    		a = append(a, "-fno-common")
    	}
    
    	return a
    }
    
    // gccNoPie returns the flag to use to request non-PIE. On systems
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. cmd/metrics-v2.go

    	"github.com/minio/minio/internal/mcontext"
    	"github.com/minio/minio/internal/rest"
    	"github.com/prometheus/client_golang/prometheus"
    	dto "github.com/prometheus/client_model/go"
    	"github.com/prometheus/common/expfmt"
    	"github.com/prometheus/procfs"
    )
    
    //go:generate msgp -file=$GOFILE -unexported -io=false
    
    var (
    	nodeCollector           *minioNodeCollector
    	clusterCollector        *minioClusterCollector
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ unsafe.Pointer
    
    // Do the interface allocations only once for common
    // Errno values.
    const (
    	errnoERROR_IO_PENDING = 997
    )
    
    var (
    	errERROR_IO_PENDING error = syscall.Errno(errnoERROR_IO_PENDING)
    	errERROR_EINVAL     error = syscall.EINVAL
    )
    
    // errnoErr returns common boxed Errno values, to prevent
    // allocations at runtime.
    func errnoErr(e syscall.Errno) error {
    	switch e {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    				ci.StatusCode == http.StatusPreconditionFailed || ci.StatusCode == http.StatusNotModified)
    			if okSt {
    				ci.WriteHeaders(w, func() {
    					// set common headers
    					setCommonHeaders(w)
    				}, func() {
    					okSt := (ci.StatusCode == http.StatusOK || ci.StatusCode == http.StatusPartialContent)
    					if okSt && len(ci.Data) > 0 {
    						for k, v := range ci.Metadata {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top