Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,567 for repoId (0.19 sec)

  1. cmd/tier.go

    	}
    
    	return pReader, opts, nil
    }
    
    // Reload updates config by reloading remote tier config from config store.
    func (config *TierConfigMgr) Reload(ctx context.Context, objAPI ObjectLayer) error {
    	newConfig, err := loadTierConfig(ctx, objAPI)
    
    	config.Lock()
    	defer config.Unlock()
    
    	switch err {
    	case nil:
    		break
    	case errConfigNotFound: // nothing to reload
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. pkg/kubelet/prober/scale_test.go

    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	"k8s.io/client-go/kubernetes/fake"
    	"k8s.io/client-go/tools/record"
    	kubepod "k8s.io/kubernetes/pkg/kubelet/pod"
    	"k8s.io/kubernetes/pkg/kubelet/prober/results"
    	"k8s.io/kubernetes/pkg/kubelet/status"
    	statustest "k8s.io/kubernetes/pkg/kubelet/status/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/workload.go

    	full := (isReq && w.Wildcard) || (!isReq && req.Full && len(req.ConfigsUpdated) == 0)
    
    	// Nothing to do
    	if len(addresses) == 0 && !full {
    		if isReq {
    			// We need to respond for requests, even if we have nothing to respond with
    			return make(model.Resources, 0), nil, model.XdsLogDetails{}, false, nil
    		}
    		// For NOP pushes, no need
    		return nil, nil, model.XdsLogDetails{}, false, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/go/types/labels.go

    				if alt := all.Insert(lbl); alt != nil {
    					err := check.newError(DuplicateLabel)
    					err.soft = true
    					err.addf(lbl, "label %s already declared", name)
    					err.addAltDecl(alt)
    					err.report()
    					// ok to continue
    				} else {
    					b.insert(s)
    					check.recordDef(s.Label, lbl)
    				}
    				// resolve matching forward jumps and remove them from fwdJumps
    				i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest.groovy

            expect:
            repo.module('org', 'leaf1').publish()
            repo.module('org', 'leaf2').publish()
            repo.module('org', 'leaf3').publish()
            repo.module('org', 'leaf4').publish()
    
            repo.module('org', 'middle1').dependsOnModules("leaf1", "leaf2").publish()
            repo.module('org', 'middle2').dependsOnModules("leaf3", "leaf4").publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/initorder.go

    		if n.ndeps > 0 {
    			cycle := findPath(check.objMap, n.obj, n.obj, make(map[Object]bool))
    			// If n.obj is not part of the cycle (e.g., n.obj->b->c->d->c),
    			// cycle will be nil. Don't report anything in that case since
    			// the cycle is reported when the algorithm gets to an object
    			// in the cycle.
    			// Furthermore, once an object in the cycle is encountered,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/go/types/initorder.go

    		if n.ndeps > 0 {
    			cycle := findPath(check.objMap, n.obj, n.obj, make(map[Object]bool))
    			// If n.obj is not part of the cycle (e.g., n.obj->b->c->d->c),
    			// cycle will be nil. Don't report anything in that case since
    			// the cycle is reported when the algorithm gets to an object
    			// in the cycle.
    			// Furthermore, once an object in the cycle is encountered,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    	cyclesLost int64        // contention for which we weren't able to record a call stack
    	disabled   bool         // attribute all time to "lost"
    }
    
    func (prof *mLockProfile) recordLock(cycles int64, l *mutex) {
    	if cycles <= 0 {
    		return
    	}
    
    	if prof.disabled {
    		// We're experiencing contention while attempting to report contention.
    		// Make a note of its magnitude, but don't allow it to be the sole cause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/builtins.go

    		}
    
    		// TODO(gri) Should we pass x.typ instead of base (and have indirect report if derefStructPtr indirected)?
    		check.recordSelection(selx, FieldVal, base, obj, index, false)
    
    		// record the selector expression (was bug - go.dev/issue/47895)
    		{
    			mode := value
    			if x.mode == variable || indirect {
    				mode = variable
    			}
    			check.record(&operand{mode, selx, obj.Type(), nil, 0})
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/project_report_plugin.adoc

    We plan to add much more to the existing reports and create additional ones in future releases of Gradle.
    
    
    [[sec:project_reports_usage]]
    == Usage
    
    To use the Project report plugin, include the following in your build script:
    
    [source,groovy]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top