Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for BarBar (0.11 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

                ${setAll("foo", "fooBar")}
                ${addToBaz("foo")}
            """)
            file("bar/build.gradle.dcl") << getDeclarativeScriptThatConfiguresOnlyTestSoftwareType("""
                ${setAll("bar", "barBar")}
                ${dependencies(implementation("bar:foo:2.0"))}
            """)
    
            when:
            run(":foo:printTestSoftwareTypeExtensionWithDependenciesConfiguration")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisTest.groovy

            )
    
            when:
            def deps = a.findTransitiveDependents(["Foo"], ["Foo" : IntSet.of(1)])
    
            then:
            deps.getAccessibleDependentClasses() == ["Bar"] as Set
            deps.getPrivateDependentClasses() == ["BarBar"] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. src/index/suffixarray/suffixarray_test.go

    			"ab",
    			"bc",
    			"abc",
    			"a.c",
    			"a(b|c)",
    			"abc?",
    		},
    	},
    
    	{
    		"barbara*3",
    		"barbarabarbarabarbara",
    		[]string{
    			"a",
    			"bar",
    			"rab",
    			"arab",
    			"barbar",
    			"bara?bar",
    		},
    	},
    
    	{
    		"typing drill",
    		"Now is the time for all good men to come to the aid of their country.",
    		[]string{
    			"Now",
    			"the time",
    			"to come the aid",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

                def myMap = objects.mapProperty(String, String)
                def myLazyProv = provider {
                    myMap.getting("foo").getOrElse("not_there")
                }
                myMap.put("bar", myLazyProv.map { "barbar" })
                myLazyProv.get()
    
                tasks.register("verify") {}
            """
    
            when:
            fails "verify"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    		},
    		{
    			name: "bound and unbound unsatisfied",
    			pod:  makePod("pod-a").withPVCVolume("pvc-a", "").withPVCVolume("pvc-b", "").Pod,
    			nodes: []*v1.Node{
    				makeNode("node-a").withLabel("foo", "barbar").Node,
    			},
    			pvcs: []*v1.PersistentVolumeClaim{
    				makePVC("pvc-a", waitSC.Name).withBoundPV("pv-a").PersistentVolumeClaim,
    				makePVC("pvc-b", waitSC.Name).PersistentVolumeClaim,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	if err := store.GuaranteedUpdate(ctx, key, updatedPod, false, nil,
    		storage.SimpleUpdate(func(obj runtime.Object) (runtime.Object, error) {
    			pod := obj.(*example.Pod)
    			pod.ObjectMeta.Labels = map[string]string{"foo": "barbar"}
    			return pod, nil
    		}), nil); err != nil {
    		t.Errorf("Unexpected failure during updated: %v", err)
    	}
    
    	calls := 0
    	validateFresh := func(_ context.Context, obj runtime.Object) error {
    		calls++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                    }
                    task barJar(type: Jar) {
                       archiveBaseName = 'b-bar'
                    }
                    tasks.withType(Jar) { destinationDirectory = buildDir }
                    artifacts {
                        freeDebug fooJar
                        freeRelease fooJar
                        bar barJar
                    }
                }
    
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StronglyTypedConfigurationAttributesResolveIntegrationTest.groovy

                       archiveBaseName = 'b-foo'
                    }
                    task barJar(type: Jar) {
                       archiveBaseName = 'b-bar'
                    }
                    artifacts {
                        'default' file('b-default.jar')
                        foo fooJar
                        bar barJar
                    }
                }
    
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 48.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

                projectDir
            )
    
            assertClassPathFor(
                fooBuildScript,
                [parentJar, fooJar] as Set,
                [barJar] as Set,
                projectDir
            )
    
            assertClassPathFor(
                barBuildScript,
                [parentJar, barJar] as Set,
                [fooJar] as Set,
                projectDir
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/manifest/tests/manifest.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43 bytes
    - Viewed (0)
Back to top