- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for CL (0.01 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/BuildableDOMCategory.groovy
} public static void setChildren(Node element, Closure cl) { while (element.hasChildNodes()) { element.removeChild(element.getFirstChild()) } leftShift(element, cl) } public static def leftShift(Node parent, Closure cl) { DomBuilder builder = new DomBuilder(parent) cl.delegate = builder cl.call() return builder.elements[0] }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 11 15:32:19 UTC 2022 - 2.8K bytes - Viewed (0) -
cmd/tier-last-day-stats.go
} func (l lastDayTierStats) merge(m lastDayTierStats) (merged lastDayTierStats) { cl := l.clone() cm := m.clone() if cl.UpdatedAt.After(cm.UpdatedAt) { cm.forwardTo(cl.UpdatedAt) merged.UpdatedAt = cl.UpdatedAt } else { cl.forwardTo(cm.UpdatedAt) merged.UpdatedAt = cm.UpdatedAt } for i := range cl.Bins { merged.Bins[i] = cl.Bins[i].add(cm.Bins[i]) } return merged }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Feb 19 22:54:46 UTC 2024 - 2.8K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/model/SimpleClassMetaDataRepositoryTest.groovy
repository.put('class1', value1) repository.put('class2', value2) Closure cl = Mock() when: repository.each(cl) then: 1 * cl.call(['class1', value1] as Object[]) 1 * cl.call(['class2', value2] as Object[]) 0 * cl._ } def canIterateOverClassesUsingAction() { TestDomainObject value1 = new TestDomainObject('a')
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Apr 06 02:21:33 UTC 2024 - 3.8K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/MethodMetaData.java
ClassMetaData cl = queue.removeFirst(); if (cl == null) { continue; } MethodMetaData overriddenMethod = cl.findDeclaredMethod(overrideSignature); if (overriddenMethod != null) { return overriddenMethod; } queue.add(cl.getSuperClass()); queue.addAll(cl.getInterfaces()); }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.9K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/XmlSpecification.groovy
return document ? document.importNode(parsed, true) : parsed } def formatTree(Closure cl) { withCategories { return formatTree(cl.call()) } } def withCategories(Closure cl) { use(BuildableDOMCategory) { return cl.call() } } def format(Node... nodes) { format(nodes as List) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.1K bytes - Viewed (0) -
doc/README.md
If your CL addresses an accepted proposal, mention the proposal issue number in your release note in the form `/issue/NUMBER`. A link to the issue in the text will have this form (see below). If you don't want to mention the issue in the text, add it as a comment: ``` <!-- go.dev/issue/12345 --> ``` If an accepted proposal is mentioned in a CL but not in the release notes, it will be
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Jul 22 17:55:04 UTC 2024 - 3.1K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/12-telemetry.yml
description: > A CL containing proposed changes to the [config.txt](https://go.googlesource.com/telemetry/+/master/internal/chartconfig/config.txt) chart configuration. See the [chartconfig](https://pkg.go.dev/golang.org/x/telemetry/internal/chartconfig) package for an explanation of the chart config format. For an example change, see [CL 564619](https://go.dev/cl/564619). validations:
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue May 07 19:58:26 UTC 2024 - 1.2K bytes - Viewed (0) -
misc/chrome/gophertool/gopher.js
// We could use the golang.org/cl/ handler here, but // avoid some redirect latency and go right there, since // one is easy. (no server-side mapping) return "https://github.com/golang/go/issues/" + t; } return "https://golang.org/cl/" + t; } if (gerritChangeIdRE.test(t)) { return "https://golang.org/cl/" + t; } var match = commitRE.exec(t);
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Sat Jul 11 14:36:33 UTC 2015 - 1.2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/ClassLoaderUtilTest.java
final ClassLoader context = Thread.currentThread().getContextClassLoader(); try { final ClassLoader cl = new URLClassLoader(new URL[0], getClass().getClassLoader()); Thread.currentThread().setContextClassLoader(cl); assertThat(ClassLoaderUtil.getClassLoader(TestCase.class), is(sameInstance(cl))); } finally { Thread.currentThread().setContextClassLoader(context); } }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3K bytes - Viewed (0) -
lib/time/update.bash
# # That will prepare the files and create the commit. # # To review such a commit (as the reviewer), use: # # git codereview change NNNNNN # CL number # cd lib/time # ./update.bash # # If it prints "No updates needed.", then the generated files # in the CL match the update.bash in the CL. # Versions to use. CODE=2024b DATA=2024b set -e cd $(dirname $0) rm -rf work mkdir work
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 14:25:08 UTC 2024 - 1.8K bytes - Viewed (0)