Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for composed (0.2 sec)

  1. src/time/time.go

    // that the methods [Time.GobDecode], [Time.UnmarshalBinary], [Time.UnmarshalJSON] and
    // [Time.UnmarshalText] are not concurrency-safe.
    //
    // Time instants can be compared using the [Time.Before], [Time.After], and [Time.Equal] methods.
    // The [Time.Sub] method subtracts two instants, producing a [Duration].
    // The [Time.Add] method adds a Time and a Duration, producing a Time.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    		// on timing.
    		const approxWorkedNSPerPhysicalPage = 10e3
    		if duration == 0 {
    			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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      SymbolTable symbol_table(module);
    
      llvm::SetVector<Operation*> forward_pass_ops;
      llvm::SetVector<Operation*> backward_pass_ops;
    
      // Find all ops that we know compose the embedding forward and backward pass.
      // These ops are only tagged if one enables the
      // `pipeline_execution_with_tensor_core` flag in the mid-level API.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Component-base/logs: when compiled with Go >= 1.21, component-base will automatically configure the slog default logger together with initializing klog. ([#120696](https://github.com/kubernetes/kubernetes/pull/120696), [@pohly](https://github.com/pohly)) [SIG API Machinery, Architecture,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    }
    
    // internal struct for string service information
    type servicePortInfo struct {
    	*proxy.BaseServicePortInfo
    	// The following fields are computed and stored for performance reasons.
    	nameString string
    }
    
    // returns a new proxy.ServicePort which abstracts a serviceInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    type SchedulingQueue interface {
    	framework.PodNominator
    	Add(logger klog.Logger, pod *v1.Pod) error
    	// Activate moves the given pods to activeQ iff they're in unschedulablePods or backoffQ.
    	// The passed-in pods are originally compiled from plugins that want to activate Pods,
    	// by injecting the pods through a reserved CycleState struct (PodsToActivate).
    	Activate(logger klog.Logger, pods map[string]*v1.Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // GOPPC64 values indicate power8, power9, etc.
    // That means the code is compiled for that target,
    // and will not run on earlier targets.
    //
    (Add(Ptr|64|32|16|8) ...) => (ADD ...)
    (Add64F ...) => (FADD ...)
    (Add32F ...) => (FADDS ...)
    
    (Sub(Ptr|64|32|16|8) ...) => (SUB ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.
    	// - 'variables' - Map of composited variables, from its name to its lazily evaluated value.
    	//   For example, a variable named 'foo' can be accessed as 'variables.foo'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	//   which could lead to reusing the same resource for some other claim.
    	//
    	// A sync.Map is used because in practice sharing of a claim between
    	// pods is expected to be rare compared to per-pod claim, so we end up
    	// hitting the "multiple goroutines read, write, and overwrite entries
    	// for disjoint sets of keys" case that sync.Map is optimized for.
    	inFlightAllocations sync.Map
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    // The first step of each iteration identifies a set of “root” packages.
    // Normally the root packages are exactly those matching the named pattern
    // arguments. However, for the "all" meta-pattern, the final set of packages is
    // computed from the package import graph, and therefore cannot be an initial
    // input to loading that graph. Instead, the root packages for the "all" pattern
    // are those contained in the main module, and allPatternIsRoot parameter to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top