Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for BAR (0.04 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            buildFile << publicationBuildWithCredentialsProvider(version, group, mavenRemoteRepo.uri)
            configureRepositoryCredentials('foo', 'bar')
    
            server.authenticationScheme = AuthScheme.BASIC
            PasswordCredentials credentials = new DefaultPasswordCredentials('foo', 'bar')
            expectPublishModuleWithCredentials(module, credentials)
    
            when:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    						Name:   "pod-template-3",
    						Labels: map[string]string{"foo": "bar"},
    					},
    					Spec: api.PodSpec{
    						Containers: []api.Container{},
    					},
    				},
    			},
    
    			options: printers.GenerateOptions{},
    			// Columns: Name, Containers, Images, Pod Labels
    			expected: []metav1.TableRow{{Cells: []interface{}{"pod-template-3", "", "", "foo=bar"}}},
    		},
    	}
    
    	for i, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                include("a")
            """
            file("build.gradle") << """
                ext.foo = 1
                def bar() { }
            """
            file("a/build.gradle") << """
                ext.baz = 0
    
                def o = project as GroovyObject
                o.getProperty('foo')
                o.invokeMethod('bar', new Object[] {})
                o.setProperty('baz', 1)
    
                assert project.hasProperty('baz')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    		Spec: batch.JobSpec{
    			Selector: &metav1.LabelSelector{
    				MatchLabels: map[string]string{"foo": "bar"},
    			},
    			Template: v1.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{
    						"foo": "bar",
    					},
    				},
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{Image: "foo/bar"},
    					},
    				},
    			},
    		},
    	}
    	if completionMode != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	pod, status := makeBasePodAndStatus()
    	pod.Spec.InitContainers = []v1.Container{
    		{
    			Name:  "init1",
    			Image: "bar-image",
    		},
    		{
    			Name:  "init2",
    			Image: "bar-image",
    		},
    		{
    			Name:  "init3",
    			Image: "bar-image",
    		},
    	}
    	// Replace the original statuses of the containers with those for the init
    	// containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            given:
            def configurationCache = newConfigurationCacheFixture()
            buildFile """
                tasks.register('copyAndRename', Copy) {
                    from('foo') { rename { 'bar' } }
                }
            """
    
            when:
            configurationCacheRun "copyAndRename"
            configurationCacheRun "copyAndRename"
    
            then:
            configurationCache.assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    // made up of a keyword followed by arguments. For example:
    //
    //	go 1.18
    //
    //	use ../foo/bar
    //	use ./baz
    //
    //	replace example.com/foo v1.2.3 => example.com/bar v1.4.5
    //
    // The leading keyword can be factored out of adjacent lines to create a block,
    // like in Go imports.
    //
    //	use (
    //	  ../foo/bar
    //	  ./baz
    //	)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

            then: "the configuration cache entry is reused"
            configurationCache.assertStateLoaded()
    
            when: "the file content is modified and the build is re-run"
            accessedFile.text = "bar"
            configurationCacheRunLenient()
    
            then: "the cache entry is invalidated and the change is reported"
            configurationCache.assertStateStored()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. pkg/config/constants/constants.go

    	// InternalParentNames declares the original resources of an internally-generated config.
    	// This is used by k8s gateway-api.
    	// It is a comma separated list. For example, "HTTPRoute/foo.default,HTTPRoute/bar.default"
    	InternalParentNames      = "internal.istio.io/parents"
    	InternalRouteSemantics   = "internal.istio.io/route-semantics"
    	RouteSemanticsIngress    = "ingress"
    	RouteSemanticsGateway    = "gateway"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

        @Requires(UnitTestPreconditions.Jdk11OrLater)
        def "plugin can read file within jar"() {
            def testFile = JarUtils.jar(testDir.file("thing.jar")) {
                manifest {}
    
                entry("foo.txt", "bar")
            }
    
            buildKotlinFile << """
                import ${DefaultTask.name}
                import ${Project.name}
                import ${Plugin.name}
                import ${TaskAction.name}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top