Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 152 for Boundaries (0.19 sec)

  1. src/cmd/go/testdata/script/mod_tagged_import_cycle.txt

    # Because 'go mod' subcommands ignore build constraints, they can encounter
    # package-import cycles that are not possible in an ordinary build. This test
    # verifies that such cycles are handled even when they cross module boundaries.
    
    # First, verify that the import graph depends on build tags as expected.
    go list -deps example.com/left
    stdout '^example.com/right$'
    go list -deps example.com/right
    ! stdout left
    
    env GOFLAGS=-tags=mirror
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 21 19:58:38 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  2. src/html/template/doc.go

    the browser will interpret the corresponding portion of the output as a tag
    regardless of the values of untrusted data, and similarly for other structures
    such as attribute boundaries and JS and CSS string boundaries."
    
    Code Effect Property:
    "... only code specified by the template author should run as a result of
    injecting the template output into a page and all code specified by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/html/template/css.go

    // It filters out unsafe values, such as those that affect token boundaries,
    // and anything that might execute scripts.
    func cssValueFilter(args ...any) string {
    	s, t := stringify(args...)
    	if t == contentTypeCSS {
    		return s
    	}
    	b, id := decodeCSS([]byte(s)), make([]byte, 0, 64)
    
    	// CSS3 error handling is specified as honoring string boundaries per
    	// https://www.w3.org/TR/css3-syntax/#error-handling :
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_list_std.txt

    stdout $GOROOT[/\\]src[/\\]vendor
    
    # Within the std module, the packages within the module should omit the 'std/'
    # prefix (they retain their own identities), but should respect normal module
    # boundaries (vendored packages are not included in the module, even though they
    # are included in the 'std' pattern).
    
    go list ./...
    stdout ^bytes$
    ! stdout ^builtin$
    ! stdout ^cmd/
    ! stdout ^vendor/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. src/path/filepath/path_windows.go

    package filepath
    
    import (
    	"os"
    	"strings"
    	"syscall"
    )
    
    // HasPrefix exists for historical compatibility and should not be used.
    //
    // Deprecated: HasPrefix does not respect path boundaries and
    // does not ignore case when required.
    func HasPrefix(p, prefix string) bool {
    	if strings.HasPrefix(p, prefix) {
    		return true
    	}
    	return strings.HasPrefix(strings.ToLower(p), strings.ToLower(prefix))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. test/solitaire.go

    package main
    
    const N = 11 + 1 // length of a board row (+1 for newline)
    
    // The board must be surrounded by 2 illegal fields in each direction
    // so that move() doesn't need to check the board boundaries. Periods
    // represent illegal fields, ● are pegs, and ○ are holes.
    var board = []rune(
    	`...........
    ...........
    ....●●●....
    ....●●●....
    ..●●●●●●●..
    ..●●●○●●●..
    ..●●●●●●●..
    ....●●●....
    ....●●●....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4.puml

    center footer <font color=red>Warning:</font> Created for discussion, needs to be validated
    !enddefinelong
    
    !define LAYOUT_TOP_DOWN top to bottom direction
    !define LAYOUT_LEFT_RIGHT left to right direction
    
    ' Boundaries
    ' ##################################
    
    !define Boundary(e_alias, e_label) rectangle "==e_label" <<boundary>> as e_alias
    !define Boundary(e_alias, e_label, e_type) rectangle "==e_label [e_type]" <<boundary>> as e_alias
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. src/runtime/cgo/libcgo.h

     * If runtime.SetCgoTraceback is used to set a context function,
     * calls the context function and returns the context value.
     */
    uintptr_t _cgo_wait_runtime_init_done(void);
    
    /*
     * Get the low and high boundaries of the stack.
     */
    void x_cgo_getstackbound(uintptr bounds[2]);
    
    /*
     * Prints error then calls abort. For linux and android.
     */
    void fatalf(const char* format, ...) __attribute__ ((noreturn));
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	nextMain:      nextDecomposed,
    }}
    
    // We do not distinguish between boundaries for NFC, NFD, etc. to avoid
    // unexpected behavior for the user.  For example, in NFD, there is a boundary
    // after 'a'.  However, 'a' might combine with modifiers, so from the application's
    // perspective it is not a good boundary. We will therefore always use the
    // boundaries for the combining variants.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/feature_enhancement_request.yaml

            able to discuss the full details of what you're working on.
    
    
            But Guava aims to provide functionality that is useful across boundaries of projects,
            companies, or even industries &mdash; utilities useful for a sizable proportion of all Java
            programmers everywhere. If you can give enough detail such that any of us can imagine coming
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top