Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 550 for simplest (1.63 sec)

  1. .teamcity/test-buckets.json

    				},
    				"subprojects":[
    					"workers",
    					"model-core",
    					"language-groovy",
    					"build-init",
    					"logging",
    					"plugins-groovy",
    					"kotlin-dsl",
    					"plugins-java",
    					"samples",
    					"plugin-development",
    					"enterprise"
    				]
    			}
    		],
    		"testCoverageUuid":1
    	},
    	{
    		"buckets":[
    			{
    				"parallelizationMethod":{
    					"name":"TeamCityParallelTests",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  2. 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)
  3. android/guava-testlib/src/com/google/common/collect/testing/CollectionTestSuiteBuilder.java

        private ReserializedCollectionGenerator(OneSizeTestContainerGenerator<Collection<E>, E> gen) {
          this.gen = gen;
        }
    
        @Override
        public SampleElements<E> samples() {
          return gen.samples();
        }
    
        @Override
        public Collection<E> create(Object... elements) {
          return SerializableTester.reserialize(gen.create(elements));
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 18 22:49:45 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  4. maven-embedder/src/examples/simple-project/pom.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>org.apache.maven.embedder</groupId>
      <artifactId>simple-project</artifactId>
      <version>1.0-SNAPSHOT</version>
      <name>simple-project</name>
      <url>http://maven.apache.org</url>
      <dependencies>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 27 10:08:56 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  5. android/guava-tests/benchmark/com/google/common/hash/HashStringBenchmark.java

       */
      @BeforeExperiment
      void setUp() {
        final long seed = 99;
        final Random rnd = new Random(seed);
        strings = new String[SAMPLES];
        for (int i = 0; i < SAMPLES; i++) {
          StringBuilder sb = new StringBuilder();
          for (int j = 0; j < charCount; j++) {
            int codePoint;
            // discard illegal surrogate "codepoints"
            do {
              codePoint = rnd.nextInt(maxCodePoint.value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 5.3K bytes
    - Viewed (0)
  6. android/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)
  7. src/cmd/compile/internal/inline/inlheur/function_properties.go

    	// Parameter value feeds unmodified into a top level "switch"
    	// statement or "if" statement simple expressions (see more on
    	// "simple" expression classification below).
    	ParamFeedsIfOrSwitch
    
    	// Parameter value feeds unmodified into a "switch" or "if"
    	// statement simple expressions (see more on "simple" expression
    	// classification below), where the if/switch is
    	// conditional/nested.
    	ParamMayFeedIfOrSwitch
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 18:52:53 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/factory/complex.xml

            <my.filter.value>hello</my.filter.value>
        </properties>
    
        <profiles>
            <profile>
                <id>two-conditions</id>
                <activation>
                    <file>
                        <exists>simple.xml</exists>
                    </file>
                    <property>
                        <name>myproperty</name>
                        <value>test</value>
                    </property>
                </activation>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  9. 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)
  10. build-logic/build-init-samples/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to generate samples using internal build init APIs"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("org.gradle.guides:gradle-guides-plugin")
        implementation("org.asciidoctor:asciidoctor-gradle-jvm") {
            because("This is a transitive dependency of 'gradle-guides-plugin' not declared there")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 442 bytes
    - Viewed (0)
Back to top