Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 383 for elided (0.19 sec)

  1. src/runtime/traceback_test.go

    			for i < n {
    				if len(tb.frames) == 0 {
    					t.Errorf("traceback ended early")
    					break
    				}
    				fr := tb.frames[0]
    				if i == runtime.TracebackInnerFrames && elided > 0 {
    					// This should be an "elided" frame.
    					if fr.elided != elided {
    						t.Errorf("want %d frames elided", elided)
    						break
    					}
    					i += fr.elided
    				} else {
    					want := fmt.Sprintf("runtime_test.tte%d", (i+1)%5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/encoding/json/indent.go

    			start = i + len("\u2029")
    		}
    	}
    	return append(dst, src[start:]...)
    }
    
    // Compact appends to dst the JSON-encoded src with
    // insignificant space characters elided.
    func Compact(dst *bytes.Buffer, src []byte) error {
    	dst.Grow(len(src))
    	b := dst.AvailableBuffer()
    	b, err := appendCompact(b, src, false)
    	dst.Write(b)
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/net/netip/slow_test.go

    //   - Regular IPv6: 1111:2222:3333:4444:5555:6666:7777:8888
    //   - IPv6 with many leading zeros: 00000001:0000002:0000003:0000004:0000005:0000006:0000007:0000008
    //   - IPv6 with zero blocks elided: 1111:2222::7777:8888
    //   - IPv6 with trailing 32 bits expressed as IPv4: 1111:2222:3333:4444:5555:6666:77.77.88.88
    //
    // It does not process the following IP address forms, which have been
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/compile/internal/syntax/printer_test.go

    	dup("package p; func _[T any]()"),
    	dup("package p; func _[A, B, C interface{m()}]()"),
    	dup("package p; func _[T any, A, B, C interface{m()}, X, Y, Z interface{~int}]()"),
    
    	// generic functions with elided interfaces in type constraints
    	dup("package p; func _[P *T]() {}"),
    	dup("package p; func _[P *T | T | T | T | ~T]() {}"),
    	dup("package p; func _[P *T | T | struct{} | T]() {}"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 17:08:18 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top