Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for snap (0.17 sec)

  1. maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java

         * <origin><![CDATA[
         * <distributionManagement>
         * <repository>
         * <id>some-repo</id>
         * <url>scp://host/path</url>
         * </repository>
         * <snapshotRepository>
         * <id>some-snap-repo</id>
         * <url>scp://host/snapshot-path</url>
         * </snapshotRepository>
         * </distributionManagement>
         * ]]></origin>
         * <usage><![CDATA[
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt

    import java.util.Properties
    
    
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class UpdateInitPluginTemplateVersionFile : DefaultTask() {
    
        private
        val devSuffixes = arrayOf(
            "-SNAP\\d+",
            "-SNAPSHOT",
            "-alpha.*\\d+",
            "-beta.*\\d+",
            "-dev-?\\d+",
            "-dev-\\d+-\\d+",
            "-rc-?\\d+",
            "-M.+",
            "-eap-?\\d+"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 11:19:07 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("project.snaps", pom.getValue("distributionManagement/snapshotRepository/id"));
            assertEquals("snaps", pom.getValue("distributionManagement/snapshotRepository/name"));
            assertEquals("https://project.url/snaps", pom.getValue("distributionManagement/snapshotRepository/url"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&scE;":                             "\u2ab4",
    	"&scap;":                            "\u2ab8",
    	"&scaron;":                          "\u0161",
    	"&sccue;":                           "\u227d",
    	"&sce;":                             "\u2ab0",
    	"&scedil;":                          "\u015f",
    	"&scirc;":                           "\u015d",
    	"&scnE;":                            "\u2ab6",
    	"&scnap;":                           "\u2aba",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/inl_test.go

    			"(*Uint32).Swap",
    			"(*Uint64).Add",
    			"(*Uint64).CompareAndSwap",
    			"(*Uint64).Load",
    			"(*Uint64).Store",
    			"(*Uint64).Swap",
    			"(*Uintptr).Add",
    			"(*Uintptr).CompareAndSwap",
    			"(*Uintptr).Load",
    			"(*Uintptr).Store",
    			"(*Uintptr).Swap",
    			"(*Pointer[go.shape.int]).CompareAndSwap",
    			"(*Pointer[go.shape.int]).Load",
    			"(*Pointer[go.shape.int]).Store",
    			"(*Pointer[go.shape.int]).Swap",
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/subst.go

    func (check *Checker) subst(pos syntax.Pos, typ Type, smap substMap, expanding *Named, ctxt *Context) Type {
    	assert(expanding != nil || ctxt != nil)
    
    	if smap.empty() {
    		return typ
    	}
    
    	// common cases
    	switch t := typ.(type) {
    	case *Basic:
    		return typ // nothing to do
    	case *TypeParam:
    		return smap.lookup(t)
    	}
    
    	// general case
    	subst := subster{
    		pos:       pos,
    		smap:      smap,
    		check:     check,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/mdo/model-v3.vm

            }
          #end
        }
    
          #if ( $field.type == "java.util.List" && $field.multiplicity == "*" )
            #set ( $v = $Helper.singular( ${field.name} ) )
            #set ( $scap = $Helper.capitalise( $v ) )
        public void add${scap}(${field.to} ${v}) {
            #if ( $field.to == "String" )
            update(getDelegate().with${cap}(
                   Stream.concat(getDelegate().get${cap}().stream(), Stream.of(${v}))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/predicates.go

    			}
    			smap := makeSubstMap(ytparams, targs)
    
    			var check *Checker   // ok to call subst on a nil *Checker
    			ctxt := NewContext() // need a non-nil Context for the substitution below
    
    			// Constraints must be pair-wise identical, after substitution.
    			for i, xtparam := range xtparams {
    				ybound := check.subst(nopos, ytparams[i].bound, smap, nil, ctxt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/internal.go

    )
    
    // SortTags sorts tags in place.
    func SortTags(tags []language.Tag) {
    	sort.Sort(sorter(tags))
    }
    
    type sorter []language.Tag
    
    func (s sorter) Len() int {
    	return len(s)
    }
    
    func (s sorter) Swap(i, j int) {
    	s[i], s[j] = s[j], s[i]
    }
    
    func (s sorter) Less(i, j int) bool {
    	return s[i].String() < s[j].String()
    }
    
    // UniqueTags sorts and filters duplicate tags in place and returns a slice with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/named.go

    	// code.
    	if origSig.RecvTypeParams().Len() == t.inst.targs.Len() {
    		smap := makeSubstMap(origSig.RecvTypeParams().list(), t.inst.targs.list())
    		var ctxt *Context
    		if check != nil {
    			ctxt = check.context()
    		}
    		sig = check.subst(origm.pos, origSig, smap, t, ctxt).(*Signature)
    	}
    
    	if sig == origSig {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top