Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 124 for getg (0.04 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            localStateDirTaskOutput.assertExists()
            // Task was loaded from cache, so local state was removed
            localStateDirTaskState.assertDoesNotExist()
            // FIXME This gets removed because of the local state has been removed
            fileTaskOutput.assertDoesNotExist()
            result.assertTasksSkipped(fileTask, localStateDirTask)
        }
    
        private void cleanBuildDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    	// WindowsService should be set to true if kubelet is running as a service on Windows.
    	// Its corresponding flag only gets registered in Windows builds.
    	WindowsService bool
    
    	// WindowsPriorityClass sets the priority class associated with the Kubelet process
    	// Its corresponding flag only gets registered in Windows builds
    	// The default priority class associated with any process in Windows is NORMAL_PRIORITY_CLASS. Keeping it as is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    		}
    		// We deliberately include the lingering priority levels
    		// here so that their queues get some concurrency and they
    		// continue to drain.  During this interim a lingering
    		// priority level continues to get a concurrency
    		// allocation determined by all the share values in the
    		// regular way.
    		nominalConcurrencyShares, _, _ := plSpecCommons(plState.pl)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

        }
    
        def disableProblemsApiCheck() {
            enableProblemsApiCheck = false
        }
    
        def isProblemsApiCheckEnabled() {
            enableProblemsApiCheck
        }
    
        /**
         * Gets all problems collected by the Problems API.
         *
         * @return The list of collected problems
         * @throws IllegalStateException if the Problems API check is not enabled
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_tls13.go

    // resends hs.hello, and reads the new ServerHello into hs.serverHello.
    func (hs *clientHandshakeStateTLS13) processHelloRetryRequest() error {
    	c := hs.c
    
    	// The first ClientHello gets double-hashed into the transcript upon a
    	// HelloRetryRequest. (The idea is that the server might offload transcript
    	// storage to the client in the cookie.) See RFC 8446, Section 4.4.1.
    	chHash := hs.transcript.Sum(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. src/net/textproto/reader.go

    	}
    	return nil
    }
    
    var nl = []byte("\n")
    
    // upcomingHeaderKeys returns an approximation of the number of keys
    // that will be in this header. If it gets confused, it returns 0.
    func (r *Reader) upcomingHeaderKeys() (n int) {
    	// Try to determine the 'hint' size.
    	r.R.Peek(1) // force a buffer load if empty
    	s := r.R.Buffered()
    	if s == 0 {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Describes the ResourceClaim that is to be generated.
      //
      // This field is immutable. A ResourceClaim will get created by the
      // control plane for a Pod when needed and then not get updated
      // anymore.
      optional ResourceClaimTemplateSpec spec = 2;
    }
    
    // ResourceClaimTemplateList is a collection of claim templates.
    message ResourceClaimTemplateList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	reader kclient.Reader[T]
    }
    type getter interface {
    	Get(name, namespace string) controllers.Object
    }
    
    func NewUntypedWrapper[T controllers.ComparableObject](c kclient.Client[T]) getter {
    	return UntypedWrapper[T]{c}
    }
    
    func (u UntypedWrapper[T]) Get(name, namespace string) controllers.Object {
    	// DO NOT return u.reader.Get directly, or we run into issues with https://go.dev/tour/methods/12
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_server_tls13.go

    	hs.sentDummyCCS = true
    
    	return hs.c.writeChangeCipherRecord()
    }
    
    func (hs *serverHandshakeStateTLS13) doHelloRetryRequest(selectedGroup CurveID) (*keyShare, error) {
    	c := hs.c
    
    	// The first ClientHello gets double-hashed into the transcript upon a
    	// HelloRetryRequest. See RFC 8446, Section 4.4.1.
    	if err := transcriptMsg(hs.clientHello, hs.transcript); err != nil {
    		return nil, err
    	}
    	chHash := hs.transcript.Sum(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. pkg/controller/endpoint/endpoints_controller.go

    	if err != nil {
    		// Since we're getting stuff from a local cache, it is
    		// basically impossible to get this error.
    		return err
    	}
    
    	// We call ComputeEndpointLastChangeTriggerTime here to make sure that the
    	// state of the trigger time tracker gets updated even if the sync turns out
    	// to be no-op and we don't update the endpoints object.
    	endpointsLastChangeTriggerTime := e.triggerTimeTracker.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top