Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for disambiguate (0.17 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CppBinary.java

    public interface CppBinary {
        /**
         * Returns the name of this binary. This is used to disambiguate the binaries of a project. Each binary has a unique name within its project. However, these names are not unique across multiple projects.
         */
        String getName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CppComponent.java

    import org.gradle.tooling.model.DomainObjectSet;
    
    /**
     * Represents a C++ component.
     *
     * @since 4.10
     */
    public interface CppComponent {
        /**
         * Returns the name of this component. This is used to disambiguate the component of a project. Each component has a unique name within its project. However, these names are not unique across multiple projects.
         */
        String getName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/go/parser/testdata/issue49482.go2

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    type (
            // these need a comma to disambiguate
            _[P *T,] struct{}
            _[P *T, _ any] struct{}
            _[P (*T),] struct{}
            _[P (*T), _ any] struct{}
            _[P (T),] struct{}
            _[P (T), _ any] struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 20:20:27 UTC 2022
    - 965 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/testdata/issue49482.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    type (
            // these need a comma to disambiguate
            _[P *T,] struct{}
            _[P *T, _ any] struct{}
            _[P (*T),] struct{}
            _[P (*T), _ any] struct{}
            _[P (T),] struct{}
            _[P (T), _ any] struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 965 bytes
    - Viewed (0)
  5. test/typeparam/issue54456.go

    // run
    
    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The Go 1.18 frontend failed to disambiguate instantiations of
    // different, locally defined generic types with the same name.
    //
    // The unified frontend also exposed the scope-disambiguation mangling
    // to end users in reflect data.
    
    package main
    
    import (
    	"reflect"
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 18:13:48 UTC 2022
    - 898 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/AttributeSelectionSchema.java

         *
         * @return A subset of {@code candidates} which contain matched attribute values. Or, null if no matches were found.
         */
        @Nullable
        Set<Object> disambiguate(Attribute<?> attribute, @Nullable Object requested, Set<Object> candidates);
    
        boolean matchValue(Attribute<?> attribute, Object requested, Object candidate);
    
        @Nullable
        Attribute<?> getAttribute(String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/OperationDescriptor.java

    @HasInternalProtocol
    public interface OperationDescriptor {
    
        /**
         * Returns the name of the operation. This name does not necessarily uniquely identify the operation. However, the name can be used
         * by a human to disambiguate between the children of a given operation.
         *
         * @return The name of the operation.
         */
        String getName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/VariantIdentityUniquenessVerifier.java

            ) {
                DocumentedFailure.Builder builder = DocumentedFailure.builder();
                String advice = "Consider adding an additional attribute to one of the configurations to disambiguate them.";
                if (withTaskAdvice) {
                    advice += "  Run the 'outgoingVariants' task for more details.";
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CodeNarcPlugin.java

            configureReportsConventionMapping(task, baseName);
            configureToolchains(task);
        }
    
        @Override
        protected void beforeApply() {
            // Necessary to disambiguate the published variants of newer codenarc versions (including the default version)
            project.getPluginManager().apply(JvmEcosystemPlugin.class);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:49:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultAttributeMatcher.java

            // the same work, so instead we cache disambiguation results based on the attributes being disambiguated.
            // The result of this is a list of indices into the original candidate list from which the
            // attributes-to-disambiguate are derived. When retrieving a result from the cache, we use the resulting
            // indices to index back into the original candidates list.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top