Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 616 for BAR (0.02 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/DefaultTypeAwareProblemBuilderTest.groovy

                .typeName("foo")
                .propertyName("bar")
                .build()
    
            expect:
            DefaultTypeAwareProblemBuilder.introductionFor(Optional.of(data), true) == "Property 'bar' "
        }
    
        def "render introduction with type"() {
            given:
            def data = DefaultTypeValidationData.builder()
                .typeName("foo")
                .propertyName("bar")
                .build()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/sidecar_test.go

    	services6 = []*Service{
    		{
    			Hostname: "bar",
    			Ports:    twoPorts,
    			Attributes: ServiceAttributes{
    				Name:      "bar",
    				Namespace: "foo",
    			},
    		},
    	}
    
    	services7 = []*Service{
    		{
    			Hostname: "bar",
    			Ports:    twoPorts,
    			Attributes: ServiceAttributes{
    				Name:      "bar",
    				Namespace: "foo",
    			},
    		},
    		{
    			Hostname: "barprime",
    			Ports:    port8000,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo/2/bar/3/4")))
        }
    
        @Test
        fun `recognizes user-home-based paths against the user home dir`() {
            val instance = createFromPaths(listOf("~/.gradle/foo.bar"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File(System.getProperty("user.home"), ".gradle/foo.bar")))
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/KtExpandedTypeRenderingMode.kt

     */
    public enum class KaExpandedTypeRenderingMode {
        /**
         * Renders only the abbreviated type as-is, e.g. `foo.bar.StringAlias`.
         */
        RENDER_ABBREVIATED_TYPE,
    
        /**
         * Renders the abbreviated type as-is and its expansion in a comment, e.g. `foo.bar.StringAlias /* = kotlin.String */`.
         */
        RENDER_ABBREVIATED_TYPE_WITH_EXPANDED_TYPE_COMMENT,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates_test.go

    			oldObj:       st.MakePod().Name("p1").SchedulingGates([]string{"foo", "bar"}).UID("uid1").Obj(),
    			newObj:       st.MakePod().Name("p1").SchedulingGates([]string{"foo"}).UID("uid1").Obj(),
    			expectedHint: framework.QueueSkip,
    		},
    		"skip-queue-on-gates-not-empty": {
    			pod:          st.MakePod().Name("p").SchedulingGates([]string{"foo", "bar"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/internal/fmtsort/sort_test.go

    }
    
    var sortTests = []sortTest{
    	{
    		map[int]string{7: "bar", -3: "foo"},
    		"-3:foo 7:bar",
    	},
    	{
    		map[uint8]string{7: "bar", 3: "foo"},
    		"3:foo 7:bar",
    	},
    	{
    		map[string]string{"7": "bar", "3": "foo"},
    		"3:foo 7:bar",
    	},
    	{
    		map[float64]string{7: "bar", -3: "foo", math.NaN(): "nan", math.Inf(0): "inf"},
    		"NaN:nan -3:foo 7:bar +Inf:inf",
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r54/RunEclipseAutoBuildTasksCrossVersionSpec.groovy

            file("sub1").mkdirs()
    
            buildFile << """
                apply plugin: 'eclipse'
    
                task foo {
                }
    
                task bar {
                }
    
                project(":sub") {
                    apply plugin: 'eclipse'
    
                    task bar {
                    }
                }
            """
            settingsFile << "include 'sub'"
        }
    
        def "can run tasks upon Eclipse auto-build"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

         * it is.
         *
         * Example:
         *   package a.b.c
         *   import foo.bar
         *   fun test() {}
         *   fun runFunctions() {
         *     foo.bar()     // -> bar()
         *     a.b.c.test()  // -> test()
         *   }
         */
        SHORTEN_IF_ALREADY_IMPORTED,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. pkg/controller/deployment/deployment_controller_test.go

    	_, ctx := ktesting.NewTestContext(t)
    
    	f := newFixture(t)
    
    	// Two Deployments with same labels.
    	d1 := newDeployment("foo", 1, nil, nil, nil, map[string]string{"foo": "bar"})
    	d2 := newDeployment("bar", 1, nil, nil, nil, map[string]string{"foo": "bar"})
    
    	// Two ReplicaSets that match labels for both Deployments,
    	// but have ControllerRefs to make ownership explicit.
    	rs1 := newReplicaSet(d1, "rs1", 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  10. pkg/kubelet/lifecycle/handlers_test.go

    			PostStart: &v1.LifecycleHandler{
    				HTTPGet: &v1.HTTPGetAction{
    					Host: "foo",
    					Port: intstr.FromInt32(8080),
    					Path: "bar",
    				},
    			},
    		},
    	}
    	pod := v1.Pod{}
    	pod.ObjectMeta.Name = "podFoo"
    	pod.ObjectMeta.Namespace = "nsFoo"
    	pod.ObjectMeta.UID = "foo-bar-quux"
    	pod.Spec.Containers = []v1.Container{container}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top