Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,152 for SIMPLE (0.23 sec)

  1. platforms/documentation/docs/src/snippets/mavenMigration/multiModule/tests/projects.out

    Projects:
    
    ------------------------------------------------------------
    Root project 'simple-multi-module'
    ------------------------------------------------------------
    
    Root project 'simple-multi-module'
    +--- Project ':simple-weather'
    \--- Project ':simple-webapp'
    
    To see a list of the tasks of a project, run gradle <project-path>:tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 19:12:19 UTC 2024
    - 394 bytes
    - Viewed (0)
  2. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/DefaultModelResolverTest.java

            super();
        }
    
        @Test
        void testResolveParentThrowsUnresolvableModelExceptionWhenNotFound() throws Exception {
            final Parent parent = Parent.newBuilder()
                    .groupId("ut.simple")
                    .artifactId("artifact")
                    .version("0")
                    .build();
    
            UnresolvableModelException e = assertThrows(
                    UnresolvableModelException.class,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/consumer/simple/simple-parent/pom.xml

      </parent>
      <artifactId>simple-parent</artifactId>
      <packaging>pom</packaging>
      <name>Multi Chapter Simple Parent Project</name>
    
      <modules>
        <module>simple-weather</module>
        <module>simple-webapp</module>
    
        <!-- On purpose at the end, project graph is responsible for ordering -->
        <!-- Build/consumer should not be effected by reverse order -->
        <module>simple-testutils</module>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ModelType.java

            }
        }
    
        private static class Simple<T> extends ModelType<T> {
            public static <T> ModelType<T> typed(Type type) {
                return new Simple<T>(type);
            }
    
            public static <T> ModelType<T> typed(TypeWrapper wrapper) {
                return new Simple<T>(wrapper);
            }
    
            public Simple(Type type) {
                super(wrap(type));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. maven-slf4j-provider/pom.xml

                  <artifactId>slf4j-simple</artifactId>
                  <version>${slf4jVersion}</version>
                  <type>jar</type>
                  <classifier>sources</classifier>
                  <overWrite>false</overWrite>
                  <outputDirectory>${project.build.directory}/generated-sources/slf4j-simple</outputDirectory>
                  <includes>org/slf4j/simple/*.java</includes>
                </artifactItem>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/consumer/simple/simple-parent/simple-webapp/pom.xml

        <artifactId>simple-parent</artifactId>
      </parent>
    
      <artifactId>simple-webapp</artifactId>
      <name>Multi Chapter Simple Web Application Project</name>
      <dependencies>
        <dependency>
          <groupId>org.sonatype.mavenbook.multi</groupId>
          <artifactId>simple-weather</artifactId>
        </dependency>
      </dependencies>
      <build>
        <finalName>simple-webapp</finalName>
        <pluginManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. cmd/import-boss/testdata/simple-fwd/allowed/file.go

    package allowed
    
    import (
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/allowed/a2"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/forbidden/f2"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/neither/n2"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 259 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/mavenMigration/multiModule/kotlin/settings.gradle.kts

    rootProject.name = "simple-multi-module"  // <1>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 101 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/mavenMigration/multiModule/groovy/settings.gradle

    rootProject.name = 'simple-multi-module'  // <1>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/instance.go

    	Cluster() cluster.ID
    }
    
    var _ Instance = &Simple{}
    
    type DiscoveryController interface {
    	model.Controller
    	model.ServiceDiscovery
    }
    
    // Simple Instance implementation, where fields are set individually.
    type Simple struct {
    	ProviderID provider.ID
    	ClusterID  cluster.ID
    
    	DiscoveryController
    }
    
    func (r Simple) Provider() provider.ID {
    	return r.ProviderID
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top