Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 196 for inf2 (0.05 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        }
    
        private void commands(CliRequest cliRequest) {
            if (cliRequest.showErrors) {
                slf4jLogger.info("Error stacktraces are turned on.");
            }
    
            if (MavenExecutionRequest.CHECKSUM_POLICY_WARN.equals(cliRequest.request.getGlobalChecksumPolicy())) {
                slf4jLogger.info("Disabling strict checksum verification on all artifact downloads.");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server_test.go

    	"io"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"net/http/httputil"
    	"net/url"
    	"reflect"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    
    	cadvisorapi "github.com/google/cadvisor/info/v1"
    	cadvisorapiv2 "github.com/google/cadvisor/info/v2"
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    		storageLogOnceIf(ctx, err, "get-object-file-info-manually-modified")
    		return fi, nil, nil, toObjectErr(err, bucket, object, opts.VersionID)
    	}
    
    	filterOnlineDisksInplace(fi, onlineMeta, onlineDisks)
    	for i := range onlineMeta {
    		// verify metadata is valid, it has similar erasure info
    		// as well as common modtime, if modtime is not possible
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    			defer mu.Unlock()
    
    			allMerged = dataUsageCache{Info: dataUsageCacheInfo{Name: dataUsageRoot}}
    			for _, info := range results {
    				if info.Info.LastUpdate.IsZero() {
    					// Not filled yet.
    					return
    				}
    				allMerged.merge(info)
    			}
    			if allMerged.root() != nil && allMerged.Info.LastUpdate.After(lastUpdate) {
    				updates <- allMerged.dui(allMerged.Info.Name, allBuckets)
    				lastUpdate = allMerged.Info.LastUpdate
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	info, err := r.getOrCreateServingInfoFor(crd.UID, crd.Name)
    	if err != nil {
    		return nil, err
    	}
    	return info.storages[info.storageVersion].CustomResource, nil
    }
    
    // getOrCreateServingInfoFor gets the CRD serving info for the given CRD UID if the key exists in the storage map.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    	if sect.Name == ".text" {
    		if sh.Info != 0 && sh.Info != uint32(sect.Elfsect.(*ElfShdr).shnum) {
    			sh = elfshnamedup(elfRelType + sect.Name)
    		}
    	}
    
    	sh.Type = uint32(typ)
    	sh.Entsize = uint64(arch.RegSize) * 2
    	if typ == elf.SHT_RELA {
    		sh.Entsize += uint64(arch.RegSize)
    	}
    	sh.Link = uint32(elfshname(".symtab").shnum)
    	sh.Info = uint32(sect.Elfsect.(*ElfShdr).shnum)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    	} else {
    		hashWriteStat(h, info)
    	}
    	return h.Sum()
    }
    
    func hashWriteStat(h io.Writer, info fs.FileInfo) {
    	fmt.Fprintf(h, "stat %d %x %v %v\n", info.Size(), uint64(info.Mode()), info.ModTime(), info.IsDir())
    }
    
    // testAndInputKey returns the actual cache key for the pair (testID, testInputsID).
    func testAndInputKey(testID, testInputsID cache.ActionID) cache.ActionID {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal.go

    func (a *HorizontalController) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	defer a.queue.ShutDown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting HPA controller")
    	defer logger.Info("Shutting down HPA controller")
    
    	if !cache.WaitForNamedCacheSync("HPA", ctx.Done(), a.hpaListerSynced, a.podListerSynced) {
    		return
    	}
    
    	for i := 0; i < workers; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        if (llvm::isa<TF::WriteSummaryOp>(op)) return WalkResult::interrupt();
        return WalkResult::advance();
      });
      if (walk_result.wasInterrupted()) {
        LOG(INFO) << "TF summaries detected - disabling embedding pipelining.";
        return false;
      }
      LOG(INFO) << "Embedding pipelining rewrite enabled.";
      return true;
    }
    
    StringAttr GetReplicationAttr(mlir::Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users.go

    		return
    	}
    
    	writeSuccessResponseJSON(w, usageInfoJSON)
    }
    
    // InfoCannedPolicy - GET /minio/admin/v3/info-canned-policy?name={policyName}
    //
    // Newer API response with policy timestamps is returned with query parameter
    // `v=2` like:
    //
    // GET /minio/admin/v3/info-canned-policy?name={policyName}&v=2
    //
    // The newer API will eventually become the default (and only) one. The older
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top