Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for attaching (0.24 sec)

  1. 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)
  2. 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)
  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/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)
  5. 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)
  6. 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)
  7. pkg/volume/csi/csi_plugin.go

    	node := string(p.host.GetNodeName())
    	attachID := getAttachmentName(pvSource.VolumeHandle, pvSource.Driver, node)
    	volData := map[string]string{
    		volDataKey.specVolID:    spec.Name(),
    		volDataKey.volHandle:    pvSource.VolumeHandle,
    		volDataKey.driverName:   pvSource.Driver,
    		volDataKey.nodeName:     node,
    		volDataKey.attachmentID: attachID,
    	}
    
    	err = saveVolumeData(dataDir, volDataFileName, volData)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top