Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 184 for scope_ (0.32 sec)

  1. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

    import org.gradle.internal.service.ServiceRegistry;
    import org.gradle.internal.service.ServiceRegistryBuilder;
    import org.gradle.internal.service.scopes.BuildScopeServices;
    import org.gradle.internal.service.scopes.GradleUserHomeScopeServiceRegistry;
    import org.gradle.internal.session.BuildSessionState;
    import org.gradle.internal.session.CrossBuildSessionState;
    import org.gradle.internal.time.Time;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. pkg/config/constants/constants.go

    	// IstioSystemNamespace is the namespace where Istio's components are deployed
    	IstioSystemNamespace = "istio-system"
    
    	// DefaultAuthenticationPolicyName is the name of the cluster-scoped authentication policy. Only
    	// policy with this name in the cluster-scoped will be considered.
    	DefaultAuthenticationPolicyName = "default"
    
    	// IstioMeshGateway is the built in gateway for all sidecars
    	IstioMeshGateway = "mesh"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

     * accessed from the outside. Hence, while it might look like enum entries can declare their own members (see the example below), they do
     * not have a (declared) member scope.
     *
     * Members declared by the enum class and overridden in the enum entry's body will be accessible, of course, but only the base version
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerTest.groovy

                consumableUnlocked("d", {})
            }
            verifyUnlocked(ConfigurationRoles.CONSUMABLE, "e") {
                maybeCreateConsumableUnlocked("e")
            }
        }
    
        def "creates dependency scope configuration"() {
            expect:
            verifyRole(ConfigurationRoles.DEPENDENCY_SCOPE, "a") {
                dependencyScope("a")
            }
            verifyRole(ConfigurationRoles.DEPENDENCY_SCOPE, "b") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. cni/pkg/cmd/root.go

    	"istio.io/istio/cni/pkg/repair"
    	"istio.io/istio/cni/pkg/scopes"
    	"istio.io/istio/pkg/collateral"
    	"istio.io/istio/pkg/ctrlz"
    	"istio.io/istio/pkg/env"
    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/version"
    	iptables "istio.io/istio/tools/istio-iptables/pkg/constants"
    )
    
    var (
    	logOptions   = istiolog.DefaultOptions()
    	log          = scopes.CNIAgent
    	ctrlzOptions = func() *ctrlz.Options {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. cni/pkg/install/install.go

    package install
    
    import (
    	"context"
    	"fmt"
    	"os"
    	"path/filepath"
    	"sync/atomic"
    
    	"istio.io/istio/cni/pkg/config"
    	"istio.io/istio/cni/pkg/scopes"
    	"istio.io/istio/cni/pkg/util"
    	"istio.io/istio/pkg/file"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var installLog = scopes.CNIAgent
    
    type Installer struct {
    	cfg                *config.InstallConfig
    	isReady            *atomic.Value
    	kubeconfigFilepath string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

      llvm::SetVector<Value> bcasts;
      cluster->walk([&](Operation* op) {
        if (op == cluster) return WalkResult::advance();
        for (auto operand : op->getOperands()) {
          Operation* scope = operand.getParentBlock()->getParentOp();
          if (scope->isProperAncestor(replicate)) {
            bcasts.insert(operand);
          }
        }
        return WalkResult::advance();
      });
      OpBuilder builder(replicate);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. tests/integration/ambient/waypoint_test.go

    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	kubetest "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func TestWaypointStatus(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/fit.go

    )
    
    // nodeResourceStrategyTypeMap maps strategy to scorer implementation
    var nodeResourceStrategyTypeMap = map[config.ScoringStrategyType]scorer{
    	config.LeastAllocated: func(args *config.NodeResourcesFitArgs) *resourceAllocationScorer {
    		resources := args.ScoringStrategy.Resources
    		return &resourceAllocationScorer{
    			Name:      string(config.LeastAllocated),
    			scorer:    leastResourceScorer(resources),
    			resources: resources,
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     *
     * <li>The extra properties of the task. Each task object maintains a map of additional properties. These
     * are arbitrary name -&gt; value pairs which you can use to dynamically add properties to a task object.  Once defined, the properties
     * of this scope are readable and writable.</li>
     *
     * </ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top