Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for elided (0.35 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. 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)
  3. 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)
  4. src/cmd/compile/internal/walk/expr.go

    			base.Warn("index bounds check elided")
    		}
    	} else if ir.IsConst(n.X, constant.String) {
    		n.SetBounded(bounded(r, int64(len(ir.StringVal(n.X)))))
    		if base.Flag.LowerM != 0 && n.Bounded() && !ir.IsConst(n.Index, constant.Int) {
    			base.Warn("index bounds check elided")
    		}
    	}
    	return n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. src/fmt/doc.go

    		returns true;
    		always print a decimal point for %e, %E, %f, %F, %g and %G;
    		do not remove trailing zeros for %g and %G;
    		write e.g. U+0078 'x' if the character is printable for %U (%#U)
    	' '	(space) leave a space for elided sign in numbers (% d);
    		put spaces between bytes printing strings or slices in hex (% x, % X)
    	'0'	pad with leading zeros rather than spaces;
    		for numbers, this moves the padding after the sign
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. 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)
  7. pkg/kube/inject/inject.go

    	ImageTypeDebug = "debug"
    	// ImageTypeDistroless is the suffix of the distroless image.
    	ImageTypeDistroless = "distroless"
    	// ImageTypeDefault is the type name of the default image, sufix is elided.
    	ImageTypeDefault = "default"
    )
    
    // SidecarTemplateData is the data object to which the templated
    // version of `SidecarInjectionSpec` is applied.
    type SidecarTemplateData struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  8. src/internal/bisect/bisect.go

    // printed by the bisect tool to describe a change implicated in causing
    // a failure. Each line in the report for a given change must contain a
    // match marker with that change ID, as returned by [Marker].
    // The markers are elided when displaying the lines to the user.
    //
    // A match marker has the form “[bisect-match 0x1234]” where
    // 0x1234 is the change ID in hexadecimal.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. src/cmd/doc/pkg.go

    				}
    				pkg.Printf("%s%s %s%s\n", indent, name, s, lineComment)
    				found = true
    			}
    		}
    	}
    	if found {
    		if numUnmatched > 0 {
    			pkg.Printf("\n    // ... other fields elided ...\n")
    		}
    		pkg.Printf("}\n")
    	}
    	return found
    }
    
    // match reports whether the user's symbol matches the program's.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. src/runtime/symtab.go

    		// Nothing inline at tracepc.
    		return stk
    	}
    
    	// Treat the previous func as normal. We haven't actually checked, but
    	// since this pc was included in the stack, we know it shouldn't be
    	// elided.
    	calleeID := abi.FuncIDNormal
    
    	// Remove pc from stk; we'll re-add it below.
    	stk = stk[:len(stk)-1]
    
    	for ; uf.valid(); uf = u.next(uf) {
    		funcID := u.srcFunc(uf).funcID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top