Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for trimApt (0.07 seconds)

  1. impl/maven-core/src/test/java/org/apache/maven/artifact/handler/ArtifactHandlerTest.java

                    String type = trimApt(cols[1]);
                    String classifier = trimApt(cols[2]);
                    String extension = trimApt(cols[3], type);
                    String packaging = trimApt(cols[4], type);
                    String language = trimApt(cols[5]);
                    String addedToClasspath = trimApt(cols[6]);
                    String includesDependencies = trimApt(cols[7]);
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jul 23 17:27:08 GMT 2025
    - 4K bytes
    - Click Count (0)
  2. src/bytes/bytes_test.go

    var isValidRune = predicate{
    	func(r rune) bool {
    		return r != utf8.RuneError
    	},
    	"IsValidRune",
    }
    
    type TrimFuncTest struct {
    	f        predicate
    	in       string
    	trimOut  []byte
    	leftOut  []byte
    	rightOut []byte
    }
    
    func not(p predicate) predicate {
    	return predicate{
    		func(r rune) bool {
    			return !p.f(r)
    		},
    		"not " + p.name,
    	}
    }
    
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Tue Dec 23 23:54:14 GMT 2025
    - 62.9K bytes
    - Click Count (0)
Back to Top