Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for unpipe (0.34 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionTypeProvider.kt

        /**
         * Returns the return type of the given [KtDeclaration] as [KaType].
         *
         * IMPORTANT: For `vararg foo: T` parameter returns full `Array<out T>` type (unlike
         * [KaValueParameterSymbol.returnType][org.jetbrains.kotlin.analysis.api.symbols.KaValueParameterSymbol.returnType],
         * which returns `T`).
         */
        public fun KtDeclaration.getReturnKaType(): KaType =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/internal/coverage/pkid.go

    	"internal/goexperiment",
    	"internal/runtime/syscall",
    	"runtime",
    }
    
    // Scoping note: the constants and apis in this file are internal
    // only, not expected to ever be exposed outside of the runtime (unlike
    // other coverage file formats and APIs, which will likely be shared
    // at some point).
    
    // NotHardCoded is a package pseudo-ID indicating that a given package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    )
    
    var Decode cbor.DecMode = func() cbor.DecMode {
    	decode, err := cbor.DecOptions{
    		// Maps with duplicate keys are well-formed but invalid according to the CBOR spec
    		// and never acceptable. Unlike the JSON serializer, inputs containing duplicate map
    		// keys are rejected outright and not surfaced as a strict decoding error.
    		DupMapKey: cbor.DupMapKeyEnforcedAPF,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/os/pidfd_linux.go

    const _P_PIDFD = 3
    
    func (p *Process) pidfdWait() (*ProcessState, error) {
    	// When pidfd is used, there is no wait/kill race (described in CL 23967)
    	// because the PID recycle issue doesn't exist (IOW, pidfd, unlike PID,
    	// is guaranteed to refer to one particular process). Thus, there is no
    	// need for the workaround (blockUntilWaitable + sigMu) from pidWait.
    	//
    	// We _do_ need to be careful about reuse of the pidfd FD number when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/time/tick.go

    		panic("time: Reset called on uninitialized Ticker")
    	}
    	resetTimer((*Timer)(unsafe.Pointer(t)), when(d), int64(d))
    }
    
    // Tick is a convenience wrapper for [NewTicker] providing access to the ticking
    // channel only. Unlike NewTicker, Tick will return nil if d <= 0.
    //
    // Before Go 1.23, this documentation warned that the underlying
    // [Ticker] would never be recovered by the garbage collector, and that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/sync/cond.go

    func NewCond(l Locker) *Cond {
    	return &Cond{L: l}
    }
    
    // Wait atomically unlocks c.L and suspends execution
    // of the calling goroutine. After later resuming execution,
    // Wait locks c.L before returning. Unlike in other systems,
    // Wait cannot return unless awoken by [Cond.Broadcast] or [Cond.Signal].
    //
    // Because c.L is not locked while Wait is waiting, the caller
    // typically cannot assume that the condition is true when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    func NewWaitControlPlanePhase() workflow.Phase {
    	phase := workflow.Phase{
    		Name:  "wait-control-plane",
    		Short: "Wait for the control plane to start",
    		// TODO: unhide this phase once WaitForAllControlPlaneComponents goes GA:
    		// https://github.com/kubernetes/kubeadm/issues/2907
    		Hidden: true,
    		Run:    runWaitControlPlanePhase,
    	}
    	return phase
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/ops/xla_ops.cc

          c->set_output(0, c->input(0));
          return absl::OkStatus();
        })
        .Doc(R"(XLA Merge Op. For use by the XLA JIT only.
    
    Merges the outputs from the PartitionedCall node and the _XlaRun node.
    Unlike the TensorFlow Merge op, which requires inputs of some types to be
    placed on the host, the _XlaMerge op can merge inputs of all types when
    placed on the device. This prevents the need for copy operations, in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 09:08:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java

    import org.apache.maven.api.annotations.ThreadSafe;
    
    /**
     * A container for data that is specific to a session.
     * All components may use this storage to associate arbitrary data with a session.
     * <p>
     * Unlike a cache, this session data is not subject to purging. For this same reason, session data should also not be
     * abused as a cache (i.e. for storing values that can be re-calculated) to avoid memory exhaustion.
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h

      // output_arrays is specified.
      bool prune_unused_nodes = false;
      // If true, inputs of type LegacyFedInput are replaced with Placeholder ops.
      // LegacyFedInput ops have two outputs unlike Placeholder which has only one
      // output, so if both outputs of the LegacyFedInput ops are used then returns
      // an error.
      bool convert_legacy_fed_inputs = false;
      // If true, the main graph will be treated as a function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:56:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top