Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 129 for Forked (0.18 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// can have their a new pod created before the old pod is marked as deleted.
    	// The update starts by launching new pods on 30% of nodes. Once an updated
    	// pod is available (Ready for at least minReadySeconds) the old DaemonSet pod
    	// on that node is marked deleted. If the old pod becomes unavailable for any
    	// reason (Ready transitions to false, is evicted, or is drained) an updated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			result = true
    		}
    
    		// Add the second result type, if any.
    		if twoResults {
    			if name.FuncType.Result == nil {
    				// An explicit void result looks odd but it
    				// seems to be how cgo has worked historically.
    				sb.WriteString("_Ctype_void")
    			}
    			sb.WriteString(", error)")
    		}
    	}
    
    	sb.WriteString("{ ")
    
    	// Define _cgoN for each argument value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    )
    
    // pssParameters reflects the parameters in an AlgorithmIdentifier that
    // specifies RSA PSS. See RFC 3447, Appendix A.2.3.
    type pssParameters struct {
    	// The following three fields are not marked as
    	// optional because the default values specify SHA-1,
    	// which is no longer suitable for use in signatures.
    	Hash         pkix.AlgorithmIdentifier `asn1:"explicit,tag:0"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.pb.go

    // These resources cannot be looked up on-demand.
    //
    // In some cases, we do not know the IP address of a Service. These services cannot be used for matching
    // outbound traffic, as we only have L4 attributes to route based on. However,
    // they can be used for Gateways.
    // In this case, the key format will be "network/hostname".
    // These resources cannot be looked up on-demand.
    type Address struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                root(":", ":test:") {
                    edge("org.gradle.test:lib:3.0.6", "org.gradle.test:lib:3.0.5") {
                        forced()
                    }
                    edge("org.gradle.test:lib2:3.0.6", "org.gradle.test:lib2:3.0.5") {
                        forced()
                    }
                }
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/17874")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    		return
    	}
    	jm.orphanQueue.Add(key)
    }
    
    // worker runs a worker thread that just dequeues items, processes them, and marks them done.
    // It enforces that the syncHandler is never invoked concurrently with the same key.
    func (jm *Controller) worker(ctx context.Context) {
    	for jm.processNextWorkItem(ctx) {
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// The 'usable' lock is always 'RLock'able when it is safe to use the cache.
    	// It is safe to use the cache after a successful list until a disconnection.
    	// We start with usable (write) locked. The below OnReplace function will
    	// unlock it after a successful list. The below defer will then re-lock
    	// it when this function exits (always due to disconnection), only if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    	return c.readRecordOrCCS(true)
    }
    
    // readRecordOrCCS reads one or more TLS records from the connection and
    // updates the record layer state. Some invariants:
    //   - c.in must be locked
    //   - c.input must be empty
    //
    // During the handshake one and only one of the following will happen:
    //   - c.hand grows
    //   - c.in.changeCipherSpec is called
    //   - an error is returned
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

      (showing only the starting port). ([#123316](https://github.com/kubernetes/kubernetes/pull/123316), [@jcaamano](https://github.com/jcaamano)) [SIG CLI]
    - Fixed a regression where `kubelet --hostname-override` no longer worked
      correctly with an external cloud provider. ([#124516](https://github.com/kubernetes/kubernetes/pull/124516), [@danwinship](https://github.com/danwinship)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal.go

    	defer a.hpaSelectorsMux.Unlock()
    	a.hpaSelectors.DeleteSelector(selectors.Parse(key))
    }
    
    func (a *HorizontalController) worker(ctx context.Context) {
    	for a.processNextWorkItem(ctx) {
    	}
    	logger := klog.FromContext(ctx)
    	logger.Info("Horizontal Pod Autoscaler controller worker shutting down")
    }
    
    func (a *HorizontalController) processNextWorkItem(ctx context.Context) bool {
    	key, quit := a.queue.Get()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top