Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for attaching (0.32 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconciler.go

    		// pod is unmounted from the first pod before being mounted to the new
    		// pod.
    		rc.unmountVolumes()
    	}
    
    	// Next we mount required volumes. This function could also trigger
    	// attach if kubelet is responsible for attaching volumes.
    	// If underlying PVC was resized while in-use then this function also handles volume
    	// resizing.
    	rc.mountOrAttachVolumes()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

    // function, which might not exist in case of multi-signature graphs. In that
    // case, this pass will create a new main function, which calls signature
    // functions.
    //
    // An already existing @main function will be renamed by attaching a numeric
    // suffix like `@main_0` to avoid conflict with the newly created main function.
    class InsertMainFunctionPass
        : public PassWrapper<InsertMainFunctionPass, OperationPass<ModuleOp>> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_executor.go

    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/nestedpendingoperations"
    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    // OperationExecutor defines a set of operations for attaching, detaching,
    // mounting, or unmounting a volume that are executed with a NewNestedPendingOperations which
    // prevents more than one operation from being triggered on the same volume.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    			return
    		}
    		// Volume is not attached (or doesn't implement attacher), kubelet attach is disabled, wait
    		// for controller to finish attaching volume.
    		klog.V(5).InfoS(volumeToMount.GenerateMsgDetailed("Starting operationExecutor.VerifyControllerAttachedVolume", ""), "pod", klog.KObj(volumeToMount.Pod))
    		err := rc.operationExecutor.VerifyControllerAttachedVolume(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. pkg/log/options.go

    	o.AttachFlags(
    		cmd.PersistentFlags().StringArrayVar,
    		cmd.PersistentFlags().StringVar,
    		cmd.PersistentFlags().IntVar,
    		cmd.PersistentFlags().BoolVar)
    }
    
    // AttachFlags allows attaching of flags through a set of lambda functions.
    func (o *Options) AttachFlags(
    	stringArrayVar func(p *[]string, name string, value []string, usage string),
    	stringVar func(p *string, name string, value string, usage string),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

      builder.create<FetchOp>(main_graph_op.getLoc(), std::move(fetches));
    }
    
    // Creates a new Location for the initializer function. This creates a loc by
    // attaching a to the initializer function's type so that it is identifiable.
    Location CreateInitOpLoc(MLIRContext* ctx, func::FuncOp init_func_ops) {
      const std::string init_type = GetInitializerType(init_func_ops);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/gateway-api-crd.yaml

    
                          A single CACertificateRef to a Kubernetes ConfigMap kind has "Core" support.
                          Implementations MAY choose to support attaching multiple certificates to
                          a backend, but this behavior is implementation-specific.
    
    
                          Support: Core - An optional single reference to a Kubernetes ConfigMap,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  8. pkg/volume/util/util.go

    		}
    	}
    	// For linux runtime, it skips because unmount will automatically flush disk data
    	return nil
    }
    
    // IsMultiAttachAllowed checks if attaching this volume to multiple nodes is definitely not allowed/possible.
    // In its current form, this function can only reliably say for which volumes it's definitely forbidden. If it returns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_generator.go

    				fsGroupChangePolicy = podSc.FSGroupChangePolicy
    			}
    		}
    
    		devicePath := volumeToMount.DevicePath
    		if volumeAttacher != nil {
    			// Wait for attachable volumes to finish attaching
    			klog.InfoS(volumeToMount.GenerateMsgDetailed("MountVolume.WaitForAttach entering", fmt.Sprintf("DevicePath %q", volumeToMount.DevicePath)), "pod", klog.KObj(volumeToMount.Pod))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal.go

    	// interval in queue so HPAs are processed every resync interval.
    	a.queue.AddRateLimited(key)
    
    	// Register HPA in the hpaSelectors map if it's not present yet. Attaching the Nothing selector
    	// that does not select objects. The actual selector is going to be updated
    	// when it's available during the autoscaler reconciliation.
    	a.hpaSelectorsMux.Lock()
    	defer a.hpaSelectorsMux.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top