Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 83 for plumbus (0.11 sec)

  1. pkg/registry/core/service/ipallocator/bitmap.go

    		}
    		return &ErrNotInRange{ip, r.net.String()}
    	}
    	if dryRun {
    		// Don't bother to check whether the IP is actually free. It's racy and
    		// not worth the effort to plumb any further.
    		return nil
    	}
    
    	allocated, err := r.alloc.Allocate(offset)
    	if err != nil {
    		// update metrics
    		r.metrics.incrementAllocationErrors(label.String(), "static")
    
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	Authentication *DelegatingAuthenticationOptions
    	Authorization  *DelegatingAuthorizationOptions
    	Audit          *AuditOptions
    	Features       *FeatureOptions
    	CoreAPI        *CoreAPIOptions
    
    	// FeatureGate is a way to plumb feature gate through if you have them.
    	FeatureGate featuregate.FeatureGate
    	// ExtraAdmissionInitializers is called once after all ApplyTo from the options above, to pass the returned
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    		shouldStartWatchCh := make(chan struct{})
    
    		watchInitializationSignal := newInitializationSignal()
    		// This wraps the request passed to handler.ServeHTTP(),
    		// setting a context that plumbs watchInitializationSignal to storage
    		var watchReq *http.Request
    		// This is set inside execute(), prior to closing shouldStartWatchCh.
    		// If the request is rejected by APF it is left nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    		dynamicCertificateController := dynamiccertificates.NewDynamicServingCertificateController(
    			tlsConfig,
    			s.ClientCA,
    			s.Cert,
    			s.SNICerts,
    			nil, // TODO see how to plumb an event recorder down in here. For now this results in simply klog messages.
    		)
    
    		if s.ClientCA != nil {
    			s.ClientCA.AddListener(dynamicCertificateController)
    		}
    		if s.Cert != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. pkg/controlplane/instance.go

    	// with specific priorities.
    	// TODO: describe the priority all the way down in the RESTStorageProviders and plumb it back through the various discovery
    	// handlers that we have.
    	return []controlplaneapiserver.RESTStorageProvider{
    		legacyRESTStorageProvider,
    		apiserverinternalrest.StorageProvider{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. pkg/registry/core/service/ipallocator/ipallocator.go

    	if !a.ready.Load() || !a.ipAddressSynced() {
    		return nil, ErrNotReady
    	}
    	if dryRun {
    		// Don't bother finding a free value. It's racy and not worth the
    		// effort to plumb any further.
    		return a.CIDR().IP, nil
    	}
    
    	trace := utiltrace.New("allocate dynamic ClusterIP address")
    	defer trace.LogIfLong(500 * time.Millisecond)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. cluster/gce/upgrade.sh

      # TODO(zmerlynn): How do we ensure kube-env is written in a ${version}-
      #                 compatible way?
      write-linux-node-env
    
      # TODO(zmerlynn): Get configure-vm script from ${version}. (Must plumb this
      #                 through all create-linux-node-instance-template implementations).
      local template_name
      template_name=$(get-template-name-from-version "${SANITIZED_VERSION}" "${NODE_INSTANCE_PREFIX}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/config.go

    			go c.FlowControl.Run(context.StopCh)
    			return nil
    		})
    		if err != nil {
    			return nil, err
    		}
    		// TODO(yue9944882): plumb pre-shutdown-hook for request-management system?
    	} else {
    		klog.V(3).Infof("Not requested to run hook %s", priorityAndFairnessConfigConsumerHookName)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    //
    // Thus, reporting the call stacks of runtime-internal lock contention is
    // guarded by GODEBUG for now. Set GODEBUG=runtimecontentionstacks=1 to enable.
    //
    // TODO(rhysh): plumb through the delay duration, remove GODEBUG, update comment
    //
    // The M will track this by storing a pointer to the lock; lock/unlock pairs for
    // runtime-internal locks are always on the same M.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    	"cmd/go/internal/modfetch"
    	"cmd/go/internal/search"
    
    	"golang.org/x/mod/modfile"
    	"golang.org/x/mod/module"
    )
    
    // Variables set by other packages.
    //
    // TODO(#40775): See if these can be plumbed as explicit parameters.
    var (
    	// RootMode determines whether a module root is needed.
    	RootMode Root
    
    	// ForceUseModules may be set to force modules to be enabled when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top