Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 231 for span1 (0.12 sec)

  1. src/cmd/trace/goroutines.go

    		<td>
    			<div class="stacked-bar-graph">
    			{{$Goroutine := .}}
    			{{range $.NonOverlappingStats}}
    				{{$Time := index $Goroutine.NonOverlappingStats .}}
    				{{if $Time}}
    					<span {{barStyle . $Time $.MaxTotal}}>&nbsp;</span>
    				{{end}}
    			{{end}}
    			</div>
    		</td>
    		{{$Goroutine := .}}
    		{{range $.NonOverlappingStats}}
    			{{$Time := index $Goroutine.NonOverlappingStats .}}
    			<td> {{$Time.String}}</td>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    	if err != nil {
    		return &webhookutil.ErrCallingWebhook{WebhookName: h.Name, Reason: fmt.Errorf("could not get REST client: %w", err), Status: apierrors.NewBadRequest("error getting REST client")}
    	}
    	ctx, span := tracing.Start(ctx, "Call validating webhook",
    		attribute.String("configuration", invocation.Webhook.GetConfigurationName()),
    		attribute.String("webhook", h.Name),
    		attribute.Stringer("resource", attr.GetResource()),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/TreeRangeMapTest.java

              }
            } else {
              if (range2.isEmpty()) {
                expected = range1;
              } else {
                expected = range1.span(range2);
              }
            }
    
            try {
              assertEquals(expected, rangeMap.span());
              assertNotNull(expected);
            } catch (NoSuchElementException e) {
              assertNull(expected);
            }
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/query.go

    // to provide an info.Origin that can allow the error to be cached.
    func Query(ctx context.Context, path, query, current string, allowed AllowedFunc) (*modfetch.RevInfo, error) {
    	ctx, span := trace.StartSpan(ctx, "modload.Query "+path)
    	defer span.Done()
    
    	return queryReuse(ctx, path, query, current, allowed, nil)
    }
    
    // queryReuse is like Query but also takes a map of module info that can be reused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/obj0.go

    	Init:           buildop,
    	Preprocess:     preprocess,
    	Assemble:       span0,
    	Progedit:       progedit,
    	DWARFRegisters: MIPSDWARFRegisters,
    }
    
    var Linkmips64le = obj.LinkArch{
    	Arch:           sys.ArchMIPS64LE,
    	Init:           buildop,
    	Preprocess:     preprocess,
    	Assemble:       span0,
    	Progedit:       progedit,
    	DWARFRegisters: MIPSDWARFRegisters,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/python/mlir.cc

      mlir::DialectRegistry registry;
      mlir::func::registerAllExtensions(registry);
      mlir::MLIRContext context(registry);
      auto module_or = ConvertSavedModelToMlir(
          &bundle, &context, absl::Span<std::string>(exported_names));
      if (!module_or.status().ok()) {
        tsl::Set_TF_Status_from_Status(status, module_or.status());
        return "// error";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_cluster_util_test.cc

    }
    
    void CreateSubgraphCallingFunctionWithRefVar(const Scope& s) {
      NameAttrList ref_float_function;
      ref_float_function.set_name("RefFloatFn");
      ops::PartitionedCall call(s.WithOpName("RefFloat"), {absl::Span<Input>{}},
                                {DT_FLOAT}, ref_float_function);
      Output constant =
          ops::Const(s.WithOpName("constant_ref_pco"), Input::Initializer(0.0));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.cc

    #include <memory>
    #include <optional>
    #include <string>
    #include <unordered_set>
    #include <utility>
    #include <vector>
    
    #include "absl/status/status.h"
    #include "absl/types/span.h"
    #include "llvm/ADT/StringSet.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/compilability_check_util.cc

        }
      }
    
      return absl::OkStatus();
    }
    
    tensorflow::MemoryTypeVector GetInputMemoryTypes(
        const tensorflow::FunctionBody* fbody,
        absl::Span<int const> constant_arg_indices,
        absl::Span<int const> resource_arg_indices) {
      // Set input and output memory types.
      tensorflow::MemoryTypeVector input_memory_types(fbody->arg_types.size(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. src/runtime/mfinal.go

    	}
    
    	// find the containing object
    	base, span, _ := findObject(uintptr(e.data), 0, 0)
    
    	if base == 0 {
    		if isGoPointerWithoutSpan(e.data) {
    			return
    		}
    		throw("runtime.SetFinalizer: pointer not in allocated block")
    	}
    
    	// Move base forward if we've got an allocation header.
    	if !span.spanclass.noscan() && !heapBitsInSpan(span.elemsize) && span.spanclass.sizeclass() != 0 {
    		base += mallocHeaderSize
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top