Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 228 for someone (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    		return nil, fmt.Errorf("unable to upgrade connection: %s", responseError)
    	}
    
    	return NewClientConnectionWithPings(s.conn, s.pingPeriod)
    }
    
    // statusScheme is private scheme for the decoding here until someone fixes the TODO in NewConnection
    var statusScheme = runtime.NewScheme()
    
    // ParameterCodec knows about query parameters used with the meta v1 API spec.
    var statusCodecs = serializer.NewCodecFactory(statusScheme)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    			check = pollFractionalWorkerExit
    		}
    	}
    
    	// Drain root marking jobs.
    	if work.markrootNext < work.markrootJobs {
    		// Stop if we're preemptible, if someone wants to STW, or if
    		// someone is calling forEachP.
    		for !(gp.preempt && (preemptible || sched.gcwaiting.Load() || pp.runSafePointFn != 0)) {
    			job := atomic.Xadd(&work.markrootNext, +1) - 1
    			if job >= work.markrootJobs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. pkg/controller/cronjob/utils.go

    		mostRecentTime = t
    	}
    
    	// An object might miss several starts. For example, if
    	// controller gets wedged on friday at 5:01pm when everyone has
    	// gone home, and someone comes in on tuesday AM and discovers
    	// the problem and restarts the controller, then all the hourly
    	// jobs, more than 80 of them for one hourly cronJob, should
    	// all start running with no further intervention (if the cronJob
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/runtime/slice.go

    	mem, overflow := math.MulUintptr(et.Size_, uintptr(cap))
    	if overflow || mem > maxAlloc || len < 0 || len > cap {
    		// NOTE: Produce a 'len out of range' error instead of a
    		// 'cap out of range' error when someone does make([]T, bignumber).
    		// 'cap out of range' is true too, but since the cap is only being
    		// supplied implicitly, saying len is clearer.
    		// See golang.org/issue/4085.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/informers.go

    			// then assume this event was generated by the CNI plugin labeling the pod on startup,
    			// and skip the event.
    			//
    			// This isn't perfect (someone could manually annotate an unready pod,
    			// then install Istio, then the pod goes ready, and we'd miss capture) - but that
    			// seems vanishingly unlikely
    			wasReady := kube.CheckPodReadyOrComplete(oldPod)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. pkg/proxy/endpointschangetracker.go

    			}
    		}
    	}
    
    	// Detect services that have gone from 0 to non-0 ready endpoints. If there were
    	// previously 0 endpoints, but someone tried to connect to it, then a conntrack
    	// entry may have been created blackholing traffic to that IP, which should be
    	// deleted now.
    	for svcPortName, epList := range newEndpointsMap {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. pkg/volume/portworx/portworx_util.go

    	// doesn't support new parameters, the server-side processing will parse it correctly.
    	// We still need to call SpecFromOpts() here to handle cases where someone is running Portworx 1.2.8 and lower.
    	specHandler := osdspec.NewSpecHandler()
    	spec, locator, source, _ := specHandler.SpecFromOpts(p.options.Parameters)
    	if spec == nil {
    		spec = specHandler.DefaultSpec()
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/vet/testdata/print/print.go

    	Println(someFunction)      // ERROR "Println arg someFunction is a func value, not called"
    	Printf("%p", someFunction) // ok: maybe someone wants to see the pointer
    	Printf("%T", someFunction) // ok: maybe someone wants to see the type
    	// Bug: used to recur forever.
    	Printf("%p %x", recursiveStructV, recursiveStructV.next)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

         * because Gradle always uses the binary version instead. So this is about warning the
         * user that someone did something wrong by thinking that updating a file in our local
         * cache should change something in terms of resolution.
         *
         * Security is not an issue: if someone manages to tamper the local cache, then
         * it means they have access to the local FS so all bets are off.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. pkg/api/pod/warnings.go

    					fldPath.Child("ports").Index(i), port))
    			}
    			k := fmt.Sprintf("%d/%s", port.ContainerPort, port.Protocol)
    			if others, found := allPorts[k]; found {
    				// Someone else has this protcol+port, but it still might not be a conflict.
    				for _, other := range others {
    					if port.HostIP == other.port.HostIP && port.HostPort == other.port.HostPort {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top