Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 89 for LOGICAL (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/compile/internal/ssa/deadstore.go

    			}
    		}
    		// walk to previous store
    		if v.Op == OpPhi {
    			// At start of block.  Move on to next block.
    			// The memory phi, if it exists, is always
    			// the first logical store in the block.
    			// (Even if it isn't the first in the current b.Values order.)
    			continue
    		}
    		for _, a := range v.Args {
    			if a.Block == b && a.Type.IsMemory() {
    				v = a
    				goto walkloop
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/internal/coverage/defs.go

    // units are either "simple" or "intraline"; a "simple" coverable unit
    // corresponds to a basic block (region of straight-line code with no
    // jumps or control transfers). An "intraline" unit corresponds to a
    // logical clause nested within some other simple unit. A simple unit
    // will have a zero Parent value; for an intraline unit NxStmts will
    // be zero and Parent will be set to 1 plus the index of the
    // containing simple statement. Example:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top