Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 88 of 88 for INITIALIZING (0.2 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    				// the global timeout of the http.Client is still honored.
    				provider, err := oidc.NewProvider(lifecycleCtx, issuerURL)
    				if err != nil {
    					klog.Errorf("oidc authenticator: initializing plugin: %v", err)
    					authn.healthCheck.Store(&errorHolder{err: err})
    					return false, nil
    				}
    
    				verifier := provider.Verifier(verifierConfig)
    				authn.setVerifier(&idTokenVerifier{verifier, audiences})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller.go

    		c.networkManager.HasSynced()
    }
    
    func (c *Controller) syncPods() error {
    	var err *multierror.Error
    	pods := c.podsClient.List(metav1.NamespaceAll, klabels.Everything())
    	log.Debugf("initializing %d pods", len(pods))
    	for _, s := range pods {
    		err = multierror.Append(err, c.pods.onEvent(nil, s, model.EventAdd))
    	}
    	return err.ErrorOrNil()
    }
    
    // Run all controllers until a signal is received
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/manager.go

    	// First we take care of the exceptional flow (scenarios 2 and 3). In both flows, kubelet is reinitializing, and while kubelet is initializing, sources are NOT all ready.
    	// Is this a simple kubelet restart (scenario 2)? To distinguish, we use the information we got for runtime. If we are asked to allocate devices for containers reported
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    		}
    		qs.promiseFactory = qsc.factory.promiseFactoryFactory(qs)
    	}
    	qs.setConfiguration(context.Background(), qsc.qCfg, qsc.dealer, dCfg)
    	return qs
    }
    
    // createQueues is a helper method for initializing an array of n queues
    func createQueues(n, baseIndex int) []*queue {
    	fqqueues := make([]*queue, n)
    	for i := 0; i < n; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  5. cmd/erasure-multipart.go

    	if !result.IsTruncated {
    		result.NextKeyMarker = ""
    		result.NextUploadIDMarker = ""
    	}
    
    	return result, nil
    }
    
    // newMultipartUpload - wrapper for initializing a new multipart
    // request; returns a unique upload id.
    //
    // Internally this function creates 'uploads.json' associated for the
    // incoming object at
    // '.minio.sys/multipart/bucket/object/uploads.json' on all the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. src/runtime/symtab.go

    	textsectmap []textsect
    	typelinks   []int32 // offsets from types
    	itablinks   []*itab
    
    	ptab []ptabEntry
    
    	pluginpath string
    	pkghashes  []modulehash
    
    	// This slice records the initializing tasks that need to be
    	// done to start up the program. It is built by the linker.
    	inittasks []*initTask
    
    	modulename   string
    	modulehashes []modulehash
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. doc/asm.html

    This function would be called from Go source for package <code>runtime</code> using the
    simple name <code>profileloop</code>.
    </p>
    
    <p>
    Global data symbols are defined by a sequence of initializing
    <code>DATA</code> directives followed by a <code>GLOBL</code> directive.
    Each <code>DATA</code> directive initializes a section of the
    corresponding memory.
    The memory not explicitly initialized is zeroed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  8. src/image/image.go

    // image data in a format such as GIF, JPEG or PNG. Decoding any particular
    // image format requires the prior registration of a decoder function.
    // Registration is typically automatic as a side effect of initializing that
    // format's package so that, to decode a PNG image, it suffices to have
    //
    //	import _ "image/png"
    //
    // in a program's main package. The _ means to import a package purely for its
    // initialization side effects.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
Back to top