Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 811 for qualify (1.73 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/attributes/TestSuiteType.java

     * limitations under the License.
     */
    
    package org.gradle.api.attributes;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.Named;
    
    /**
     * Attribute to qualify the type of testing a test suite will perform.
     * <p>
     * This attribute is usually found on variants that have the {@link Category} attribute valued at {@link Category#VERIFICATION verification}.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 30 17:15:17 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/attributes/DocsType.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.attributes;
    
    import org.gradle.api.Named;
    
    /**
     * Attributes to qualify the type of documentation.
     * <p>
     * This attribute is usually found on variants that have the {@link Category} attribute valued at {@link Category#DOCUMENTATION documentation}.
     *
     * @since 5.6
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 23 18:49:28 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/plugin/internal/DefaultPluginIdTest.groovy

            then:
            noExceptionThrown()
        }
    
        def "is qualified"() {
            expect:
            !new DefaultPluginId("foo").qualified
            new DefaultPluginId("foo.bar").qualified
        }
    
        def "qualify if unqualified"() {
            expect:
            new DefaultPluginId("foo").withNamespace("bar").toString() == "bar.foo"
        }
    
        def "throws exception when trying to add multiple namespaces"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 24 07:29:33 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/format.go

    // dump is only needed for debugging
    func (check *Checker) dump(format string, args ...any) {
    	fmt.Println(sprintf(check.qualifier, true, format, args...))
    }
    
    func (check *Checker) qualifier(pkg *Package) string {
    	// Qualify the package unless it's the package being type-checked.
    	if pkg != check.pkg {
    		if check.pkgPathMap == nil {
    			check.pkgPathMap = make(map[string]map[string]bool)
    			check.seenPkgMap = make(map[*Package]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/go/types/format.go

    func (check *Checker) dump(format string, args ...any) {
    	fmt.Println(sprintf(check.fset, check.qualifier, true, format, args...))
    }
    
    func (check *Checker) qualifier(pkg *Package) string {
    	// Qualify the package unless it's the package being type-checked.
    	if pkg != check.pkg {
    		if check.pkgPathMap == nil {
    			check.pkgPathMap = make(map[string]map[string]bool)
    			check.seenPkgMap = make(map[*Package]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

                    We shouldn't use jdk.internal types.
                    
                    com.beust and org.testng.collections has classes that look like Guava.
    
                    We prefer to import javax.annotation and fully-qualify references to org.jetbrains.annotations.
                -->
                <property name="illegalPkgs" value="jdk.internal,com.beust,org.testng.collections,org.jetbrains.annotations"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/issues0.go

    	_ = x.f /* ERROR "ambiguous selector x.f" */
    }
    
    func issue26234c() {
    	T.x /* ERROR "T.x undefined (type T has no method x)" */ ()
    }
    
    func issue35895() {
    	// T is defined in this package, don't qualify its name with the package name.
    	var _ T = 0 // ERROR "cannot use 0 (untyped int constant) as T"
    
    	// There is only one package with name syntax imported, only use the (global) package name in error messages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. src/log/slog/doc.go

    Now the program can change its logging level with a single statement:
    
    	programLevel.Set(slog.LevelDebug)
    
    # Groups
    
    Attributes can be collected into groups.
    A group has a name that is used to qualify the names of its attributes.
    How this qualification is displayed depends on the handler.
    [TextHandler] separates the group and attribute names with a dot.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildRegistry.java

                .reduce((a, b) -> isPrefix(a.getKey(), b.getKey())
                    ? b
                    : a
                );
            // If there is an ancestor, then we use it to qualify the path of the build we are adding
            Path requestedPath = parentBuild.map(
                entry -> entry.getValue().getIdentityPath().append(Path.path(name))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. pkg/registry/rbac/validation/rule.go

    	case rbacv1.ServiceAccountKind:
    		// default the namespace to namespace we're working in if its available.  This allows rolebindings that reference
    		// SAs in th local namespace to avoid having to qualify them.
    		saNamespace := namespace
    		if len(subject.Namespace) > 0 {
    			saNamespace = subject.Namespace
    		}
    		if len(saNamespace) == 0 {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 11.6K bytes
    - Viewed (0)
Back to top