Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 207 for INITIALIZING (0.28 sec)

  1. src/syscall/fs_wasip1.go

    // to optimize in the future. Instead of returning a string, the function
    // could append the result to an output buffer that the functions in this
    // file can manage to have allocated on the stack (e.g. initializing to a
    // fixed capacity). Since it will significantly increase code complexity,
    // we prefer to optimize for readability and maintainability at this time.
    func joinPath(dir, file string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		var ok bool
    		readyGeneration, ok = c.ready.checkAndReadGeneration()
    		if !ok {
    			return nil, errors.NewTooManyRequests("storage is (re)initializing", 1)
    		}
    	} else {
    		readyGeneration, err = c.ready.waitAndReadGeneration(ctx)
    		if err != nil {
    			return nil, errors.NewServiceUnavailable(err.Error())
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	isLLVMObjdump       bool
    
    	// if fast, perform symbolization using nm (symbol names only),
    	// instead of file-line detail from the slower addr2line.
    	fast bool
    }
    
    // get returns the current representation for bu, initializing it if necessary.
    func (bu *Binutils) get() *binrep {
    	bu.mu.Lock()
    	r := bu.rep
    	if r == nil {
    		r = &binrep{}
    		initTools(r, "")
    		bu.rep = r
    	}
    	bu.mu.Unlock()
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/func.go

    	// making inlining decisions). See cmd/compile/internal/inline/inlheur.
    	Properties string
    
    	// CanDelayResults reports whether it's safe for the inliner to delay
    	// initializing the result parameters until immediately before the
    	// "return" statement.
    	CanDelayResults bool
    }
    
    // A Mark represents a scope boundary.
    type Mark struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

        @Override
        public synchronized void init() {
            if (httpClient != null) {
                return;
            }
    
            if (logger.isDebugEnabled()) {
                logger.debug("Initializing {}", HcHttpClient.class.getName());
            }
    
            super.init();
    
            // robots.txt parser
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectCollection.java

                        // Create the domain object
                        object = createDomainObject();
                        // Configuring the domain object may cause circular evaluation, but after initializing this.object
                        // calculateOwnValue short-circuits it at a cost of exposing a partially constructed value.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework.go

    	"k8s.io/kubernetes/pkg/util/slice"
    )
    
    const (
    	// Specifies the maximum timeout a permit plugin can return.
    	maxTimeout = 15 * time.Minute
    )
    
    // frameworkImpl is the component responsible for initializing and running scheduler
    // plugins.
    type frameworkImpl struct {
    	registry             Registry
    	snapshotSharedLister framework.SharedLister
    	waitingPods          *waitingPodsMap
    	scorePluginWeight    map[string]int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. pkg/istio-agent/xds_proxy.go

    			for _, cert := range caCerts {
    				trustBundle = util.AppendCertByte(trustBundle, []byte(cert))
    			}
    			return ia.secretCache.UpdateConfigTrustBundle(trustBundle)
    		}
    	}
    
    	proxyLog.Infof("Initializing with upstream address %q and cluster %q", proxy.istiodAddress, proxy.clusterID)
    
    	if err = proxy.initDownstreamServer(); err != nil {
    		return nil, err
    	}
    
    	if err = proxy.initIstiodDialOptions(ia); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbSessionImpl.java

                            }
                            this.sessionKey = signingKey;
                        }
                        else {
                            log.trace("Not yet initializing signing");
                        }
    
                        response = new SmbComSessionSetupAndXResponse(getContext().getConfig(), null);
                        response.setExtendedSecurity(true);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_2x.md

        If you're using `Call.enqueue()` this update should significantly improve
        request concurrency.
    
     *  **Fix: Lazily initialize the response cache.** This avoids strict mode
        warnings when initializing OkHttp on Android‘s main thread.
    
     *  **Fix: Disable ALPN on Android 4.4.** That release of the feature was
        unstable and prone to native crashes in the underlying OpenSSL code.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
Back to top