Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for cleaned (0.14 sec)

  1. src/net/http/transport_test.go

    	}()
    
    	c, err := ln.Accept()
    	if err != nil {
    		t.Fatalf("Accept: %v", err)
    	}
    	t.Cleanup(func() {
    		c.Close()
    	})
    	br := bufio.NewReader(c)
    	_, err = ReadRequest(br)
    	if err != nil {
    		t.Fatalf("ReadRequest: %v", err)
    	}
    	test.conn = c
    	test.reader = br
    	t.Cleanup(func() {
    		<-test.reqdone
    		tr.CloseIdleConnections()
    		got, _ := io.ReadAll(test.reader)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    			// causing the call to Logf below to race with the end of the test.
    			//
    			// Since the client doesn't cancel the request until we have copied half
    			// the body, this call to add happens before the test is cleaned up,
    			// preventing the race.
    			wg.Add(1)
    			defer wg.Done()
    
    			n, err := io.CopyN(rw, req.Body, bodySize)
    			t.Logf("backend CopyN: %v, %v", n, err)
    			<-req.Context().Done()
    		}))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	// but not yet deleted pods.
    	// TODO: this method could more aggressively cleanup terminated pods
    	// in the future (volumes, mount dirs, logs, and containers could all be
    	// better separated)
    	klog.V(3).InfoS("Clean up orphaned pod directories")
    	err = kl.cleanupOrphanedPodDirs(allPods, runningRuntimePods)
    	if err != nil {
    		// We want all cleanup tasks to be run even if one of them failed. So
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status_test.go

    			testKubelet := newTestKubeletWithImageList(
    				t, inputImageList, false /* controllerAttachDetachEnabled */, true /*initFakeVolumePlugin*/, true /* localStorageCapacityIsolation */)
    			defer testKubelet.Cleanup()
    			kubelet := testKubelet.kubelet
    			kubelet.nodeStatusMaxImages = tc.nodeStatusMaxImages
    			kubelet.kubeClient = nil // ensure only the heartbeat client is used
    			kubelet.containerManager = &localCM{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            then:
            outputDir1.assertExists()
            outputDir2.assertExists()
            gcFile.lastModified() >= SECONDS.toMillis(beforeCleanup)
        }
    
        def "cache cleanup does not delete entries that are currently being created"() {
            given:
            requireOwnGradleUserHomeDir() // needs its own journal
            blockingHttpServer.start()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "operation": {
                "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
                "type": "string"
              },
              "subresource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

                "type": "string"
              },
              "operation": {
                "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
                "type": "string"
              },
              "subresource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "description": "optionalOldSelf is used to opt a transition rule into evaluation even when the object is first created, or if the old object is missing the value.\n\nWhen enabled `oldSelf` will be a CEL optional whose value will be `None` if there is no old value, or when the object is initially created.\n\nYou may check for presence of oldSelf using `oldSelf.hasValue()` and unwrap it after checking using `oldSelf.value()`. Check the CEL documentation for...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  9. cmd/storage-datatypes_gen.go

    		return
    	}
    	z.Name, err = dc.ReadString()
    	if err != nil {
    		err = msgp.WrapError(err, "Name")
    		return
    	}
    	z.Created, err = dc.ReadTime()
    	if err != nil {
    		err = msgp.WrapError(err, "Created")
    		return
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z VolInfo) EncodeMsg(en *msgp.Writer) (err error) {
    	// array header, size 2
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.5.md

    * If you used the [PodDisruptionBudget](http://kubernetes.io/docs/admin/disruptions/) feature in 1.4 (i.e. created `PodDisruptionBudget` objects), then **BEFORE**  upgrading from 1.4 to 1.5, you must delete all `PodDisruptionBudget` objects (`policy/v1alpha1/PodDisruptionBudget`) that you have created. It is not possible to delete these objects after you upgrade, and their presence will prevent you from using the beta PodDisruptionBudget feature in 1.5...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top