Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 150 for Pd (0.02 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.graffle

    roup.OmniGraffle7.MacAppStore186.3ColorProfilesdataAA/gAAAAUbWVhcwAABAwAAA+wEBAQcBDQETARkBHwElA+gIDAgwCFAIdAiYCLwI4A+wD+QQGBBMEIAQtBDsESARVB+BIwEmgSoBLYExATTBOEE+BQ0FHAUrBToFSQVYBWcF/B9IH5Qf4CAsIHwgyCEYI+EL+QwSDCoMQwxcDHUMjgynD/DpsOtg7SDu4PCQ8lD0EP/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExExEU8R+UUBhQnFEkUahSLFK0Uzh/cYGxhAGGUYihivGNUY+hkgGUUZaxmRGbcZ3RoEG+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHC/HL/4wNTBsMKQw2zESMUoxgj/E0KzRlNJ402DUTNU01hz+ID5gPqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQax/ZUQlSPVNtVKFV1VcJWD1+zYAVgV2...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/index_test.go

    	if err != nil {
    		t.Error("Unexpected error retrieving volumes by access modes:", err)
    	}
    	sort.Sort(byCapacity{volumes})
    
    	for i, expected := range []string{"gce-pd-1", "gce-pd-5", "gce-pd-10"} {
    		if string(volumes[i].UID) != expected {
    			t.Errorf("Incorrect ordering of persistent volumes.  Expected %s but got %s", expected, volumes[i].UID)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  3. src/runtime/netpoll_windows.go

    func packNetpollKey(source uint8, pd *pollDesc) uintptr {
    	// TODO: Consider combining the source with pd.fdseq to detect stale pollDescs.
    	if source > (1<<sourceBits)-1 {
    		// Also fail on 64-bit systems, even though it can hold more bits.
    		throw("runtime: source value is too large")
    	}
    	if goarch.PtrSize == 4 {
    		return uintptr(unsafe.Pointer(pd))<<sourceBits | uintptr(source)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/internal/poll/writev.go

    	"syscall"
    )
    
    // Writev wraps the writev system call.
    func (fd *FD) Writev(v *[][]byte) (int64, error) {
    	if err := fd.writeLock(); err != nil {
    		return 0, err
    	}
    	defer fd.writeUnlock()
    	if err := fd.pd.prepareWrite(fd.isFile); err != nil {
    		return 0, err
    	}
    
    	var iovecs []syscall.Iovec
    	if fd.iovecs != nil {
    		iovecs = *fd.iovecs
    	}
    	// TODO: read from sysconf(_SC_IOV_MAX)? The Linux default is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. cluster/addons/storage-class/gce/default.yaml

    kind: StorageClass
    metadata:
      name: standard
      annotations:
        storageclass.kubernetes.io/is-default-class: "true"
      labels:
        addonmanager.kubernetes.io/mode: EnsureExists
    provisioner: kubernetes.io/gce-pd
    parameters:
      type: pd-standard
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 20 13:54:49 UTC 2019
    - 300 bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/PluginManagerException.java

            super(message, cause);
    
            this.project = project;
    
            PluginDescriptor pd = mojoDescriptor.getPluginDescriptor();
            pluginGroupId = pd.getGroupId();
            pluginArtifactId = pd.getArtifactId();
            pluginVersion = pd.getVersion();
    
            goal = mojoDescriptor.getGoal();
        }
    
        /**
         * Constructor.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/cmd/covdata/dump.go

    	d.pkgImportPath = pd.PackagePath()
    	d.pkgName = pd.PackageName()
    	d.modulePath = pd.ModulePath()
    	if d.cmd == pkglistMode {
    		d.pkgpaths[d.pkgImportPath] = struct{}{}
    	}
    	d.format.SetPackage(pd.PackagePath())
    }
    
    func (d *dstate) EndPackage(pd *decodemeta.CoverageMetaDataDecoder, pkgIdx uint32) {
    }
    
    func (d *dstate) VisitFunc(pkgIdx uint32, fnIdx uint32, fd *coverage.FuncDesc) {
    	var counters []uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/duration.go

    func (d *Duration) UnmarshalJSON(b []byte) error {
    	var str string
    	err := json.Unmarshal(b, &str)
    	if err != nil {
    		return err
    	}
    
    	pd, err := time.ParseDuration(str)
    	if err != nil {
    		return err
    	}
    	d.Duration = pd
    	return nil
    }
    
    // MarshalJSON implements the json.Marshaler interface.
    func (d Duration) MarshalJSON() ([]byte, error) {
    	return json.Marshal(d.Duration.String())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 00:11:06 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  9. src/internal/poll/sendfile_linux.go

    	defer func() {
    		TestHookDidSendFile(dstFD, src, written, err, handled)
    	}()
    	if err := dstFD.writeLock(); err != nil {
    		return 0, err, false
    	}
    	defer dstFD.writeUnlock()
    
    	if err := dstFD.pd.prepareWrite(dstFD.isFile); err != nil {
    		return 0, err, false
    	}
    
    	dst := dstFD.Sysfd
    	for remain > 0 {
    		n := maxSendfileSize
    		if int64(n) > remain {
    			n = int(remain)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/runtime/netpoll_fake.go

    package runtime
    
    func netpollinit() {
    }
    
    func netpollIsPollDescriptor(fd uintptr) bool {
    	return false
    }
    
    func netpollopen(fd uintptr, pd *pollDesc) int32 {
    	return 0
    }
    
    func netpollclose(fd uintptr) int32 {
    	return 0
    }
    
    func netpollarm(pd *pollDesc, mode int) {
    }
    
    func netpollBreak() {
    }
    
    func netpoll(delay int64) (gList, int32) {
    	return gList{}, 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 15:45:57 UTC 2023
    - 664 bytes
    - Viewed (0)
Back to top