Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for recycler (0.13 sec)

  1. cmd/kube-controller-manager/app/options/options_test.go

    	"--node-monitor-grace-period=30s",
    	"--node-monitor-period=10s",
    	"--node-startup-grace-period=30s",
    	"--profiling=false",
    	"--pv-recycler-increment-timeout-nfs=45",
    	"--pv-recycler-minimum-timeout-hostpath=45",
    	"--pv-recycler-minimum-timeout-nfs=200",
    	"--pv-recycler-timeout-increment-hostpath=45",
    	"--pvclaimbinder-sync-period=30s",
    	"--resource-quota-sync-period=10m",
    	"--route-reconciliation-period=30s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller.go

    		// the volume in every syncVolume() call.
    		return
    	}
    
    	// Plugin found
    	recorder := ctrl.newRecyclerEventRecorder(volume)
    
    	if err = plugin.Recycle(volume.Name, spec, recorder); err != nil {
    		// Recycler failed
    		strerr := fmt.Sprintf("Recycle failed: %s", err)
    		if _, err = ctrl.updateVolumePhaseWithEvent(ctx, volume, v1.VolumeFailed, v1.EventTypeWarning, events.VolumeFailedRecycle, strerr); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         */
        fun dispatcher(dispatcher: Dispatcher) =
          apply {
            this.dispatcher = dispatcher
          }
    
        /**
         * Sets the connection pool used to recycle HTTP and HTTPS connections.
         *
         * If unset, a new connection pool will be used.
         */
        fun connectionPool(connectionPool: ConnectionPool) =
          apply {
            this.connectionPool = connectionPool
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. cmd/peer-rest-server.go

    // ListenHandler sends http trace messages back to peer rest client
    func (s *peerRESTServer) ListenHandler(ctx context.Context, v *grid.URLValues, out chan<- *grid.Bytes) *grid.RemoteErr {
    	values := v.Values()
    	defer v.Recycle()
    	var prefix string
    	if len(values[peerRESTListenPrefix]) > 1 {
    		return grid.NewRemoteErrString("invalid request (peerRESTListenPrefix)")
    	}
    	globalAPIConfig.getRequestsPoolCapacity()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. pkg/volume/testing/testing.go

    	return !plugin.NonAttachable, nil
    }
    
    func (plugin *FakeVolumePlugin) CanDeviceMount(spec *volume.Spec) (bool, error) {
    	return true, nil
    }
    
    func (plugin *FakeVolumePlugin) Recycle(pvName string, spec *volume.Spec, eventRecorder recyclerclient.RecycleEventRecorder) error {
    	return nil
    }
    
    func (plugin *FakeVolumePlugin) NewDeleter(logger klog.Logger, spec *volume.Spec) (volume.Deleter, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. pkg/apis/storage/validation/validation_test.go

    	deleteReclaimPolicy := api.PersistentVolumeReclaimPolicy("Delete")
    	retainReclaimPolicy := api.PersistentVolumeReclaimPolicy("Retain")
    	recycleReclaimPolicy := api.PersistentVolumeReclaimPolicy("Recycle")
    	successCases := []storage.StorageClass{{
    		// empty parameters
    		ObjectMeta:        metav1.ObjectMeta{Name: "foo"},
    		Provisioner:       "kubernetes.io/foo-provisioner",
    		Parameters:        map[string]string{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    				err = pc.bw.Flush()
    			}
    			if err != nil {
    				if pc.nwrite == startBytesWritten {
    					err = nothingWrittenError{err}
    				}
    			}
    			pc.writeErrCh <- err // to the body reader, which might recycle us
    			wr.ch <- err         // to the roundTrip function
    			if err != nil {
    				pc.close(err)
    				return
    			}
    		case <-pc.closech:
    			return
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top