Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for necessarily (2.06 sec)

  1. cmd/iam.go

    	// Indicate to our routine to exit cleanly upon return.
    	defer cancel()
    
    	r := rand.New(rand.NewSource(time.Now().UnixNano()))
    
    	// Migrate storage format if needed.
    	for {
    		// Migrate IAM configuration, if necessary.
    		if err := saveIAMFormat(retryCtx, sys.store); err != nil {
    			if configRetriableErrors(err) {
    				logger.Info("Waiting for all MinIO IAM sub-system to be initialized.. possible cause (%v)", err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    			return s, errFaultyDisk
    		}
    		return s, err
    	}
    	s.formatData = formatData
    	s.formatFileInfo = formatFi
    	s.formatFile = pathJoin(s.drivePath, minioMetaBucket, formatConfigFile)
    
    	// Create all necessary bucket folders if possible.
    	if err = makeFormatErasureMetaVolumes(s); err != nil {
    		return s, err
    	}
    
    	if len(s.formatData) > 0 {
    		format := &formatErasureV3{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Now that these types implement link:{javadocPath}/org/gradle/api/Named.html[`Named`], these classes are no longer necessary and have been deprecated.
    They will be removed in Gradle 9.0.
    Use link:{javadocPath}/org/gradle/api/Named.Namer.html#INSTANCE[`Named.Namer.INSTANCE`] instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	incoming chan watchCacheEvent
    
    	resourcePrefix string
    
    	sync.RWMutex
    
    	// Before accessing the cacher's cache, wait for the ready to be ok.
    	// This is necessary to prevent users from accessing structures that are
    	// uninitialized or are being repopulated right now.
    	// ready needs to be set to false when the cacher is paused or stopped.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. cmd/batch-handlers.go

    				ReplicationRequest:      true, // always set this to distinguish between `mc mirror` replication and serverside
    			},
    		})
    	}
    
    	if retry && !s3Type { // when we are retrying avoid copying if necessary.
    		gopts := miniogo.GetObjectOptions{}
    		if err := gopts.SetMatchETag(srcObjInfo.ETag); err != nil {
    			return err
    		}
    		if _, err := c.StatObject(ctx, tgtBucket, pathJoin(tgtPrefix, srcObject), gopts); err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    	hostname := "*"
    	if l.Hostname != nil {
    		hostname = string(*l.Hostname)
    	}
    
    	resp := []string{}
    	for _, ns := range namespacesFromSelector(localNamespace, r, l.AllowedRoutes) {
    		// This check is necessary to prevent adding a hostname with an invalid empty namespace
    		if len(ns) > 0 {
    			resp = append(resp, fmt.Sprintf("%s/%s", ns, hostname))
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    		}
    	}
    
    	// TODO(golang.org/issue/33284): attribute changes to command line arguments.
    	// For modules matched by command line arguments, this probably isn't
    	// necessary, but it would be useful for unmatched direct dependencies of
    	// the main module.
    }
    
    // resolve records that module m must be at its indicated version (which may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top