Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,492 for composed (0.13 sec)

  1. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/catalog/composed-platform.toml

    Tom Tresansky <******@****.***> 1697219015 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 254 bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * A marker interface for a provider that can be composed, i.e. multiple instances of the same provider can be composed into a single
     * provider.
     *
     * Composable providers share certain traits: There is a notion of a sequentially composed [KotlinCompositeProvider] of that kind, and there
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/DeferrableTest.groovy

            def creationCount = new AtomicInteger()
    
            def composed = first.flatMap { Integer input ->
                creationCount.incrementAndGet()
                return second(input)
            }
    
            expect:
            composed.getCompleted().present == expectCompleted
            creationCount.get() == (resolveSecondEagerly ? 1 : 0)
    
            when:
            def result = composed.completeAndGet()
            then:
            result == 30
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. cluster/addons/cluster-loadbalancing/glbc/README.md

    # GCE Load-Balancer Controller (GLBC) Cluster Addon
    
    This cluster addon is composed of a 404 default backend service and deployment.
    On GCE, this 404 service is used in conjunction with the
    [Ingress-GCE](https://github.com/kubernetes/ingress-gce) controller.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 18 21:17:01 UTC 2019
    - 309 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/CompositeSchema.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema;
    
    /**
     * The schema for an element that is composed from other elements.
     */
    public interface CompositeSchema<T> extends ModelSchema<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 805 bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppWithLibraryTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    /**
     * A Swift app composed of 2 modules: an application and a library.
     */
    class SwiftAppWithLibraryTest implements AppElement {
        final SwiftLibWithXCTest library = new SwiftLibWithXCTest()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppAppWithLibraries.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    /**
     * A C++ app composed of 3 modules: an executable and 2 libraries.
     */
    class CppAppWithLibraries implements AppElement {
        private final greeter = new CppGreeterUsesLogger()
        private final logger = new CppLogger()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppAppWithLibraryAndOptionalFeature.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    /**
     * A C++ app composed of 2 modules, an executable and a library, with some optional compile time feature.
     */
    class CppAppWithLibraryAndOptionalFeature {
        private final greeter = new CppGreeterWithOptionalFeature()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsCompositeBuildIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.isolated
    
    class IsolatedProjectsCompositeBuildIntegrationTest extends AbstractIsolatedProjectsIntegrationTest {
        def "can build libraries composed from multiple builds"() {
            settingsFile << """
                includeBuild("libs")
            """
            file("libs/settings.gradle") << """
                include("a")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher_test.go

    		},
    	}
    
    	for _, tc := range tcs {
    		actual, err := mutationAnnotationValue(tc.config, tc.webhook, tc.mutated)
    		assert.NoError(t, err, "unexpected error")
    		if actual != tc.expected {
    			t.Errorf("composed mutation annotation value doesn't match, want: %s, got: %s", tc.expected, actual)
    		}
    	}
    }
    
    func TestJSONPatchAnnotationValue(t *testing.T) {
    	tcs := []struct {
    		name     string
    		config   string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top