Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for attaching (0.14 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/volume/csi/csi_block.go

    		nodeName := string(m.plugin.host.GetNodeName())
    		attachID := getAttachmentName(csiSource.VolumeHandle, csiSource.Driver, nodeName)
    		attachment, err = m.k8s.StorageV1().VolumeAttachments().Get(context.TODO(), attachID, meta.GetOptions{})
    		if err != nil {
    			return "", errors.New(log("blockMapper.SetupDevice failed to get volume attachment [id=%v]: %v", attachID, err))
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    [[sec:troubleshooting_build_logic]]
    == Debugging build logic
    
    === Attaching a debugger to your build
    
    You can set breakpoints and debug <<custom_plugins.adoc#custom_plugins,`buildSrc` and standalone plugins>> in your Gradle build itself by setting the `org.gradle.debug` property to “true” and then attaching a remote debugger to port 5005.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    ====
    
    This configuration is _consumable_, which means it's an "exchange" meant for consumers.
    We're now going to add artifacts to this configuration, that consumers would get when they consume it:
    
    .Attaching an artifact to an outgoing configuration
    ====
    include::sample[dir="snippets/dependencyManagement/modelingFeatures-crossProjectPublications-simple/kotlin",files="producer/build.gradle.kts[tags=attach-outgoing-artifact]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

                }
                return new Present<>(value);
            }
    
            static Value<Void> present() {
                return SUCCESS;
            }
    
            /**
             * Creates a value attaching the given side effect.
             */
            static <T> Value<T> withSideEffect(T value, SideEffect<? super T> sideEffect) {
                if (value == null) {
                    throw new IllegalArgumentException();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPlugin.java

            manifestTask.getManifestFile().set(project.getLayout().getProjectDirectory().file("Package.swift"));
    
            // Defer attaching the model until all components have been (most likely) configured
            // TODO - make this relationship explicit to make this more reliable and offer better diagnostics
            project.afterEvaluate(new Action<Project>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    To create a publication based on artifacts, start by defining a custom artifact and attaching it to a Gradle <<dependency_management_terminology.adoc#sub:terminology_configuration,configuration>> of your choice.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top