Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 131 for INITIALIZING (0.18 sec)

  1. src/cmd/compile/internal/ssa/op.go

    // fail3: CALL panicSlice3C (a, b)
    //
    // When we register allocate that code, we want the same register to be used for
    // the first arg of panicSlice3Acap and the second arg to panicSlice3B. That way,
    // initializing that register once will satisfy both calls.
    // That desire ends up dividing the set of bounds check calls into 3 sets. This function
    // determines which set to use for a given panic call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	c.initOnce.Do(c.initWork)
    	return c.initErr
    }
    
    // initWork does the actual initialization work.
    func (c *Client) initWork() {
    	defer func() {
    		if c.initErr != nil {
    			c.initErr = fmt.Errorf("initializing sumdb.Client: %v", c.initErr)
    		}
    	}()
    
    	c.tileReader.c = c
    	if c.tileHeight == 0 {
    		c.tileHeight = 8
    	}
    	c.tileSaved = make(map[tlog.Tile]bool)
    
    	vkey, err := c.ops.ReadConfig("key")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

    public class EnumsBenchmark {
    
      @Param({"Small", "Medium", "Large"})
      String enumSize;
    
      @Param({"0.2", "0.8"})
      float hitRate;
    
      // We could avoid the raw type here by initializing this with a ternary (? SmallEnum.class : ...).
      // However, we end up needing a raw type in getIfPresent, as discussed there.
      @SuppressWarnings("rawtypes")
      private Class<? extends Enum> enumType;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  4. guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

    public class EnumsBenchmark {
    
      @Param({"Small", "Medium", "Large"})
      String enumSize;
    
      @Param({"0.2", "0.8"})
      float hitRate;
    
      // We could avoid the raw type here by initializing this with a ternary (? SmallEnum.class : ...).
      // However, we end up needing a raw type in getIfPresent, as discussed there.
      @SuppressWarnings("rawtypes")
      private Class<? extends Enum> enumType;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top