Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,439 for untainer (0.17 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.pom.md5

    Guillaume Nodet <******@****.***> 1664700085 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 32 bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar.md5

    Guillaume Nodet <******@****.***> 1664700085 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 32 bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.pom.md5

    Guillaume Nodet <******@****.***> 1664700085 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 32 bytes
    - Viewed (0)
  4. pkg/kubelet/util/util_test.go

    			containers:        []v1.Container{{Name: "container-1"}, {Name: "container-2"}},
    			statuses:          []v1.ContainerStatus{{Name: "container-1"}, {Name: "container-2"}},
    			idx:               1,
    			expectedContainer: v1.Container{Name: "container-2"},
    			expectedOK:        true,
    		},
    	}
    
    	for _, tc := range testCases {
    		container, ok := GetContainerByIndex(tc.containers, tc.statuses, tc.idx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 14:16:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. docs/en/docs/js/termynal.js

         */
        constructor(container = '#termynal', options = {}) {
            this.container = (typeof container === 'string') ? document.querySelector(container) : container;
            this.pfx = `data-${options.prefix || 'ty'}`;
            this.originalStartDelay = this.startDelay = options.startDelay
                || parseFloat(this.container.getAttribute(`${this.pfx}-startDelay`)) || 600;
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/model/CalculatedValueContainerTest.groovy

        def "can create container with fixed value"() {
            def container = new CalculatedValueContainer(Describables.of("thing"), "value")
    
            expect:
            container.get() == "value"
            container.getValue().get() == "value"
        }
    
        def "calculates and caches value"() {
            def calculator = Mock(ValueCalculator)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 19 19:42:22 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. pkg/kubelet/container/ref.go

    // within the given pod. Returns an error if the reference can't be constructed or the
    // container doesn't actually belong to the pod.
    func GenerateContainerRef(pod *v1.Pod, container *v1.Container) (*v1.ObjectReference, error) {
    	fieldPath, err := fieldPath(pod, container)
    	if err != nil {
    		// TODO: figure out intelligent way to refer to containers that we implicitly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 00:55:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultPolymorphicDomainObjectContainerDslTest.groovy

            container.registerDefaultFactory({ new DefaultPerson(name: it) } as NamedDomainObjectFactory )
    
            when:
            project.container {
                Fred
                Barney {}
            }
    
            then:
            container.size() == 2
            container.findByName("Fred") == realFred
            container.findByName("Barney") == realBarney
            container.asDynamicObject.getProperty("Fred") == realFred
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 22 10:43:11 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionContainerTest.groovy

            container.getByName("foo") == extension
            container.findByName("bar") == barExtension
    
            container.getByType(BarExtension) == barExtension
            container.findByType(FooExtension) == extension
    
            container.findByType(SomeExtension) == null
            container.findByName("i don't exist") == null
        }
    
        def "throws when unknown exception wanted by name"() {
            container.add("foo", extension)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ContainerElementServiceInjectionIntegrationTest.groovy

                    }
                }
    
                def container = project.container(Bean)
                container.create("one") {
                    assert name == "one"
                }
            """
    
            expect:
            succeeds()
            outputContains("got it")
        }
    
        def "fails when container element requests unknown service"() {
            buildFile """
                interface Unknown { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5K bytes
    - Viewed (0)
Back to top