Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,717 for inf2 (0.05 sec)

  1. cmd/erasure-server-pool-rebalance.go

    	poolStats := r.PoolStats[poolIdx]
    	if poolStats.Info.Status == rebalCompleted {
    		return true
    	}
    
    	pfi := float64(poolStats.InitFreeSpace+poolStats.Bytes) / float64(poolStats.InitCapacity)
    	// Mark pool rebalance as done if within 5% from PercentFreeGoal.
    	if diff := math.Abs(pfi - r.PercentFreeGoal); diff <= 0.05 {
    		r.PoolStats[poolIdx].Info.Status = rebalCompleted
    		r.PoolStats[poolIdx].Info.EndTime = time.Now()
    		return true
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractorTest.java

            logger.info(content);
            assertTrue(content.contains("テスト"));
            for (final String key : extractData.getKeySet()) {
                logger.info("{}={}", key, String.join("|", extractData.getValues(key)));
            }
            assertEquals("4", extractData.getValues("cp:revision")[0]);
            assertEquals("こめんと", extractData.getValues("w:Comments")[0]);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/reuse_git.txt

    stdout '"VCS": "git"'
    stdout '"URL": ".*/git/hello"'
    stdout '"Hash": "fc3a09f3dc5cfe0d7a743ea18f1f5226e68b3777"'
    go clean -modcache
    
    # go mod download vcstest/hello should invoke git, print origin info
    go mod download -x -json vcs-test.golang.org/git/hello.git@latest
    stderr 'git( .*)* fetch'
    cp stdout hello.json
    stdout '"Version": "v0.0.0-20170922010558-fc3a09f3dc5c"'
    stdout '"VCS": "git"'
    stdout '"URL": ".*/git/hello"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

            logger.info("Total time:  {}{}", formatDuration(time), wallClock);
    
            logger.info("Finished at: {}", formatTimestamp(finish));
        }
    
        @Override
        public void projectSkipped(ExecutionEvent event) {
            if (logger.isInfoEnabled()) {
                init();
                logger.info("");
                infoLine('-');
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/runtime/signal_windows.go

    //
    //go:nosplit
    func dieFromException(info *exceptionrecord, r *context) {
    	if info == nil {
    		gp := getg()
    		if gp.sig != 0 {
    			// Try to reconstruct an exception record from
    			// the exception information stored in gp.
    			info = &exceptionrecord{
    				exceptionaddress: gp.sigpc,
    				exceptioncode:    gp.sig,
    				numberparameters: 2,
    			}
    			info.exceptioninformation[0] = gp.sigcode0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/binary/BaseBinarySpec.java

        }
    
        private BaseBinarySpec(BinaryInfo info) {
            super(validate(info).componentId, info.publicType);
            this.publicType = info.publicType;
            this.componentNode = info.componentNode;
            this.tasks = info.instantiator.newInstance(DefaultBinaryTasksCollection.class, this, info.taskInstantiator, info.collectionCallbackActionDecorator);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. cmd/bucket-replication_test.go

    				},
    			},
    		},
    	},
    }
    
    var replicationConfigTests = []struct {
    	info         ObjectInfo
    	name         string
    	rcfg         replicationConfig
    	dsc          ReplicateDecision
    	tgtStatuses  map[string]replication.StatusType
    	expectedSync bool
    }{
    	{ // 1. no replication config
    		name:         "no replication config",
    		info:         ObjectInfo{Size: 100},
    		rcfg:         replicationConfig{Config: nil},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 16 09:28:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. src/go/types/api.go

    }
    
    func (info *Info) recordTypes() bool {
    	return info.Types != nil
    }
    
    // TypeOf returns the type of expression e, or nil if not found.
    // Precondition: the Types, Uses and Defs maps are populated.
    func (info *Info) TypeOf(e ast.Expr) Type {
    	if t, ok := info.Types[e]; ok {
    		return t.Type
    	}
    	if id, _ := e.(*ast.Ident); id != nil {
    		if obj := info.ObjectOf(id); obj != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api.go

    }
    
    func (info *Info) recordTypes() bool {
    	return info.Types != nil || info.StoreTypesInSyntax
    }
    
    // TypeOf returns the type of expression e, or nil if not found.
    // Precondition 1: the Types map is populated or StoreTypesInSyntax is set.
    // Precondition 2: Uses and Defs maps are populated.
    func (info *Info) TypeOf(e syntax.Expr) Type {
    	if info.Types != nil {
    		if t, ok := info.Types[e]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. src/cmd/gofmt/gofmt.go

    	//
    	// If the size is unknown (or bogus, or overflows an int), fall back to
    	// a size-independent ReadAll.
    	size := -1
    	if info != nil && info.Mode().IsRegular() && int64(int(info.Size())) == info.Size() {
    		size = int(info.Size())
    	}
    	if size+1 <= 0 {
    		// The file is not known to be regular, so we don't have a reliable size for it.
    		var err error
    		src, err := io.ReadAll(in)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top