Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,286 for wrench (0.14 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/IvySpecificComponentMetadataRulesIntegrationTest.groovy

        def "can access Ivy metadata with #identifier characters"() {
            given:
            def branch = identifier.safeForBranch().decorate("branch")
            def status = identifier.safeForFileName().decorate("status")
            repository {
                'org.test:projectA:1.0' {
                    withModule {
                        withBranch(branch)
                        withStatus(status)
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultModuleComponentSelectorTest.groovy

        }
    
        private static ImmutableVersionConstraint v(String version, String branch) {
            return new DefaultImmutableVersionConstraint("", version, "", [], branch)
        }
    
        private static ImmutableVersionConstraint b(String branch) {
            return new DefaultImmutableVersionConstraint("", "", "", [], branch)
        }
    
        def "is instantiated with non-null constructor parameter values"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. src/time/sys_windows.go

    }
    
    func closefd(fd uintptr) {
    	syscall.Close(syscall.Handle(fd))
    }
    
    func preadn(fd uintptr, buf []byte, off int) error {
    	whence := seekStart
    	if off < 0 {
    		whence = seekEnd
    	}
    	if _, err := syscall.Seek(syscall.Handle(fd), int64(off), whence); err != nil {
    		return err
    	}
    	for len(buf) > 0 {
    		m, err := syscall.Read(syscall.Handle(fd), buf)
    		if m <= 0 {
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:19:07 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. hack/verify-readonly-packages.sh

        if kube::util::has_changes "${branch}" "^${dir}/[^/]*\$" '/\.readonly$|/zz_generated|/\.generated\.|\.proto$|\.pb\.go$' >/dev/null; then
            conflicts+=("${dir}")
        fi
    done < <(find_files | sed 's|/.readonly||')
    
    if [ ${#conflicts[@]} -gt 0 ]; then
        exec 1>&2
        for dir in "${conflicts[@]}"; do
            echo "Found ${dir}/.readonly, but files changed compared to \"${branch}\" branch."
        done
        exit 1
    else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. .github/workflows/CheckBadMerge.groovy

     *
     * When merging `releaseX` branch into `master`, we should only use the release note from the `master` branch,
     * but sometimes changes on release notes.md was brought to master and merged unnoticed,
     * e.g https://github.com/gradle/gradle/pull/25825
     *
     * This script is to check if there is any merge commit that brings changes from release branch to master.
     * Usage: groovy CheckBadMerge.groovy <commit1> <commit2> ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 10:35:44 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MutableVersionConstraint.java

        /**
         * Returns the branch to select versions from. When not {@code null}, select only versions that were built from the given branch.
         *
         * @since 4.6
         */
        @Override
        @Nullable
        String getBranch();
    
        /**
         * Specifies the branch to select versions from.
         *
         * @param branch The branch, possibly null.
         * @since 4.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 30 23:02:48 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/vcstest/git/gitrepo1.txt

    at 2018-04-17T15:43:22-04:00
    unquote ''
    cp stdout README
    git add README
    git commit -a -m 'empty README'
    git branch -m master
    git tag v1.2.3
    
    at 2018-04-17T15:45:48-04:00
    git branch v2
    git checkout v2
    echo 'v2'
    cp stdout v2
    git add v2
    git commit -a -m 'v2'
    git tag v2.3
    git tag v2.0.1
    git branch v2.3.4
    
    at 2018-04-17T16:00:19-04:00
    echo 'intermediate'
    cp stdout foo.txt
    git add foo.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. dbflute.xml

    	<property name="mydbflute.dir" value="${basedir}/mydbflute" />
    	<property name="target.dir" value="${basedir}/target" />
    	<property name="branch.name" value="fess-14.14" />
    	<property name="mydbflute.url" value="https://github.com/lastaflute/lastaflute-example-waterfront/archive/${branch.name}.zip" />
    
    	<target name="mydbflute.check">
    		<condition property="mydbflute.exists">
    			<available file="${mydbflute.dir}" type="dir" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:59:50 UTC 2024
    - 1000 bytes
    - Viewed (0)
  9. src/cmd/internal/bio/buf.go

    }
    
    func (r *Reader) MustSeek(offset int64, whence int) int64 {
    	if whence == 1 {
    		offset -= int64(r.Buffered())
    	}
    	off, err := r.f.Seek(offset, whence)
    	if err != nil {
    		log.Fatalf("seeking in output: %v", err)
    	}
    	r.Reset(r.f)
    	return off
    }
    
    func (w *Writer) MustSeek(offset int64, whence int) int64 {
    	if err := w.Flush(); err != nil {
    		log.Fatalf("writing output: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 11 17:15:15 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/fuse_branchredirect.go

    			}
    			pbranch := positive
    			if pk.i == 1 {
    				pbranch = negative
    			}
    			ft.checkpoint()
    			// Assume branch p->b is taken.
    			addBranchRestrictions(ft, p, pbranch)
    			// Check if any outgoing branch is unreachable based on the above condition.
    			parent := b
    			for j, bbranch := range [...]branch{positive, negative} {
    				ft.checkpoint()
    				// Try to update relationship b->child, and check if the contradiction occurs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top