Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for Span (0.14 sec)

  1. src/cmd/internal/obj/arm/asm5.go

    // Inferno utils/5l/span.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/5l/span.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue debug = 1;
    
      // The global default max number of attributes per span.
      uint32 maxNumberOfAttributes = 2;
    
      // The global default max number of annotation events per span.
      uint32 maxNumberOfAnnotations = 3;
    
      // The global default max number of message events per span.
      uint32 maxNumberOfMessageEvents = 4;
    }
    
    message BaseConfig {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

      builder: Builder,
    ) : Call.Factory, WebSocket.Factory {
      @get:JvmName("dispatcher")
      val dispatcher: Dispatcher = builder.dispatcher
    
      /**
       * Returns an immutable list of interceptors that observe the full span of each call: from before
       * the connection is established (if any) until after the response source is selected (either the
       * origin server, cache, or both).
       */
      @get:JvmName("interceptors")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    		}
    		defer func() {
    			if err := close(); err != nil {
    				base.Fatalf("failed to stop trace: %v", err)
    			}
    		}()
    	}
    
    	ctx, span := trace.StartSpan(ctx, fmt.Sprint("Running ", cmd.Name(), " command"))
    	defer span.Done()
    
    	work.FindExecCmd() // initialize cached result
    
    	work.BuildInit()
    	work.VetFlags = testVet.flags
    	work.VetExplicit = testVet.explicit
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    }
    
    namespace {
    Node* MakeStageNode(GraphDefBuilder& builder, string name,
                        std::initializer_list<DataType> dtypes,
                        absl::Span<const ops::NodeOut> values) {
      auto opts = builder.opts()
                      .WithName(std::move(name))
                      .WithAttr("dtypes", std::move(dtypes));
      if (opts.HaveError()) {
        return nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  6. src/time/time_test.go

    		ns := t.Unix()*1e9 + int64(t.Nanosecond())
    		return ns == nsec
    	}
    	f32 := func(nsec int32) bool { return f(int64(nsec)) }
    	cfg := &quick.Config{MaxCount: 10000}
    
    	// Try a small date first, then the large ones. (The span is only a few hundred years
    	// for nanoseconds in an int64.)
    	if err := quick.Check(f32, cfg); err != nil {
    		t.Fatal(err)
    	}
    	if err := quick.Check(f, cfg); err != nil {
    		t.Fatal(err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. src/internal/trace/order.go

    	go122.EvGoCreateBlocked: (*ordering).advanceGoCreate,
    
    	// GoStatus event with a stack. Added in Go 1.23.
    	go122.EvGoStatusStack: (*ordering).advanceGoStatus,
    
    	// Experimental events.
    
    	// Experimental heap span events. Added in Go 1.23.
    	go122.EvSpan:      (*ordering).advanceAllocFree,
    	go122.EvSpanAlloc: (*ordering).advanceAllocFree,
    	go122.EvSpanFree:  (*ordering).advanceAllocFree,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. src/go/printer/nodes.go

    				p.print(token.COMMA, blank)
    			}
    			p.expr0(x, depth)
    		}
    		if isIncomplete {
    			p.print(token.COMMA, blank, "/* "+filteredMsg+" */")
    		}
    		return
    	}
    
    	// list entries span multiple lines;
    	// use source code positions to guide line breaks
    
    	// Don't add extra indentation if noIndent is set;
    	// i.e., pretend that the first line is already indented.
    	ws := ignore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        const std::optional<string>& xla_scope() const { return xla_scope_; }
    
        // Returns the TF graph node IDs for the resource variable operations in
        // this cluster.
        absl::Span<const int> resource_var_operation_node_ids() const {
          return resource_var_operation_node_ids_;
        }
    
        string DebugString(const Graph& graph) const {
          Node* node = graph.FindNodeId(cycles_graph_node_id());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/arm64.s

    	MSR	R17, OSECCR_EL1                    // 510610d5
    	MSR	R3, OSLAR_EL1                      // 831010d5
    	MRS	OSLSR_EL1, R15                     // 8f1130d5
    	MRS	PAN, R14                           // 6e4238d5
    	MSR	R0, PAN                            // 604218d5
    	MRS	PAR_EL1, R27                       // 1b7438d5
    	MSR	R3, PAR_EL1                        // 037418d5
    	MRS	PMCCFILTR_EL0, R10                 // eaef3bd5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
Back to top