Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 433 for scope_ (0.11 sec)

  1. tensorflow/compiler/jit/device_compiler_test.cc

      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
      Scope scope = Scope::NewRootScope().ExitOnError();
      auto a = ops::_Arg(scope.WithOpName("A"), DT_INT32, 0);
      auto b = ops::_Arg(scope.WithOpName("B"), DT_INT32, 1);
      auto c = ops::Add(scope.WithOpName("C"), a, b);
      auto d = ops::_Retval(scope.WithOpName("D"), c, 0);
      TF_RETURN_IF_ERROR(scope.ToGraph(graph.get()));
      return graph;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      repeated string resources = 3;
    
      // scope specifies the scope of this rule.
      // Valid values are "Cluster", "Namespaced", and "*"
      // "Cluster" means that only cluster-scoped resources will match this rule.
      // Namespace API objects are cluster-scoped.
      // "Namespaced" means that only namespaced resources will match this rule.
      // "*" means that there are no scope restrictions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/gcimporter_test.go

    	if runtime.Compiler != "gc" {
    		t.Skipf("gc-built packages not available (compiler = %s)", runtime.Compiler)
    	}
    
    	pkg := importPkg(t, "strings", ".")
    
    	scope := pkg.Scope()
    	for _, name := range scope.Names() {
    		obj := scope.Lookup(name)
    		if obj.Pkg() == nil {
    			t.Errorf("no pkg for %s", obj)
    		}
    		if tname, _ := obj.(*types.TypeName); tname != nil {
    			named := tname.Type().(*types.Named)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

                // adds listeners and expects to see a build finished event. Infrastructure should not be using the public listener types
                // In addition, they almost all should be using a build tree scoped event instead of a build scoped event
    
                Throwable reportableFailure = failure;
                if (reportableFailure == null && !stageFailures.getFailures().isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_compiler.h

      auto out_compilation_result =
          std::make_unique<XlaCompiler::CompilationResult>();
    
      if (scope == CompileScope::kOp) {
        cache_value.compilation_status = compiler.CompileSingleOp(
            compile_options, ctx, args, out_compilation_result.get());
      } else {
        CHECK(scope == CompileScope::kFunction);  // Crash OK
        cache_value.compilation_status = compiler.Compile(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. src/cmd/trace/gen.go

    // to trace.ResourceNone (the global scope).
    type globalRangeGenerator struct {
    	ranges   map[string]activeRange
    	seenSync bool
    }
    
    // Sync notifies the generator of an EventSync event.
    func (g *globalRangeGenerator) Sync() {
    	g.seenSync = true
    }
    
    // GlobalRange implements a handler for EventRange* events whose Scope.Kind is ResourceNone.
    // It expects ev to be one such event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/Maven2Gradle.java

            if (projectDep.isPresent()) {
                createProjectDependency(projectDep.get(), result, scope, allProjects);
            } else {
                if (!war && "providedCompile".equals(scope)) {
                    scope = "compileOnly";
                }
                createExternalDependency(mavenDependency, result, scope);
            }
        }
    
        private void compilerSettings(MavenProject project, BuildScriptBuilder builder) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

        }
    
        private void addInterceptor(CallInterceptor interceptor) {
            for (InterceptScope scope : interceptor.getInterceptScopes()) {
                interceptors.compute(scope, (__, previous) -> previous == null ? interceptor : new CompositeCallInterceptor(previous, interceptor));
                interceptedCallSiteNames.add(scope.getCallSiteName());
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure.sh

          local curl_headers=""
    
          if [[ "$url" =~ ^https://storage.googleapis.com.* ]] ; then
            local canUseCredentials=0
    
            echo "Getting the scope of service account configured for VM."
            if ! valid-storage-scope ; then
              canUseCredentials=1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  10. src/internal/trace/testtrace/validation.go

    		switch ev.Kind() {
    		case trace.EventRangeBegin:
    			if v.hasRange(r.Scope, r.Name) {
    				e.Errorf("already active range %q on %v begun again", r.Name, r.Scope)
    			}
    			v.addRange(r.Scope, r.Name)
    		case trace.EventRangeActive:
    			if !v.hasRange(r.Scope, r.Name) {
    				v.addRange(r.Scope, r.Name)
    			}
    		case trace.EventRangeEnd:
    			if !v.hasRange(r.Scope, r.Name) {
    				e.Errorf("inactive range %q on %v ended", r.Name, r.Scope)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top