Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Pd (0.11 sec)

  1. src/runtime/netpoll.go

    	} else if pd.rd != rd0 || combo != combo0 {
    		pd.rseq++ // invalidate current timers
    		if pd.rd > 0 {
    			pd.rt.modify(pd.rd, 0, rtf, pd.makeArg(), pd.rseq)
    		} else {
    			pd.rt.stop()
    			pd.rrun = false
    		}
    	}
    	if !pd.wrun {
    		if pd.wd > 0 && !combo {
    			pd.wt.modify(pd.wd, 0, netpollWriteDeadline, pd.makeArg(), pd.wseq)
    			pd.wrun = true
    		}
    	} else if pd.wd != wd0 || combo != combo0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/internal/poll/fd_unix.go

    		return 0, nil
    	}
    	if err := fd.pd.prepareRead(fd.isFile); err != nil {
    		return 0, err
    	}
    	if fd.IsStream && len(p) > maxRW {
    		p = p[:maxRW]
    	}
    	for {
    		n, err := ignoringEINTRIO(syscall.Read, fd.Sysfd, p)
    		if err != nil {
    			n = 0
    			if err == syscall.EAGAIN && fd.pd.pollable() {
    				if err = fd.pd.waitRead(fd.isFile); err == nil {
    					continue
    				}
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool-decom.go

    		QueuedBuckets:           pd.QueuedBuckets,
    		DecommissionedBuckets:   pd.DecommissionedBuckets,
    		Bucket:                  pd.Bucket,
    		Prefix:                  pd.Prefix,
    		Object:                  pd.Object,
    		ItemsDecommissioned:     pd.ItemsDecommissioned,
    		ItemsDecommissionFailed: pd.ItemsDecommissionFailed,
    		BytesDone:               pd.BytesDone,
    		BytesFailed:             pd.BytesFailed,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  4. pkg/volume/util/operationexecutor/operation_executor_test.go

    							FSType:   "ext4",
    							ReadOnly: false,
    						},
    					},
    				},
    			},
    			Containers: []v1.Container{
    				{
    					Name:  "pd-volume-test",
    					Image: "registry.k8s.io/mounttest:0.8",
    					Args: []string{
    						"--file_content=/etc/pd-volume/data-1",
    					},
    					VolumeMounts: []v1.VolumeMount{
    						{
    							Name:      pdName,
    							MountPath: "/data",
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

            return groupId + ":" + artifactId + ":" + version;
        }
    
        private String pluginKey(MojoDescriptor mojoDescriptor) {
            PluginDescriptor pd = mojoDescriptor.getPluginDescriptor();
            return pluginKey(pd.getGroupId(), pd.getArtifactId(), pd.getVersion());
        }
    
        private String pluginKey(Artifact pluginArtifact) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         */
        public Map<String, Parameter> getParameterMap() {
            LinkedHashMap<String, Parameter> parameterMap = new LinkedHashMap<>();
    
            for (Parameter pd : parameters) {
                parameterMap.put(pd.getName(), pd);
            }
    
            return parameterMap;
        }
    
        // ----------------------------------------------------------------------
        // Dependency requirement
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. pkg/volume/portworx/portworx.go

    var _ volume.Unmounter = &portworxVolumeUnmounter{}
    
    // Unmounts the bind mount, and detaches the disk only if the PD
    // resource was the last reference to that disk on the kubelet.
    func (c *portworxVolumeUnmounter) TearDown() error {
    	return c.TearDownAt(c.GetPath())
    }
    
    // Unmounts the bind mount, and detaches the disk only if the PD
    // resource was the last reference to that disk on the kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    	unboundPVCPod2 := st.MakePod().PVC("csi-4").Obj()
    
    	missingPVPod := st.MakePod().PVC("csi-6").Obj()
    	noSCPVCPod := st.MakePod().PVC("csi-5").Obj()
    
    	gceTwoVolPod := st.MakePod().PVC("csi-pd.csi.storage.gke.io-1").PVC("csi-pd.csi.storage.gke.io-2").Obj()
    
    	// In-tree volumes
    	inTreeOneVolPod := st.MakePod().PVC("csi-kubernetes.io/aws-ebs-0").Obj()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

            if (PLUGIN_2_0_0.equals(nsUri)) {
                org.apache.maven.api.plugin.descriptor.PluginDescriptor pd =
                        new PluginDescriptorStaxReader().read(xsr, true);
                return new PluginDescriptor(pd);
            } else {
                XmlNode node = XmlNodeStaxBuilder.build(xsr, true, null);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_executor.go

    	//       server: 172.17.0.2
    	// Non-PVC example:
    	//   apiVersion: v1
    	//   kind: Pod
    	//   metadata:
    	//     name: test-pd
    	//   spec:
    	//     containers:
    	//     - image: registry.k8s.io/test-webserver
    	//     	 name: test-container
    	//     	 volumeMounts:
    	//     	 - mountPath: /test-pd
    	//     	   name: test-volume
    	//     volumes:
    	//     - name: test-volume			<- InnerVolumeSpecName
    	//     	 gcePersistentDisk:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top