Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,089 for Trailing (0.23 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferResource.java

     *
     */
    @Deprecated
    public interface ArtifactTransferResource {
    
        /**
         * The base URL of the repository, e.g. "http://repo1.maven.org/maven2/". Unless the URL is unknown, it will be
         * terminated by a trailing slash.
         *
         * @return The base URL of the repository or an empty string if unknown, never {@code null}.
         */
        String getRepositoryUrl();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    // followed by arbitrary uninterpreted data (which need not be separated from the final
    // numeric field by punctuation). For convenience, leading and trailing whitespace is
    // ignored, and the version can be preceded by the letter "v". See also ParseSemantic.
    func ParseGeneric(str string) (*Version, error) {
    	return parse(str, false)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/PatternMatcherFactory.java

        }
    
        public static PathMatcher compile(boolean caseSensitive, String pattern) {
            if (pattern.length() == 0) {
                return END_OF_PATH_MATCHER;
            }
    
            // trailing / or \ assumes **
            if (pattern.endsWith("/") || pattern.endsWith("\\")) {
                pattern = pattern + "**";
            }
            List<String> parts = PATH_SPLITTER.splitToList(pattern);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/reset/unmount_linux.go

    func unmountKubeletDirectory(kubeletRunDirectory string, flags []string) error {
    	raw, err := os.ReadFile("/proc/mounts")
    	if err != nil {
    		return err
    	}
    
    	if !strings.HasSuffix(kubeletRunDirectory, "/") {
    		// trailing "/" is needed to ensure that possibly mounted /var/lib/kubelet is skipped
    		kubeletRunDirectory += "/"
    	}
    
    	var errList []error
    	mounts := strings.Split(string(raw), "\n")
    	flagsInt := flagsToInt(flags)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 10:58:44 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/encoding/csv/reader.go

    			return records, nil
    		}
    		if err != nil {
    			return nil, err
    		}
    		records = append(records, record)
    	}
    }
    
    // readLine reads the next line (with the trailing endline).
    // If EOF is hit without a trailing endline, it will be omitted.
    // If some bytes were read, then the error is never [io.EOF].
    // The result is only valid until the next call to readLine.
    func (r *Reader) readLine() ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         * <p>
         * Conceptually, it appends a file separator to both paths before doing a prefix check.
         *
         * @param path a path to check a prefix against, without a trailing file separator
         * @param startsWithPath a prefix path without a trailing file separator
         * @return true if the path starts with the prefix
         */
        public static boolean doesPathStartWith(String path, String startsWithPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/testing.go

    	var s scanner
    	s.init(src, func(_, _ uint, text string) {
    		if text[0] != '/' {
    			return // not a comment, ignore
    		}
    		if text[1] == '*' {
    			text = text[:len(text)-2] // strip trailing */
    		}
    		text = text[2:] // strip leading // or /*
    		if rx.MatchString(text) {
    			pos := MakePos(base, prev.line, prev.col)
    			err := Error{pos, text}
    			if res == nil {
    				res = make(map[uint][]Error)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:53:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. src/path/filepath/symlink_windows.go

    		if i == -1 {
    			break
    		}
    		if i == 0 { // `\Go` or `C:\Go`
    			normPath = `\` + normPath
    
    			break
    		}
    
    		path = path[:i]
    	}
    
    	normPath = normPath[:len(normPath)-1] // remove trailing '\'
    
    	return volume + normPath, nil
    }
    
    func evalSymlinks(path string) (string, error) {
    	newpath, err := walkSymlinks(path)
    	if err != nil {
    		return "", err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 07:42:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/CleanArgument.java

                // buffer, then append it with a preceding space...again, not sure what else to
                // do other than collapse whitespace.
                // NOTE: The case of a trailing quote is handled by nullifying the arg buffer.
                if (!addedToBuffer) {
                    if (currentArg != null) {
                        currentArg.append(' ').append(arg);
                    } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 12:51:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        The ExecuteOp executes an operation on the specified device.
    
        Example:
          %res = tfrt_fallback_async.executeop key(0) cost(100) device("/CPU:0") "some.op"(%arg) : 1
    
        Note that the trailing number indicates the number of results.
    
        The func attrs and op attrs are placed in two separate regions.
    
        Example:
          %res = tfrt_fallback_async.executeop key(0) device("/CPU:0") "some.op"(%arg)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top