Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 75 for attaching (0.41 sec)

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

    				go func() {
    					attachID, err := volAttacher.Attach(volSpec, attachDetachVolumeHost.GetNodeName())
    					if err != nil {
    						t.Errorf("csiTest.VolumeAll attacher.Attach failed: %s", err)
    						return
    					}
    					t.Logf("csiTest.VolumeAll got attachID %s", attachID)
    				}()
    
    				// Simulates external-attacher and marks VolumeAttachment.Status.Attached = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  3. pkg/volume/portworx/portworx_util.go

    		klog.Errorf("Failed to get portworx driver. Err: %v", err)
    		return "", err
    	}
    
    	devicePath, err := driver.Attach(m.volName, attachOptions)
    	if err != nil {
    		klog.Errorf("Error attaching Portworx Volume (%v): %v", m.volName, err)
    		return "", err
    	}
    	return devicePath, nil
    }
    
    // DetachVolume detaches a Portworx Volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/signing_plugin.adoc

    Alternatively, you may want to skip signing entirely whether or not signatory credentials are available.
    If so, you can configure the link:{groovyDslPath}/org.gradle.plugins.signing.Sign.html[Sign] tasks to be skipped, for example by attaching a predicate using the `onlyIf()` method shown in the following example:
    
    .Specifying when signing is skipped
    ====
    include::sample[dir="snippets/signing/conditional/kotlin",files="build.gradle.kts[tags=only-if]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_attacher.go

    	if err := c.waitForVolumeAttachmentWithLister(spec, pvSrc.VolumeHandle, attachID, c.watchTimeout); err != nil {
    		return "", err
    	}
    
    	klog.V(4).Info(log("attacher.Attach finished OK with VolumeAttachment object [%s]", attachID))
    
    	// Don't return attachID as a devicePath. We can reconstruct the attachID using getAttachmentName()
    	return "", nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                            listener must match both specified values. Note that attaching
                            Routes to Services as Parents is part of experimental Mesh
                            support and is not supported for any other purpose. \n Implementations
                            MAY choose to support attaching Routes to other resources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top