Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,897 for somme (0.1 sec)

  1. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            given:
            projectLayoutRegistry.get("some-type") >> defaultGenerator
            defaultGenerator.id >> "some-type"
            defaultGenerator.modularizationOptions >> [ModularizationOption.SINGLE_PROJECT]
            defaultGenerator.dsls >> [KOTLIN]
            defaultGenerator.getTestFrameworks(_) >> [NONE, JUNIT]
            init.type = "some-type"
            init.testFramework = "spock"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. test/typeparam/issue50485.dir/a.go

    	return Ap(r.fn, a)
    }
    
    func (r ApplicativeFunctor1[H, HT, A, R]) Ap(a A) Option[R] {
    	return r.ApOption(Some(a))
    }
    
    func Applicative1[A, R any](fn Func1[A, R]) ApplicativeFunctor1[Nil, Nil, A, R] {
    	return ApplicativeFunctor1[Nil, Nil, A, R]{Some(Empty()), Some(fn)}
    }
    
    type ApplicativeFunctor2[H Header[HT], HT, A1, A2, R any] struct {
    	h  Option[H]
    	fn Option[Func1[A1, Func1[A2, R]]]
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/ByteArrayDataInput.java

      @CanIgnoreReturnValue // to skip some bytes
      @Override
      short readShort();
    
      @CanIgnoreReturnValue // to skip some bytes
      @Override
      int readUnsignedShort();
    
      @CanIgnoreReturnValue // to skip some bytes
      @Override
      char readChar();
    
      @CanIgnoreReturnValue // to skip some bytes
      @Override
      int readInt();
    
      @CanIgnoreReturnValue // to skip some bytes
      @Override
      long readLong();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. tests/test_starlette_urlconvertors.py

    
    def test_route_converters_path():
        # Test path conversion
        response = client.get("/path/some/example")
        assert response.status_code == 200, response.text
        assert response.json() == {"path": "some/example"}
    
    
    def test_route_converters_query():
        # Test query conversion
        response = client.get("/query", params={"param": "Qué tal!"})
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 27 14:46:06 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. testing/performance/src/templates/with-verbose-junit/Test.java

                System.out.println("Some test output from ${testClassName}.testOne - " + i);
                System.err.println("Some test error  from ${testClassName}.testOne - " + i);
            }
            assertEquals(production.getProperty(), "value");
        }
    
        @org.junit.Test
        public void testTwo() {
            for (int i = 0; i < 1000; i++) {
                System.out.println("Some test output from ${testClassName}.testTwo - " + i);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 991 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslJvmTargetIntegrationTest.kt

                dependencies {
                    implementation(files("utils.jar"))
                }
            """)
    
            withFile("buildSrc/src/main/kotlin/some.gradle.kts", printScriptJavaClassFileMajorVersion)
            withBuildScript("""plugins { id("some") }""")
    
            assertThat(build("help").output, containsString(outputFor(supportedKotlinJavaVersion())))
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 08:31:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

            def testValue2 = OperatingSystem.current().windows ? 'some value$PATH' : 'some value\\\\$PATH'
            def testValue3 = 'some value%PATH%'
            file("build.gradle") << '''
                application.applicationDefaultJvmArgs = [
                    '-DtestValue=value',
                    '-DtestValue2=some value$PATH',
                    '-DtestValue3=some value%PATH%',
                ]
            '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/DescribablesTest.groovy

            def value = Describables.withTypeAndName("some type", "name")
            value.displayName == "some type 'name'"
            value.toString() == "some type 'name'"
            value.capitalizedDisplayName == "Some type 'name'"
        }
    
        def "creates from description and value"() {
            expect:
            def value = Describables.quoted("some thing", "name")
            value.displayName == "some thing 'name'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

                extensions.getByType(MyExtension::class).some("api.get")
                extensions.configure<MyExtension> { some("api.configure") }
                the<MyExtension>().some("kotlin.reified.get")
                the(MyExtension::class).some("kotlin.kclass.get")
                configure<MyExtension> { some("kotlin.configure") }
                my.some("accessor.get")
                my { some("accessor.configure") }
            """)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/BuildLayoutConverterTest.groovy

            when:
            def dir = new File("some-dir").absoluteFile
            def parameters = convert(["--project-dir", "some-dir"])
    
            then:
            parameters.projectDir == dir
        }
    
        def "can specify Gradle user home directory using command-line argument"() {
            when:
            def dir = new File("some-dir").absoluteFile
            def parameters = convert(["--gradle-user-home", "some-dir"])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top