Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for DUP (0.12 sec)

  1. cmd/erasure-object.go

    				// delete marker, if not add a new version for this delete
    				// marker.
    				if versioned {
    					vr.VersionID = mustGetUUID()
    				}
    			}
    		}
    		// De-dup same object name to collect multiple versions for same object.
    		v, ok := versionsMap[objects[i].ObjectName]
    		if ok {
    			v.Versions = append(v.Versions, vr)
    		} else {
    			v = FileInfoVersions{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	runtime.ExitSyscall()
    	fd = int(r0)
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup(oldfd int) (fd int, err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_DUP<<4, uintptr(oldfd))
    	runtime.ExitSyscall()
    	fd = int(r0)
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    	)
    
    	// DuplicatedDomains tracks rejected VirtualServices due to duplicated hostname.
    	DuplicatedDomains = monitoring.NewGauge(
    		"pilot_vservice_dup_domain",
    		"Virtual services with dup domains.",
    	)
    
    	// DuplicatedSubsets tracks duplicate subsets that we rejected while merging multiple destination rules for same host
    	DuplicatedSubsets = monitoring.NewGauge(
    		"pilot_destrule_subsets",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //sys	Chown(path string, uid int, gid int) (err error) = SYS___CHOWN_A
    //sys	Chmod(path string, mode uint32) (err error) = SYS___CHMOD_A
    //sys   Creat(path string, mode uint32) (fd int, err error) = SYS___CREAT_A
    //sys	Dup(oldfd int) (fd int, err error)
    //sys	Dup2(oldfd int, newfd int) (err error)
    //sys	Dup3(oldfd int, newfd int, flags int) (err error) = SYS_DUP3
    //sys	Dirfd(dirp uintptr) (fd int, err error) = SYS_DIRFD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    	}
    	idles := t.idleConn[key]
    	if len(idles) >= t.maxIdleConnsPerHost() {
    		return errTooManyIdleHost
    	}
    	for _, exist := range idles {
    		if exist == pconn {
    			log.Fatalf("dup idle pconn %p in freelist", pconn)
    		}
    	}
    	t.idleConn[key] = append(idles, pconn)
    	t.idleLRU.add(pconn)
    	if t.MaxIdleConns != 0 && t.idleLRU.len() > t.MaxIdleConns {
    		oldest := t.idleLRU.removeOldest()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

    - Added warning for dup ports update/patching in pod's container ports and service ports. ([#113245](https://github.com/kubernetes/kubernetes/pull/113245), [@pacoxu](https://github.com/pacoxu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.25.md

    - Fixing issue on Windows nodes where HostProcess containers may not be created as expected. ([#110140](https://github.com/kubernetes/kubernetes/pull/110140), [@marosset](https://github.com/marosset)) [SIG Node and Windows]
    - Kubeadm: handle dup `unix://` prefix in node annotation ([#110656](https://github.com/kubernetes/kubernetes/pull/110656), [@pacoxu](https://github.com/pacoxu)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation_test.go

    		tweakSvc: func(s *core.Service) {
    			s.Spec.ExternalTrafficPolicy = core.ServiceExternalTrafficPolicyCluster
    			s.Spec.ExternalIPs = []string{"1.2.3.4"}
    		},
    		numErrs: 0,
    	}, {
    		name: "dup port name",
    		tweakSvc: func(s *core.Service) {
    			s.Spec.Ports[0].Name = "p"
    			s.Spec.Ports = append(s.Spec.Ports, core.ServicePort{Name: "p", Port: 12345, Protocol: "TCP", TargetPort: intstr.FromInt32(12345)})
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top