Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 94 for LOGICAL (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

    import org.gradle.api.file.FileCollection;
    import org.gradle.api.file.SourceDirectorySet;
    import org.gradle.api.plugins.ExtensionAware;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@code SourceSet} represents a logical group of Java source and resource files. They
     * are covered in more detail in the
     * <a href="https://docs.gradle.org/current/userguide/building_java_projects.html#sec:java_source_sets">user manual</a>.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/codegen_test_h.golden

    // o Calls to non-const methods require exclusive access to the object.
    // o Concurrent calls to const methods are OK, if those calls are made while it
    //   is guaranteed that no thread may call a non-const method.
    //
    // The logical function signature is:
    //   ((unknown): f32[1,2], (unknown): s64[3,4], (unknown): f32[1], (unknown): f32[1], (unknown): s32[5]) -> (u32[5,6], f32[1], s32[5])
    //
    // Memory stats:
    //   arg bytes total:    392
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/term/terminal.go

    	// concurrent processing of a key press and a Write() call.
    	lock sync.Mutex
    
    	c      io.ReadWriter
    	prompt []rune
    
    	// line is the current line being entered.
    	line []rune
    	// pos is the logical position of the cursor in line
    	pos int
    	// echo is true if local echo is enabled
    	echo bool
    	// pasteActive is true iff there is a bracketed paste operation in
    	// progress.
    	pasteActive bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  10. src/archive/tar/reader.go

    			// Thus, setup the regFileReader again after merging PAX headers.
    			if err := tr.handleRegularFile(hdr); err != nil {
    				return nil, err
    			}
    
    			// Sparse formats rely on being able to read from the logical data
    			// section; there must be a preceding call to handleRegularFile.
    			if err := tr.handleSparseFile(hdr, rawHdr); err != nil {
    				return nil, err
    			}
    
    			// Set the final guess at the format.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top