Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 325 for mais (0.18 sec)

  1. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/StandaloneSessionBuilderTest.kt

                        buildKtSourceModule {
                            addSourceRoot(testDataPath(root).resolve("main"))
                            addRegularDependency(main)
                            platform = JvmPlatforms.defaultJvmPlatform
                            moduleName = "main"
                        }
                    )
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TreeRangeMap.java

          public Set<Range<K>> keySet() {
            return new Maps.KeySet<Range<K>, V>(SubRangeMapAsMap.this) {
              @Override
              public boolean remove(@CheckForNull Object o) {
                return SubRangeMapAsMap.this.remove(o) != null;
              }
    
              @Override
              public boolean retainAll(Collection<?> c) {
                return removeEntryIf(compose(not(in(c)), Maps.<Range<K>>keyFunction()));
              }
            };
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/base/FunctionsTest.java

      public void testComposition() {
        Map<String, Integer> mJapaneseToInteger = Maps.newHashMap();
        mJapaneseToInteger.put("Ichi", 1);
        mJapaneseToInteger.put("Ni", 2);
        mJapaneseToInteger.put("San", 3);
        Function<String, Integer> japaneseToInteger = Functions.forMap(mJapaneseToInteger);
    
        Map<Integer, String> mIntegerToSpanish = Maps.newHashMap();
        mIntegerToSpanish.put(1, "Uno");
        mIntegerToSpanish.put(3, "Tres");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. src/cmd/cover/cover_test.go

    	// will not normalize the trailing / to a \ on Windows.
    	srcPath := t.TempDir() + string(filepath.Separator) + "\npackage main\nfunc main() { panic(string([]rune{'u', 'h', '-', 'o', 'h'}))\n/*/main.go"
    	mainSrc := ` package main
    
    func main() {
    	/* nothing here */
    	println("ok")
    }
    `
    	if err := os.MkdirAll(filepath.Dir(srcPath), 0777); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

            file("$childBuildName/src/main/groovy/my/MyExtension.groovy") << """
                import ${Property.name}
    
                interface MyExtension {
                    Property<String> getMessage()
                }
            """
        }
    
        private void addModelImplementation(String targetBuildName) {
            file("$targetBuildName/src/main/groovy/my/MyModel.groovy") << """
                package my
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginTest.kt

                )
            }
        }
    
        @Test
        fun `gradle kotlin dsl api dependency is added`() {
    
            withKotlinDslPlugin()
    
            withFile(
                "src/main/kotlin/code.kt",
                """
    
                // src/main/kotlin
                import org.gradle.kotlin.dsl.GradleDsl
    
                // src/generated
                import org.gradle.kotlin.dsl.embeddedKotlinVersion
    
                """
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginSyntheticIntegrationTest.kt

            withKotlinDslPluginIn("external-plugins").appendText("""group = "test"""")
            withFile("external-plugins/src/main/kotlin/applied-output.gradle.kts", outputFrom("applied-output plugin"))
            withFile(
                "external-plugins/src/main/kotlin/applied-output-fails.gradle.kts", """
                ${outputFrom("applied-output-fails plugin")}
                TODO("applied-output-fails plugin application failure")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

                    application {
                       mainClass = 'Main'
                    }
                    dependencies {
                        implementation 'org.test:lib:1.0'
                    }
                """
                file('src/main/java/Main.java') << """
                    class Main { public static void main(String[] args) {
                        Lib.main();
                    } }
                """
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ForwardingMap.java

       * to this implementation.
       *
       * @since 7.0
       */
      protected void standardPutAll(Map<? extends K, ? extends V> map) {
        Maps.putAllImpl(this, map);
      }
    
      /**
       * A sensible, albeit inefficient, definition of {@link #remove} in terms of the {@code iterator}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

        @Test
        fun `can access project extensions`() {
            withKotlinBuildSrc()
            withFile("buildSrc/src/main/kotlin/MyExtension.kt", """
                interface MyExtension {
                    fun some(message: String) { println(message) }
                }
            """)
            withFile("buildSrc/src/main/kotlin/my-plugin.gradle.kts", """
                extensions.create<MyExtension>("my")
                tasks.register("noop")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top