Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 382 for elided (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. guava/src/com/google/common/net/InetAddresses.java

        }
      }
    
      /**
       * Convert a list of hextets into a human-readable IPv6 address.
       *
       * <p>In order for "::" compression to work, the input should contain negative sentinel values in
       * place of the elided zeroes.
       *
       * @param hextets {@code int[]} array of eight 16-bit hextets, or -1s
       */
      private static String hextetsToIPv6String(int[] hextets) {
        // While scanning the array, handle these state transitions:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. src/html/template/escape_test.go

    				"{border: 1px #00f}</style>",
    		},
    		{
    			"JS attr block comment",
    			`<a onclick="f(&quot;&quot;); /* alert({{.H}}) */">`,
    			// Attribute comment tests should pass if the comments
    			// are successfully elided.
    			`<a onclick="f(&quot;&quot;); /* alert() */">`,
    		},
    		{
    			"JS attr line comment",
    			`<a onclick="// alert({{.G}})">`,
    			`<a onclick="// alert()">`,
    		},
    		{
    			"CSS attr block comment",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InetAddresses.java

        }
      }
    
      /**
       * Convert a list of hextets into a human-readable IPv6 address.
       *
       * <p>In order for "::" compression to work, the input should contain negative sentinel values in
       * place of the elided zeroes.
       *
       * @param hextets {@code int[]} array of eight 16-bit hextets, or -1s
       */
      private static String hextetsToIPv6String(int[] hextets) {
        // While scanning the array, handle these state transitions:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    (<code>e</code> or <code>E</code> followed by an optional sign and decimal digits).
    One of the integer part or the fractional part may be elided; one of the decimal point
    or the exponent part may be elided.
    An exponent value exp scales the mantissa (integer and fractional part) by 10<sup>exp</sup>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. src/runtime/map.go

    	bucket      uintptr
    	checkBucket uintptr
    }
    
    // bucketShift returns 1<<b, optimized for code generation.
    func bucketShift(b uint8) uintptr {
    	// Masking the shift amount allows overflow checks to be elided.
    	return uintptr(1) << (b & (goarch.PtrSize*8 - 1))
    }
    
    // bucketMask returns 1<<b - 1, optimized for code generation.
    func bucketMask(b uint8) uintptr {
    	return bucketShift(b) - 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top