Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 557 for simplest (0.95 sec)

  1. maven-core/src/test/projects/default-maven/simple/pom.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>simple</groupId>
      <artifactId>simple</artifactId>
      <version>1.0-SNAPSHOT</version>
      <packaging>pom</packaging>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 08 08:46:30 UTC 2022
    - 383 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    // Statements
    
    // SimpleStmt = EmptyStmt | ExpressionStmt | SendStmt | IncDecStmt | Assignment | ShortVarDecl .
    func (p *parser) simpleStmt(lhs Expr, keyword token) SimpleStmt {
    	if trace {
    		defer p.trace("simpleStmt")()
    	}
    
    	if keyword == _For && p.tok == _Range {
    		// _Range expr
    		if debug && lhs != nil {
    			panic("invalid call of simpleStmt")
    		}
    		return p.newRangeClause(nil, false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/consumer/simple/simple-parent/simple-weather/pom.xml

      <parent>
        <groupId>org.sonatype.mavenbook.multi</groupId>
        <artifactId>simple-parent</artifactId>
      </parent>
      <artifactId>simple-weather</artifactId>
      <packaging>jar</packaging>
    
      <name>Multi Chapter Simple Weather API</name>
    
      <dependencies>
        <dependency>
          <groupId>org.sonatype.mavenbook.multi</groupId>
          <artifactId>simple-testutils</artifactId>
          <scope>test</scope>
        </dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/test/resources/repo/ut/simple/artifact/1.0/artifact-1.0.pom

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>ut.simple</groupId>
        <artifactId>parent</artifactId>
        <version>1.0</version>
      </parent>
    
      <artifactId>artifact</artifactId>
    
      <name>Simple Unit Test Artifact</name>
    
      <dependencies>
        <dependency>
          <groupId>ut.simple</groupId>
          <artifactId>dependency</artifactId>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/ReserializingTestCollectionGenerator.java

          return (T) in.readObject();
        } catch (IOException | ClassNotFoundException e) {
          throw new AssertionError(e);
        }
      }
    
      @Override
      public SampleElements<E> samples() {
        return delegate.samples();
      }
    
      @Override
      public E[] createArray(int length) {
        return delegate.createArray(length);
      }
    
      @Override
      public Iterable<E> order(List<E> insertionOrder) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. maven-resolver-provider/src/test/resources/repo/ut/simple/parent/1.0/parent-1.0.pom

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>ut.simple</groupId>
      <artifactId>parent</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
    
      <name>Simple Unit Test Parent</name>
    
      <dependencyManagement>
        <dependencies>
          <dependency>
            <groupId>ut.simple</groupId>
            <artifactId>dependency</artifactId>
            <version>1.0</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/MapGenerators.java

        }
      }
    
      public static class ImmutableMapEntryListGenerator
          implements TestListGenerator<Entry<String, Integer>> {
    
        @Override
        public SampleElements<Entry<String, Integer>> samples() {
          return new SampleElements<>(
              mapEntry("foo", 5),
              mapEntry("bar", 3),
              mapEntry("baz", 17),
              mapEntry("quux", 1),
              mapEntry("toaster", -2));
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            // SLF4J Simple is an implementation of the SLF4J API, which is not needed in Gradle
            withLibraryDependencies<DependencyRemovalByNameRule>(libs.sshdCore, setOf("slf4j-simple"))
            withLibraryDependencies<DependencyRemovalByNameRule>(libs.sshdScp, setOf("slf4j-simple"))
            withLibraryDependencies<DependencyRemovalByNameRule>(libs.sshdSftp, setOf("slf4j-simple"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/tasks/GenerateKotlinDependencyExtensions.kt

     *
     * @param module simple name of the Kotlin module, for example "reflect".
     */
    fun DependencyHandler.embeddedKotlin(module: String): Any =
        kotlin(module, embeddedKotlinVersion)
    
    
    /**
     * Builds the dependency notation for the named Kotlin [module] at the given [version].
     *
     * @param module simple name of the Kotlin module, for example "reflect".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:26 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/test/resources/repo/ut/simple/dependency/1.0/dependency-1.0.pom

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>ut.simple</groupId>
      <artifactId>dependency</artifactId>
      <version>1.0</version>
    
      <name>Simple Unit Test Dependency</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.2K bytes
    - Viewed (0)
Back to top