Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,092 for Trailing (0.15 sec)

  1. test/fixedbugs/issue55242.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 55242: gofrontend crash calling function that returns
    // trailing empty struct.
    
    package p
    
    func F1() (int, struct{}) {
    	return 0, struct{}{}
    }
    
    func F2() {
    	F1()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 20:27:13 UTC 2023
    - 346 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/mux/pathrecorder.go

    }
    
    // HandlePrefix is like Handle, but matches for anything under the path.  Like a standard golang trailing slash.
    func (m *PathRecorderMux) HandlePrefix(path string, handler http.Handler) {
    	if !strings.HasSuffix(path, "/") {
    		panic(fmt.Sprintf("%q must end in a trailing slash", path))
    	}
    
    	m.lock.Lock()
    	defer m.lock.Unlock()
    	m.trackCallers(path)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 01:52:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.cc

      if (!IsIotaAttr(update_window_dims, update_window_dims.size()))
        return rewriter.notifyMatchFailure(
            scatter_op, "update_window_dims are not leading or trailing indices");
    
      SmallVector<int64_t, 4> permutation_array(updates_type.getRank());
      int64_t dim = 0;
      // Move leading indices to the back of the array.
      const auto permutation_array_size = permutation_array.size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 02:29:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/internal/syscall/unix/constants.go

    //go:build unix
    
    package unix
    
    const (
    	R_OK = 0x4
    	W_OK = 0x2
    	X_OK = 0x1
    
    	// NoFollowErrno is the error returned from open/openat called with
    	// O_NOFOLLOW flag, when the trailing component (basename) of the path
    	// is a symbolic link.
    	NoFollowErrno = noFollowErrno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 434 bytes
    - Viewed (0)
  5. src/encoding/json/indent.go

    // Although leading space characters (space, tab, carriage return, newline)
    // at the beginning of src are dropped, trailing space characters
    // at the end of src are preserved and copied to dst.
    // For example, if src has no trailing spaces, neither will dst;
    // if src ends in a trailing newline, so will dst.
    func Indent(dst *bytes.Buffer, src []byte, prefix, indent string) error {
    	dst.Grow(indentGrowthFactor * len(src))
    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/internal/trace/raw/doc.go

    is identified via unicode.IsSpace.
    
    Some events have additional data on following lines. There are two such
    special cases.
    
    The first special case consists of events with trailing byte-oriented data.
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. .pre-commit-config.yaml

        rev: v4.4.0
        hooks:
        -   id: check-added-large-files
        -   id: check-toml
        -   id: check-yaml
            args:
            -   --unsafe
        -   id: end-of-file-fixer
        -   id: trailing-whitespace
    -   repo: https://github.com/charliermarsh/ruff-pre-commit
        rev: v0.2.0
        hooks:
        -   id: ruff
            args:
            - --fix
        -   id: ruff-format
    ci:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 737 bytes
    - Viewed (0)
  8. src/net/http/routing_tree.go

    	// Again, by construction, patterns with a single wildcard must be more specific than
    	// those with a multi wildcard.
    	// We skip this step if the segment is a trailing slash, because single wildcards
    	// don't match trailing slashes.
    	if seg != "/" {
    		if n, m := n.emptyChild.matchPath(rest, append(matches, seg)); n != nil {
    			return n, m
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      //
      // A pathname with multiple consecutive separators may occur either through
      // user error or as a result of some scripts or APIs that generate a pathname
      // with a trailing separator. On other platforms the same API or script
      // may NOT generate a pathname with a trailing "/". Then elsewhere that
      // pathname may have another "/" and pathname components added to it,
      // without checking for the separator already being there.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. .editorconfig

    indent_style = space
    indent_size = 4
    
    # We recommend you to keep these unchanged
    end_of_line = lf
    charset = utf-8
    trim_trailing_whitespace = true
    insert_final_newline = true
    
    # Markdown files sometimes need trailing whitespaces.
    [*.md]
    trim_trailing_whitespace = false
    
    [*.{yml,yaml}]
    indent_size = 2
    
    [gradle/verification-metadata.xml]
    indent_size = 3
    
    [subprojects/launcher/src/main/resources/release-features.txt]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 11:48:19 UTC 2023
    - 643 bytes
    - Viewed (0)
Back to top