Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 832 for untainer (2.23 sec)

  1. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Reporting.java

     * The {@code Reporting} interface is parameterized, where the parameter denotes the specific type of reporting container
     * that is exposed. The specific type of the reporting container denotes the different types of reports available.
     * <p>
     * For example, given a task such as:
     * </p>
     * <pre>
     * class MyTask implements Reporting&lt;MyReportContainer&gt; {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_termination_order_test.go

    		if !ok {
    			t.Errorf("unable to find delay for container %s", name)
    		}
    		return delay.(int64)
    	}
    
    	for _, tc := range []struct {
    		containerName string
    		expectedDelay int64
    	}{
    		// sidecars should exit in reverse order, so
    		// sc1 = 3 (main container + sc3 + sc2)
    		{
    			containerName: "sc1",
    			expectedDelay: 3,
    		},
    		// sc2 = 2 (main container + sc3)
    		{
    			containerName: "sc2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 00:07:21 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/NamedDomainObjectCollectionSchemaIntegrationTest.groovy

            buildFile """
                def extractSchema(container) {
                    return container.collectionSchema.elements.collectEntries { e ->
                        [ e.name, e.publicType.simpleName ]
                    }.sort()
                }
                def assertSchemaIs(Map expected, NamedDomainObjectCollection container) {
                    def actual = extractSchema(container)
                    def sortedExpected = expected.sort()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/kubectlcmd/kubectlcmd.go

    // Cat runs the cat command for the given path in the given namespace/pod/container.
    func (r *Runner) Cat(namespace, pod, container, path string, dryRun bool) (string, error) {
    	cmdStr := "cat " + path
    	if dryRun {
    		return fmt.Sprintf("Dry run: would be running podExec %s/%s/%s:%s", pod, namespace, container, cmdStr), nil
    	}
    	task := fmt.Sprintf("PodExec %s/%s/%s:%s", namespace, pod, container, cmdStr)
    	r.addRunningTask(task)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/ReadOnlyDependencyCacheWithinContainerTest.groovy

        }
    
        @Override
        protected void checkIncubationMessage() {
            // not checked because running in containers
        }
    
        def "can use a read-only cache within a container"() {
            given:
            exposeServerToContainers()
            def container = newContainer()
            def testBuildDir = createContainerBuild()
    
            when:
            synchronizer.expect("build")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. build/README.md

    There are 3 different containers instances that are run from this image.  The first is a "data" container to store all data that needs to persist across to support incremental builds. Next there is an "rsync" container that is used to transfer data in and out to the data container.  Lastly there is a "build" container that is used for actually doing build actions.  The data container persists across runs while the rsync and build containers are deleted after each use.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/providers/collections/kotlin/build.gradle.kts

        // Add a person to the container
        fun addPerson(name: String) {
            people.plus(name)
        }
    }
    // end::ndol[]
    
    // tag::ndoc[]
    
    abstract class MyPluginExtensionNamedDomainObjectContainer {
        // Define a named domain object container to hold Person objects
        private val people: NamedDomainObjectContainer<Person> = project.container(Person::class)
    
        // Add a person to the container
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

       */
      @CanIgnoreReturnValue
      protected C resetContainer(C newValue) {
        container = newValue;
        return container;
      }
    
      /**
       * @see #expectContents(java.util.Collection)
       * @param elements expected contents of {@link #container}
       */
      protected final void expectContents(E... elements) {
        expectContents(Arrays.asList(elements));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. pkg/security/apparmor/helpers.go

    // GetProfileName returns the name of the profile to use with the container.
    func GetProfile(pod *v1.Pod, container *v1.Container) *v1.AppArmorProfile {
    	if !utilfeature.DefaultFeatureGate.Enabled(features.AppArmorFields) {
    		return getProfileFromPodAnnotations(pod.Annotations, container.Name)
    	}
    
    	if container.SecurityContext != nil && container.SecurityContext.AppArmorProfile != nil {
    		return container.SecurityContext.AppArmorProfile
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:32 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_termination_order.go

    type terminationOrdering struct {
    	// terminated is a map from container name to a channel, that if closed
    	// indicates that the container with that name was terminated
    	terminated map[string]chan struct{}
    	// prereqs is a map from container name to a list of channel that the container
    	// must wait on to ensure termination ordering
    	prereqs map[string][]chan struct{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 00:07:21 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top