Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 121 for regs (0.19 sec)

  1. .github/workflows/contributor-pr.yml

    concurrency:
      # On master/release, we don't want any jobs cancelled so the sha is used to name the group
      # On PR branches, we cancel the job if new commits are pushed
      group: ${{ (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/release' ) && format('contributor-pr-base-{0}', github.sha) || format('contributor-pr-{0}', github.ref) }}
      cancel-in-progress: true
    
    env:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. hack/boilerplate/boilerplate.py

    verbose_out = sys.stderr if args.verbose else open("/dev/null", "w")
    
    
    def get_refs():
        refs = {}
    
        for path in glob.glob(os.path.join(args.boilerplate_dir, "boilerplate.*.txt")):
            extension = os.path.basename(path).split(".")[1]
    
            with open(path, "r") as ref_file:
                refs[extension] = ref_file.read().splitlines()
    
        return refs
    
    
    def is_generated_file(data, regexs):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/GitVersionControlSystem.java

        public VersionRef getDefaultBranch(VersionControlSpec spec) {
            GitVersionControlSpec gitSpec = cast(spec);
            Collection<Ref> refs = getRemoteRefs(gitSpec, false, true);
            for (Ref ref : refs) {
                // TODO: Default branch can be different from just master
                if (ref.getName().equals("refs/heads/master")) {
                    return GitVersionRef.from(ref);
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vcstest/svn/test2-svn-git.txt

    git remote add origin https://vcs-test.swtch.com/git/README-only
    mkdir .git/refs/remotes/origin
    echo 'ref: refs/remotes/origin/master'
    cp stdout .git/refs/remotes/origin/HEAD
    unquote '# pack-refs with: peeled fully-peeled \n7f800d2ac276dd7042ea0e8d7438527d236fd098 refs/remotes/origin/master\n'
    cp stdout .git/packed-refs
    git branch --set-upstream-to=origin/master
    
    git add pkg/pkg.go
    at 2017-09-22T11:41:28-04:00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/git/v2sub.txt

    git tag v2.0.0
    
    at 2022-02-22T15:55:07-05:00
    git add README.txt
    git commit -m 'v2sub: add README.txt'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    -- .git-refs --
    80beb17a16036f17a5aedd1bb5bd6d407b3c6dc5 refs/heads/main
    5fcd3eaeeb391d399f562fd45a50dac9fc34ae8b refs/tags/v2.0.0
    -- v2/go.mod --
    module vcs-test.golang.org/git/v2sub.git/v2
    
    go 1.16
    -- v2/v2sub.go --
    package v2sub
    -- v2sub.go --
    package v2sub
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 773 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    git remote add origin https://vcs-test.swtch.com/git/README-only
    mkdir .git/refs/remotes/origin
    echo 'ref: refs/remotes/origin/master'
    cp stdout .git/refs/remotes/origin/HEAD
    unquote '# pack-refs with: peeled fully-peeled \n7f800d2ac276dd7042ea0e8d7438527d236fd098 refs/remotes/origin/master\n'
    cp stdout .git/packed-refs
    git branch --set-upstream-to=origin/master
    
    git add pkg/pkg.go
    at 2017-09-22T11:41:28-04:00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  7. pilot/pkg/config/monitor/file_snapshot.go

    	configs, _, err := crd.ParseInputs(string(data))
    
    	// Convert to an array of pointers.
    	refs := make([]*config.Config, len(configs))
    	for i := range configs {
    		refs[i] = &configs[i]
    		refs[i].Domain = domainSuffix
    	}
    	return refs, err
    }
    
    // byKey is an array of config objects that is capable or sorting by Namespace, GroupVersionKind, and Name.
    type byKey []*config.Config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/reduceGraph.kt

        val reducing = hashSetOf<V>()
    
        fun reduce(node: V, refs: Iterable<V>): Set<V> {
    
            result[node]?.let {
                return it
            }
    
            val externalNodes = mutableSetOf<V>()
            result[node] = externalNodes
    
            reducing.add(node)
            for (ref in refs) {
                if (ref in reducing) {
                    continue
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/crypto/tls/cache_test.go

    	}
    
    	if entry, ok := cc.Load(string(p.Bytes)); !ok {
    		t.Fatal("cache does not contain expected entry")
    	} else {
    		if refs := entry.(*cacheEntry).refs.Load(); refs != 2 {
    			t.Fatalf("unexpected number of references: got %d, want 2", refs)
    		}
    	}
    
    	timeoutRefCheck := func(t *testing.T, key string, count int64) {
    		t.Helper()
    		c := time.After(4 * time.Second)
    		for {
    			select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 19:46:27 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializer.kt

    }
    
    
    private
    class EnvironmentEncoder : ClassEncoder {
    
        private
        val refs = IdentityHashMap<Class<*>, Int>()
    
        override fun WriteContext.encodeClass(type: Class<*>) {
            writeSmallInt(refs.computeIfAbsent(type) { refs.size })
        }
    
        fun getResultingEnvironment(): Map<Int, Any> =
            refs.invert()
    }
    
    
    private
    class EnvironmentDecoder(
        val environment: Map<Int, Any>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top