Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 451 for scope_ (0.11 sec)

  1. staging/src/k8s.io/api/networking/v1/types.go

    	// scope represents if this refers to a cluster or namespace scoped resource.
    	// This may be set to "Cluster" (default) or "Namespace".
    	// +optional
    	Scope *string `json:"scope" protobuf:"bytes,4,opt,name=scope"`
    
    	// namespace is the namespace of the resource being referenced. This field is
    	// required when scope is set to "Namespace" and must be unset when scope is set to
    	// "Cluster".
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                String type,
                String classifier,
                String scope,
                String inheritedScope,
                boolean optional) {
            String desiredScope = Artifact.SCOPE_RUNTIME;
    
            if (inheritedScope == null) {
                desiredScope = scope;
            } else if (Artifact.SCOPE_TEST.equals(scope) || Artifact.SCOPE_PROVIDED.equals(scope)) {
                return null;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/file/store.go

    		if err != nil {
    			var uerr *unknownSchemaError
    			if errors.As(err, &uerr) {
    				scope.Debugf("skipping unknown yaml chunk %s: %s", name, uerr.Error())
    			} else {
    				e := fmt.Errorf("error processing %s[%d]: %v", name, chunkCount, err)
    				scope.Warnf("%v - skipping", e)
    				scope.Debugf("Failed to parse yaml chunk: %v", string(chunk))
    				errs = multierror.Append(errs, e)
    			}
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-ingress/values.yaml

        #   2 - No preference
        #   3 - Most preferred
        arch: {}
    
        # Comma-separated minimum per-scope logging level of messages to output, in the form of <scope>:<level>,<scope>:<level>
        # The control plane has different scopes depending on component, but can configure default log level across all components
        # If empty, default scope and level will be used as configured in code
        logging:
          level: "default:info"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      optional string name = 3;
    
      // scope represents if this refers to a cluster or namespace scoped resource.
      // This may be set to "Cluster" (default) or "Namespace".
      optional string scope = 4;
    
      // namespace is the namespace of the resource being referenced. This field is
      // required when scope is set to "Namespace" and must be unset when scope is set to
      // "Cluster".
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. src/go/types/stmt.go

    				first = d
    			}
    		}
    	}
    }
    
    func (check *Checker) openScope(node ast.Node, comment string) {
    	scope := NewScope(check.scope, node.Pos(), node.End(), comment)
    	check.recordScope(node, scope)
    	check.scope = scope
    }
    
    func (check *Checker) closeScope() {
    	check.scope = check.scope.Parent()
    }
    
    func assignOp(op token.Token) token.Token {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. src/go/types/check.go

    	if m := check.Selections; m != nil {
    		m[x] = &Selection{kind, recv, obj, index, indirect}
    	}
    }
    
    func (check *Checker) recordScope(node ast.Node, scope *Scope) {
    	assert(node != nil)
    	assert(scope != nil)
    	if m := check.Scopes; m != nil {
    		m[node] = scope
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultWorkerLeaseService.java

    import org.gradle.internal.resources.ResourceLockCoordinationService;
    import org.gradle.internal.resources.TaskExecutionLockRegistry;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.internal.time.Time;
    import org.gradle.internal.time.Timer;
    import org.gradle.util.Path;
    import org.gradle.util.internal.CollectionUtils;
    import org.slf4j.Logger;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/file/TestFiles.java

    import org.gradle.internal.nativeintegration.filesystem.FileSystem;
    import org.gradle.internal.resource.local.FileResourceConnector;
    import org.gradle.internal.resource.local.FileResourceRepository;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.snapshot.CaseSensitivity;
    import org.gradle.internal.snapshot.impl.DirectorySnapshotterStatistics;
    import org.gradle.internal.time.Time;
    import org.gradle.internal.vfs.FileSystemAccess;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/check.go

    	if m := check.Selections; m != nil {
    		m[x] = &Selection{kind, recv, obj, index, indirect}
    	}
    }
    
    func (check *Checker) recordScope(node syntax.Node, scope *Scope) {
    	assert(node != nil)
    	assert(scope != nil)
    	if m := check.Scopes; m != nil {
    		m[node] = scope
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top