Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,092 for Trailing (0.2 sec)

  1. src/os/path.go

    		}
    		return &PathError{Op: "mkdir", Path: path, Err: syscall.ENOTDIR}
    	}
    
    	// Slow path: make sure parent exists and then call Mkdir for path.
    
    	// Extract the parent folder from path by first removing any trailing
    	// path separator and then scanning backward until finding a path
    	// separator or reaching the beginning of the string.
    	i := len(path) - 1
    	for i >= 0 && IsPathSeparator(path[i]) {
    		i--
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/mime/quotedprintable/reader_test.go

    		{in: "foo bar\xff", want: "foo bar\xff"},
    
    		// Equal sign.
    		{in: "=3D30\n", want: "=30\n"},
    		{in: "=00=FF0=\n", want: "\x00\xff0"},
    
    		// Trailing whitespace
    		{in: "foo  \n", want: "foo\n"},
    		{in: "foo  \n\nfoo =\n\nfoo=20\n\n", want: "foo\n\nfoo \nfoo \n\n"},
    
    		// Tests that we allow bare \n and \r through, despite it being strictly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/common/case_format.cc

        }
    
        // at this point we are no longer at the start of a word:
        wordStart = false;
        // .. or the input:
        inputStart = false;
      }
    
      if (wordStart) {
        // This only happens with a trailing delimiter, which should remain.
        result.push_back(delimiter);
      }
    
      return result;
    }
    
    }  // namespace
    
    //
    // Public interface
    //
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/web-platform-test-toascii.json

        "output": "xn----xhn"
      },
      {
        "input": "-x.xn--zca",
        "output": "-x.xn--zca"
      },
      {
        "input": "-x.ß",
        "output": "-x.xn--zca"
      },
      {
        "comment": "Label with trailing hyphen",
        "input": "x-.xn--zca",
        "output": "x-.xn--zca"
      },
      {
        "input": "x-.ß",
        "output": "x-.xn--zca"
      },
      {
        "comment": "Empty labels",
        "input": "x..xn--zca",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. hack/verify-description.sh

        result=1
      fi
      if grep json: "${file}" | grep -Ee ",[[:space:]]+omitempty|omitempty[[:space:]]+" ; then
        echo "API file: ${file} should not contain leading or trailing spaces for omitempty directive"
        result=1
      fi
    done
    
    internal_types_files="${KUBE_ROOT}/pkg/apis/core/types.go ${KUBE_ROOT}/pkg/apis/extensions/types.go"
    for internal_types_file in $internal_types_files; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/math/bits/bits.go

    }
    
    // TrailingZeros returns the number of trailing zero bits in x; the result is [UintSize] for x == 0.
    func TrailingZeros(x uint) int {
    	if UintSize == 32 {
    		return TrailingZeros32(uint32(x))
    	}
    	return TrailingZeros64(uint64(x))
    }
    
    // TrailingZeros8 returns the number of trailing zero bits in x; the result is 8 for x == 0.
    func TrailingZeros8(x uint8) int {
    	return int(ntz8tab[x])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. src/encoding/pem/pem.go

    }
    
    // getLine results the first \r\n or \n delineated line from the given byte
    // array. The line does not include trailing whitespace or the trailing new
    // line bytes. The remainder of the byte array (also not including the new line
    // bytes) is also returned and this will always be smaller than the original
    // argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. src/encoding/ascii85/ascii85.go

    // the returned writer will be encoded and then written to w.
    // Ascii85 encodings operate in 32-bit blocks; when finished
    // writing, the caller must Close the returned encoder to flush any
    // trailing partial block.
    func NewEncoder(w io.Writer) io.WriteCloser { return &encoder{w: w} }
    
    type encoder struct {
    	err  error
    	w    io.Writer
    	buf  [4]byte    // buffered data waiting to be encoded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. internal/lock/lock_windows.go

    	// The extended form disables evaluation of . and .. path
    	// elements and disables the interpretation of / as equivalent
    	// to \. The conversion here rewrites / to \ and elides
    	// . elements as well as trailing or duplicate separators. For
    	// simplicity it avoids the conversion entirely for relative
    	// paths or paths containing .. elements. For now,
    	// \\server\share paths are not converted to
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/ir/tfr_types.h

        auto rawMem = allocator.allocate(byteSize, alignof(TFRTypeStorage));
        auto result = ::new (rawMem) TFRTypeStorage(key.size());
    
        // Copy in the string attributes into the trailing storage.
        std::uninitialized_copy(key.begin(), key.end(),
                                result->getTrailingObjects<StringAttr>());
        return result;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top