Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,316 for sameId (0.24 sec)

  1. platforms/software/resources/src/main/java/org/gradle/authentication/Authentication.java

     * limitations under the License.
     */
    
    package org.gradle.authentication;
    
    import org.gradle.api.Named;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Base interface for transport authentication schemes.
     */
    @HasInternalProtocol
    public interface Authentication extends Named {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 866 bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/decls2/decls2a.go

    func (x *T1) f /* ERROR "field and method with the same name f" */ () {}
    
    // Conflict between embedded field and method name,
    // with the embedded field being a basic type.
    type T1b struct {
    	int
    }
    
    func (T1b) int /* ERROR "field and method" */ () {}
    
    type T1c struct {
    	time.Time
    }
    
    func (T1c) Time /* ERROR "field and method with the same name Time" */ () int { return 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/model/DummyNamed.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.model;
    
    import org.gradle.api.Named;
    
    class DummyNamed implements Named {
        static int counter;
    
        public DummyNamed() {
            counter++;
        }
    
        @Override
        public String getName() {
            throw new UnsupportedOperationException();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 982 bytes
    - Viewed (0)
  4. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/JvmTestSuitePlugin.java

                attributes.attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category.class, Category.VERIFICATION));
                attributes.attribute(TestSuiteName.TEST_SUITE_NAME_ATTRIBUTE, objects.named(TestSuiteName.class, suite.getName()));
                attributes.attribute(TestSuiteTargetName.TEST_SUITE_TARGET_NAME_ATTRIBUTE, objects.named(TestSuiteTargetName.class, target.getName()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 21:08:13 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/Flavor.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.Named;
    
    /**
     * Defines a custom variant that differentiate a {@link NativeBinary}.
     */
    @Incubating
    public interface Flavor extends Named {
        /**
         * Returns a human-consumable display name for this flavor.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 959 bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/Linkage.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform;
    
    import org.gradle.api.Named;
    
    /**
     * Specify how a native library should be linked into another binary.
     *
     * @since 4.5
     */
    public enum Linkage implements Named {
        /**
         * Statically link binaries together.
         */
        STATIC,
    
        /**
         * Dynamically link binaries together.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. src/reflect/type_test.go

    func TestStructOfEmbeddedIfaceMethodCall(t *testing.T) {
    	type Named interface {
    		Name() string
    	}
    
    	typ := reflect.StructOf([]reflect.StructField{
    		{
    			Anonymous: true,
    			Name:      "Named",
    			Type:      reflect.TypeFor[Named](),
    		},
    	})
    
    	v := reflect.New(typ).Elem()
    	v.Field(0).Set(
    		reflect.ValueOf(reflect.TypeFor[string]()),
    	)
    
    	x := v.Interface().(Named)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ToolChain.java

     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Named;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * A set of compilers that are used together to construct binaries.
     */
    @HasInternalProtocol
    public interface ToolChain extends Named {
        /**
         * Returns a human consumable name for this tool chain.
         *
         * @since 1.11
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1003 bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/BuildType.java

     */
    package org.gradle.nativeplatform;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.Named;
    
    /**
     * Specifies a build-type for a native binary. Common build types are 'debug' and 'release', but others may be defined.
     */
    @Incubating
    public interface BuildType extends Named {
        /**
         * Returns a human-consumable name for this build type.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1006 bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/project/TestMavenRepositorySystem.java

     * under the License.
     */
    package org.apache.maven.project;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import org.apache.maven.artifact.resolver.ArtifactResolver;
    import org.apache.maven.repository.legacy.LegacyRepositorySystem;
    
    @Named("classpath")
    @Singleton
    @Deprecated
    public class TestMavenRepositorySystem extends LegacyRepositorySystem {
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top