Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for practice (0.19 sec)

  1. guava/src/com/google/common/util/concurrent/Futures.java

      // introduce a very specific kind of data-race. And given the other operations performed by these
      // methods that involve volatile read/write operations, in practice there is no issue. Also, the
      // way in such a visibility issue would surface is most likely as a failure of cancel() to
      // propagate to the input. Cancellation propagation is fundamentally racy so this is fine.
      //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    //   - For throughput-sensitive applications, such as large file transfers,
    //     larger TLS records better amortize framing and encryption overheads.
    //
    // A simple heuristic that works well in practice is to use small records for
    // the first 1MB of data, then use larger records for subsequent data, and
    // reset back to smaller records after the connection becomes idle. See "High
    // Performance Web Networking", Chapter 4, or:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		return nil
    	}
    
    	// Step 5: start ephemeral containers
    	// These are started "prior" to init containers to allow running ephemeral containers even when there
    	// are errors starting an init container. In practice init containers will start first since ephemeral
    	// containers cannot be specified on pod creation.
    	for _, idx := range podContainerChanges.EphemeralContainersToStart {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // of migration TBD, and it may be a disruptive operation to change the Mesh
      // ID post-install.
      //
      // If the mesh admin does not specify a value, Istio will use the value of the
      // mesh's Trust Domain. The best practice is to select a proper Trust Domain
      // value.
      string meshID = 53;
    
      // Configure the mesh networks to be used by the Split Horizon EDS.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    	return curCtx, true, nil
    }
    
    func (o *ordering) advanceGCSweepActive(ev *baseEvent, evt *evTable, m ThreadID, gen uint64, curCtx schedCtx) (schedCtx, bool, error) {
    	pid := ProcID(ev.args[0])
    	// N.B. In practice Ps can't block while they're sweeping, so this can only
    	// ever reference curCtx.P. However, be lenient about this like we are with
    	// GCMarkAssistActive; there's no reason the runtime couldn't change to block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    			worked += approxWorkedNSPerPhysicalPage * float64(r/physPageSize)
    		} else {
    			// TODO(mknyszek): If duration is small compared to worked, it could be
    			// rounded down to zero. Probably not a problem in practice because the
    			// values are all within a few orders of magnitude of each other but maybe
    			// worth worrying about.
    			worked += float64(duration)
    		}
    		released += r
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    // 966-975.
    // For journal quality proofs that these steps are complete, correct, and terminate see
    // Hudson, R., and Moss, J.E.B. Copying Garbage Collection without stopping the world.
    // Concurrency and Computation: Practice and Experience 15(3-5), 2003.
    //
    // 1. GC performs sweep termination.
    //
    //    a. Stop the world. This causes all Ps to reach a GC safe-point.
    //
    //    b. Sweep any unswept spans. There will only be unswept spans if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ppc64/asm.go

    					if sym, firstUse := genpltstub(ctxt, ldr, r, i, s); firstUse {
    						stubs = append(stubs, sym)
    					}
    
    				case sym.SXREF:
    					// Is this an ELF ABI defined function which is (in practice)
    					// generated by the linker to save/restore callee save registers?
    					// These are defined similarly for both PPC64 ELF and ELFv2.
    					targName := ldr.SymName(r.Sym())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      }
    
      // Check if contracting this edge will break the resource variable concurrency
      // semantics.  In theory this is quadratic in the number of nodes, but seems
      // to not be a problem in practice so far.
      if (!debug_options_.ignore_resource_variable_checks) {
        for (int resource_var_from : from->resource_var_operation_node_ids()) {
          for (int resource_var_to : to->resource_var_operation_node_ids()) {
    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. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Now that you have seen some of the input and output annotations in practice, let’s take a look at all the annotations available to you and when you should use them. The table below lists the available annotations and the corresponding property type you can use with each one.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top