Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 175 for elided (0.1 sec)

  1. pkg/workloadapi/workload.proto

      // Name represents the name for the workload.
      // For Kubernetes, this is the pod name.
      // This is just for debugging and may be elided as an optimization.
      string name = 1;
      // Namespace represents the namespace for the workload.
      // This is just for debugging and may be elided as an optimization.
      string namespace = 2;
    
      // Address represents the IPv4/IPv6 address for the workload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. src/internal/trace/raw/doc.go

    The trailer begins on the following line from the event. That line consists
    of a single argument 'data' and a Go-quoted string representing the byte data
    within. Note: an explicit argument for the length is elided, because it's
    just the length of the unquoted string.
    
    For example:
    
    	String id=5
    		data="hello world\x00"
    
    These events are identified in their spec by the HasData flag.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/internal/buildcfg/exp.go

    	}
    	return flags, nil
    }
    
    // String returns the canonical GOEXPERIMENT string to enable this experiment
    // configuration. (Experiments in the same state as in the baseline are elided.)
    func (exp *ExperimentFlags) String() string {
    	return strings.Join(expList(&exp.Flags, &exp.baseline, false), ",")
    }
    
    // expList returns the list of lower-cased experiment names for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/html/template/doc.go

    # Introduction
    
    This package wraps [text/template] so you can share its template API
    to parse and execute HTML templates safely.
    
    	tmpl, err := template.New("name").Parse(...)
    	// Error checking elided
    	err = tmpl.Execute(out, data)
    
    If successful, tmpl will now be injection-safe. Otherwise, err is an error
    defined in the docs for ErrorCode.
    
    HTML templates treat data values as plain text which should be encoded so they
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/scope.h

      /// `name/child_scope_name` as the prefix. The actual name will be unique
      /// in the current scope. All other properties are inherited from the current
      /// scope. If `child_scope_name` is empty, the `/` is elided.
      Scope NewSubScope(const string& child_scope_name) const;
    
      /// Return a new scope. All ops created within the returned scope will have
      /// names of the form `name/StrCat(fragments...)[_suffix]`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    		},
    		// IPv6 with elided fields in the middle.
    		{
    			in: "fd7a:115c::626b:430b",
    			ip: MkAddr(Mk128(0xfd7a115c00000000, 0x00000000626b430b), Z6noz),
    		},
    		// IPv6 with elided fields at the end.
    		{
    			in: "fd7a:115c:a1e0:ab12:4843:cd96::",
    			ip: MkAddr(Mk128(0xfd7a115ca1e0ab12, 0x4843cd9600000000), Z6noz),
    		},
    		// IPv6 with single elided field at the end.
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.pb.go

    	// For Kubernetes, this is the pod name.
    	// This is just for debugging and may be elided as an optimization.
    	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
    	// Namespace represents the namespace for the workload.
    	// This is just for debugging and may be elided as an optimization.
    	Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  8. src/log/slog/value.go

    		frame, more := frames.Next()
    		fmt.Fprintf(&b, "called from %s (%s:%d)\n", frame.Function, frame.File, frame.Line)
    		if !more {
    			break
    		}
    		i++
    		if i >= nFrames {
    			fmt.Fprintf(&b, "(rest of stack elided)\n")
    			break
    		}
    	}
    	return b.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    		// physical frame.
    		u2 := u
    		remaining, _ := traceback2(&u, showRuntime, maxInt, 0)
    		elide := remaining - lastN - tracebackOuterFrames
    		if elide > 0 {
    			print("...", elide, " frames elided...\n")
    			traceback2(&u2, showRuntime, lastN+elide, tracebackOuterFrames)
    		} else if elide <= 0 {
    			// There are tracebackOuterFrames or fewer frames left to print.
    			// Just print the rest of the stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/net/textproto/reader.go

    func (r *Reader) ReadDotBytes() ([]byte, error) {
    	return io.ReadAll(r.DotReader())
    }
    
    // ReadDotLines reads a dot-encoding and returns a slice
    // containing the decoded lines, with the final \r\n or \n elided from each.
    //
    // See the documentation for the [Reader.DotReader] method for details about dot-encoding.
    func (r *Reader) ReadDotLines() ([]string, error) {
    	// We could use ReadDotBytes and then Split it,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top