Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 437 for decisions (0.73 sec)

  1. pkg/config/model.go

    	// The config client should not make any assumptions about revisions and rely only on
    	// exact equality to implement optimistic concurrency of read-write operations.
    	//
    	// The lifetime of an object of a particular revision depends on the underlying data store.
    	// The data store may compactify old revisions in the interest of storage optimization.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. pkg/test/framework/test.go

    			t.goTest.Name()))
    		return
    	}
    
    	if t.minIstioVersion != "" {
    		if !t.ctx.Settings().Revisions.AtLeast(resource.IstioVersion(t.minIstioVersion)) {
    			t.goTest.Skipf("Skipping %q: running with min Istio version %q, test requires at least %s",
    				t.goTest.Name(), t.ctx.Settings().Revisions.Minimum(), t.minIstioVersion)
    		}
    	}
    
    	start := time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. operator/cmd/mesh/install.go

    		var icpTag string
    		// create normalized tags for multiple control plane revisions
    		for _, icp := range *icps {
    			if icp.Revision != revision {
    				continue
    			}
    			tagVer, err := GetTagVersion(icp.Info.GitTag)
    			if err != nil {
    				return err
    			}
    			icpTags = append(icpTags, tagVer)
    		}
    		// sort different versions of control plane revisions
    		sort.Strings(icpTags)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/configcontroller.go

    	"istio.io/istio/pkg/adsc"
    	"istio.io/istio/pkg/config/analysis/incluster"
    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/config/schema/gvr"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/revisions"
    )
    
    // URL schemes supported by the config store
    type ConfigSourceAddressScheme string
    
    const (
    	// fs:///PATH will load local files. This replaces --configDir.
    	// example fs:///tmp/configroot
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/traffic.go

    }
    
    func (c TrafficTestCase) RunForApps(t framework.TestContext, apps echo.Instances, namespace string) {
    	if c.skip.skip {
    		t.Skip(c.skip.reason)
    	}
    	if c.minIstioVersion != "" {
    		skipMV := !t.Settings().Revisions.AtLeast(resource.IstioVersion(c.minIstioVersion))
    		if skipMV {
    			t.SkipNow()
    		}
    	}
    	if c.opts.To != nil {
    		t.Fatal("TrafficTestCase.RunForApps: opts.To must not be specified")
    	}
    	if c.call != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. cmd/import-boss/main.go

    	// ... and must not have one of these prefixes.
    	ForbiddenPrefixes []string
    	// True if the rule is to be applied to transitive imports.
    	Transitive bool
    }
    
    // Disposition represents a decision or non-decision.
    type Disposition int
    
    const (
    	// DepForbidden means the dependency was explicitly forbidden by a rule.
    	DepForbidden Disposition = iota
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. pkg/controller/deployment/util/deployment_util.go

    	// RevisionAnnotation is the revision annotation of a deployment's replica sets which records its rollout sequence
    	RevisionAnnotation = "deployment.kubernetes.io/revision"
    	// RevisionHistoryAnnotation maintains the history of all old revisions that a replica set has served for a deployment.
    	RevisionHistoryAnnotation = "deployment.kubernetes.io/revision-history"
    	// DesiredReplicasAnnotation is the desired replicas for a deployment recorded as an annotation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/deployment.go

    		"StartupProbe":            supportStartupProbe,
    		"IncludeExtAuthz":         cfg.IncludeExtAuthz,
    		"Revisions":               settings.Revisions.TemplateMap(),
    		"Compatibility":           settings.Compatibility,
    		"WorkloadClass":           cfg.WorkloadClass(),
    		"OverlayIstioProxy":       canCreateIstioProxy(settings.Revisions.Minimum()) && !settings.Ambient,
    		"Ambient":                 settings.Ambient,
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/cfg/cfg.go

    		// (1) environment, (2) runtime constants.
    		//
    		// We know ctxt.GOOS/GOARCH == runtime.GOOS/GOARCH;
    		// no matter how that happened, go/build.Default will make the
    		// same decision (either the environment variables are set explicitly
    		// to match the runtime constants, or else they are unset, in which
    		// case go/build falls back to the runtime constants), so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

                } else {
                    // Note: this effectively removes the reference to the decorated call site from the call site array, thus not allowing us
                    // to change the decision and intercept the call anymore. For now, we are fine with that.
                    if (callStrategy == CallStrategy.CALL_CURRENT) {
                        return super.callCurrent((GroovyObject) receiver, args);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top