Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,355 for scope_ (0.13 sec)

  1. tensorflow/cc/ops/while_loop_test.cc

    namespace tensorflow {
    
    namespace {
    
    class WhileLoopTest : public ::testing::Test {
     protected:
      WhileLoopTest() : scope_(Scope::NewRootScope()) {}
    
      void Init(int num_inputs, DataType dtype = DT_INT32) {
        for (int i = 0; i < num_inputs; ++i) {
          inputs_.push_back(ops::Placeholder(scope_, dtype));
        }
      }
    
      void CreateLoop(const ops::CondGraphBuilderFn& cond,
                      const ops::BodyGraphBuilderFn& body,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 22:30:58 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. pkg/test/framework/scope.go

    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    // scope hold resources in a particular scope.
    type scope struct {
    	// friendly name for the scope for debugging purposes.
    	id string
    
    	parent *scope
    
    	resources []resource.Resource
    
    	closers []io.Closer
    
    	children []*scope
    
    	closeChan chan struct{}
    
    	topLevel bool
    
    	skipDump bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 21:55:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. pkg/ctrlz/topics/scopes.go

    }
    
    // ScopeTopic returns a ControlZ topic that allows visualization of process logging scopes.
    func ScopeTopic() fw.Topic {
    	return scopeTopic{}
    }
    
    func (scopeTopic) Title() string {
    	return "Logging Scopes"
    }
    
    func (scopeTopic) Prefix() string {
    	return "scope"
    }
    
    func getScopeInfo(s *log.Scope) *scopeInfo {
    	return &scopeInfo{
    		Name:            s.Name(),
    		Description:     s.Description(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. pkg/test/scopes/scopes.go

    //  See the License for the specific language governing permissions and
    //  limitations under the License.
    
    package scopes
    
    import "istio.io/istio/pkg/log"
    
    // Framework is the general logging scope for the framework.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 786 bytes
    - Viewed (0)
  5. cni/pkg/scopes/scopes.go

    //  limitations under the License.
    
    package scopes
    
    import (
    	"istio.io/istio/cni/pkg/constants"
    	"istio.io/istio/pkg/log"
    )
    
    // Required to get global logging to work
    var (
    	CNIAgent  = log.RegisterScope(constants.CNIAgentLogScope, "CNI agent scope")
    	CNIPlugin = log.RegisterScope(constants.CNIPluginLogScope, "CNI plugin scope")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 894 bytes
    - Viewed (0)
  6. src/go/ast/scope.go

    }
    
    // NewScope creates a new scope nested in the outer scope.
    func NewScope(outer *Scope) *Scope {
    	const n = 4 // initial scope capacity
    	return &Scope{outer, make(map[string]*Object, n)}
    }
    
    // Lookup returns the object with the given name if it is
    // found in scope s, otherwise it returns nil. Outer scopes
    // are ignored.
    func (s *Scope) Lookup(name string) *Object {
    	return s.Objects[name]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. pkg/ctrlz/topics/assets/templates/scopes.html

    {{ define "content" }}
    <p>
            Logging for this process is organized in scopes. Each scope has different
            output controls which determine how much and what kind of logging is produced
            by the scope.
    </p>
    
    <table>
        <thead>
            <tr>
                <th>Scope</th>
                <th>Description</th>
                <th>Output Level</th>
                <th>Stack Trace Level</th>
                <th>Log Callers?</th>
            </tr>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

     * limitations under the License.
     */
    
    package org.gradle.internal.service.scopes;
    
    /**
     * @see ServiceScope
     */
    public interface Scope {
    
        /**
         * These services are reused across builds in the same process.
         *
         * <p>Global services are visible to all other services.</p>
         */
        interface Global extends Scope {}
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/topologymanager/scope.go

    	podMap containermap.ContainerMap
    }
    
    func (s *scope) Name() string {
    	return s.name
    }
    
    func (s *scope) getTopologyHints(podUID string, containerName string) TopologyHint {
    	s.mutex.Lock()
    	defer s.mutex.Unlock()
    	return s.podTopologyHints[podUID][containerName]
    }
    
    func (s *scope) setTopologyHints(podUID string, containerName string, th TopologyHint) {
    	s.mutex.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. pkg/config/analysis/scope/scope.go

     limitations under the License.
    */
    
    package scope
    
    import "istio.io/istio/pkg/log"
    
    var (
    	// Analysis is a logging scope used by configuration analysis component.
    	Analysis = log.RegisterScope("analysis", "Scope for configuration analysis runtime")
    	// Processing is a logging scope used by configuration processing pipeline.
    	Processing = log.RegisterScope("processing", "Scope for configuration processing runtime")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 951 bytes
    - Viewed (0)
Back to top