Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 206 for LOGICAL (0.19 sec)

  1. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

    def quantfork_QuantizeRegionOp : quantfork_Op<"region", [
        Pure,
        IsolatedFromAbove,
        SingleBlockImplicitTerminator<"ReturnOp">]> {
      let summary = [{
        The `region` operation wraps high-precision ops as a logical low-precision
        quantized kernel.
      }];
    
      let arguments = (ins Variadic<AnyType>:$inputs,
                        TypeArrayAttr:$input_specs,
                        TypeArrayAttr:$output_specs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

    // This type is beta-level in 1.8
    message NetworkPolicyEgressRule {
      // List of destination ports for outgoing traffic.
      // Each item in this list is combined using a logical OR. If this field is
      // empty or missing, this rule matches all ports (traffic not restricted by port).
      // If this field is present and contains at least one item, then this rule allows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device.h

        std::vector<XlaShapeLayoutHelpers::ShapeDeterminationFns>
            shape_determination_fns;
    
        // If padded_shape_fn is empty, a default implementation that returns
        // the logical on-device shape without padding is used.
        PaddedShapeFn padded_shape_fn;
    
        // Set of devices to use. This controls which of the devices on the given
        // platform will have resources allocated. For GPUs this will be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1/types.go

    	// AddressTypeIPv6 represents an IPv6 Address.
    	AddressTypeIPv6 = AddressType(v1.IPv6Protocol)
    
    	// AddressTypeFQDN represents a FQDN.
    	AddressTypeFQDN = AddressType("FQDN")
    )
    
    // Endpoint represents a single logical "backend" implementing a service.
    type Endpoint struct {
    	// addresses of this endpoint. The contents of this field are interpreted
    	// according to the corresponding EndpointSlice addressType field. Consumers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/net/interface_test.go

    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"fmt"
    	"reflect"
    	"runtime"
    	"testing"
    )
    
    // loopbackInterface returns an available logical network interface
    // for loopback tests. It returns nil if no suitable interface is
    // found.
    func loopbackInterface() *Interface {
    	ift, err := Interfaces()
    	if err != nil {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

    // This type is beta-level in 1.8
    message NetworkPolicyEgressRule {
      // List of destination ports for outgoing traffic.
      // Each item in this list is combined using a logical OR. If this field is
      // empty or missing, this rule matches all ports (traffic not restricted by port).
      // If this field is present and contains at least one item, then this rule allows
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/fields/selector.go

    // Cannot return an error.
    func OneTermNotEqualSelector(k, v string) Selector {
    	return &notHasTerm{field: k, value: v}
    }
    
    // AndSelectors creates a selector that is the logical AND of all the given selectors
    func AndSelectors(selectors ...Selector) Selector {
    	return andTerm(selectors)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 23 20:40:07 UTC 2020
    - 12.3K bytes
    - Viewed (0)
  8. src/runtime/traceback_test.go

    				}
    				t.Logf("traceback before error:\n%s", stack[:off])
    				t.Logf("traceback after error:\n%s", stack[off:])
    			}
    		})
    	}
    }
    
    // tteStack creates a stack of n logical frames and sends the traceback to
    // stack. It cycles through 5 logical frames per physical frame to make it
    // unlikely that any part of the traceback will end on a physical boundary.
    func tteStack(n int, stack chan<- string) {
    	n-- // Account for this frame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  9. src/io/multi_test.go

    }
    
    // readerFunc is a Reader implemented by the underlying func.
    type readerFunc func(p []byte) (int, error)
    
    func (f readerFunc) Read(p []byte) (int, error) {
    	return f(p)
    }
    
    // callDepth returns the logical call depth for the given PCs.
    func callDepth(callers []uintptr) (depth int) {
    	frames := runtime.CallersFrames(callers)
    	more := true
    	for more {
    		_, more = frames.Next()
    		depth++
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:32 UTC 2022
    - 10K bytes
    - Viewed (0)
  10. pilot/pkg/model/gateway.go

    // TLSServerInfo contains additional information for TLS Servers.
    type TLSServerInfo struct {
    	RouteName string
    	SNIHosts  []string
    }
    
    // MergedGateway describes a set of gateways for a workload merged into a single logical gateway.
    type MergedGateway struct {
    	// ServerPorts maintains a list of unique server ports, used for stable ordering.
    	ServerPorts []ServerPort
    
    	// MergedServers map from physical port to virtual servers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top