Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 76 for attachmentID (0.24 sec)

  1. pkg/controller/volume/attachdetach/cache/desired_state_of_world.go

    	attachableVolumePlugin, err := dsw.volumePluginMgr.FindAttachablePluginBySpec(volumeSpec)
    	if err != nil || attachableVolumePlugin == nil {
    		if attachableVolumePlugin == nil {
    			err = fmt.Errorf("plugin do not support attachment")
    		}
    		return "", fmt.Errorf(
    			"failed to get AttachablePlugin from volumeSpec for volume %q err=%v",
    			volumeSpec.Name(),
    			err)
    	}
    
    	volumeName, err := util.GetUniqueVolumeNameFromSpec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    			"/download": http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    				w.Header().Set("Content-Type", "application/vnd.google.protobuf+gzip")
    				w.Header().Set("Content-Disposition", "attachment;filename=profile.pb.gz")
    				p.Write(w)
    			}),
    		},
    	}
    
    	url := "http://" + args.Hostport
    
    	o.UI.Print("Serving web UI on ", url)
    
    	if o.UI.WantBrowser() && !disableBrowser {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. src/main/webapp/js/bootstrap.min.js.map

    $(tip).addClass(ClassName.FADE)\n      }\n\n      const placement  = typeof this.config.placement === 'function'\n        ? this.config.placement.call(this, tip, this.element)\n        : this.config.placement\n\n      const attachment = this._getAttachment(placement)\n      this.addAttachmentClass(attachment)\n\n      const container = this._getContainer()\n      $(tip).data(this.constructor.DATA_KEY, this)\n\n      if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) {\n        $(tip).appendTo(container)\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/node/graph.go

    	}()
    	g.lock.Lock()
    	defer g.lock.Unlock()
    	g.deleteVertex_locked(pvVertexType, "", name)
    }
    
    // AddVolumeAttachment sets up edges for the following relationships:
    //
    //	volume attachment -> node
    func (g *Graph) AddVolumeAttachment(attachmentName, nodeName string) {
    	start := time.Now()
    	defer func() {
    		graphActionsDuration.WithLabelValues("AddVolumeAttachment").Observe(time.Since(start).Seconds())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

             * A {@link #isMissing() missing} value never carries a side effect.
             * If the value is present and already has a side effect, then side effects are composed
             * to be executed in the order of attachment.
             */
            Value<T> withSideEffect(@Nullable SideEffect<? super T> sideEffect);
    
            // Only populated when value is missing
            List<DisplayName> getPathToOrigin();
    
    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. src/main/webapp/js/admin/bootstrap.min.js.map

    $(tip).addClass(ClassName.FADE)\n      }\n\n      const placement  = typeof this.config.placement === 'function'\n        ? this.config.placement.call(this, tip, this.element)\n        : this.config.placement\n\n      const attachment = this._getAttachment(placement)\n      this.addAttachmentClass(attachment)\n\n      const container = this._getContainer()\n      $(tip).data(this.constructor.DATA_KEY, this)\n\n      if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) {\n        $(tip).appendTo(container)\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  7. src/main/webapp/css/admin/adminlte.min.css.map

    height: 50px;\n  line-height: 50px;\n  width: 50px;\n}\n\n.attachment-block {\n  background: #f8f9fa;\n  border: 1px solid rgba(0, 0, 0, 0.125);\n  margin-bottom: 10px;\n  padding: 5px;\n}\n\n.attachment-block .attachment-img {\n  float: left;\n  height: auto;\n  max-height: 100px;\n  max-width: 100px;\n}\n\n.attachment-block .attachment-pushed {\n  margin-left: 110px;\n}\n\n.attachment-block .attachment-heading {\n  margin: 0;\n}\n\n.attachment-block .attachment-text {\n  color: #495057;\n}\n\n.card...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 2M bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    			// the parser as a _COMMENT token. The grammar is written
    			// to handle top-level comments itself.
    			if !suffix {
    				in.endToken(_COMMENT)
    				return
    			}
    
    			// Otherwise, save comment for later attachment to syntax tree.
    			in.endToken(_EOLCOMMENT)
    			in.comments = append(in.comments, Comment{in.token.pos, in.token.text, suffix})
    			return
    		}
    
    		if in.peekPrefix("/*") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    		attachableVolumePlugin, err := asw.volumePluginMgr.FindAttachablePluginBySpec(volumeSpec)
    		if err != nil || attachableVolumePlugin == nil {
    			if attachableVolumePlugin == nil {
    				err = fmt.Errorf("plugin do not support attachment")
    			}
    			return "", fmt.Errorf(
    				"failed to get AttachablePlugin from volumeSpec for volume %q err=%v",
    				volumeSpec.Name(),
    				err)
    		}
    
    		volumeName, err = util.GetUniqueVolumeNameFromSpec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                if (inlineMimeTypeSet.contains(responseData.getMimeType())) {
                    contentDispositionType = "inline";
                } else {
                    contentDispositionType = "attachment";
                }
    
                final String encodedName = URLEncoder.encode(name, Constants.UTF_8).replace("+", "%20");
                final String contentDispositionValue;
                if (name.equals(encodedName)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
Back to top