Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for because3 (0.29 sec)

  1. src/net/http/h2_bundle.go

    // promoteUndeclaredTrailers permits http.Handlers to set trailers
    // after the header has already been flushed. Because the Go
    // ResponseWriter interface has no way to set Trailers (only the
    // Header), and because we didn't want to expand the ResponseWriter
    // interface, and because nobody used trailers, and because RFC 7230
    // says you SHOULD (but not must) predeclare any trailers in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	}
    
    	// Record incoming parameter spill information for morestack calls emitted in the assembler.
    	// This is done here, using all the parameters (used, partially used, and unused) because
    	// it mimics the behavior of the former ABI (everything stored) and because it's not 100%
    	// clear if naming conventions are respected in autogenerated code.
    	// TODO figure out exactly what's unused, don't spill it. Make liveness fine-grained, also.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. doc/go_spec.html

    </pre>
    
    <p>
    <code>B0</code> and <code>B1</code> are different because they are new types
    created by distinct <a href="#Type_definitions">type definitions</a>;
    <code>func(int, float64) *B0</code> and <code>func(x int, y float64) *[]string</code>
    are different because <code>B0</code> is different from <code>[]string</code>;
    and <code>P1</code> and <code>P2</code> are different because they are different
    type parameters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  4. CHANGELOG/CHANGELOG-1.30.md

    - QueueingHint implementation for NodeAffinity is reverted because we found potential scenarios where events that make Pods schedulable could be missed. ([#122285](https://github.com/kubernetes/kubernetes/pull/122285), [@sanposhiho](https://github.com/sanposhiho)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier_test.go

    		createdChains := sets.New[string](findAllMatches(lines, `^:([^ ]*)`)...)
    		// Find all of the lines like "-X KUBE-SERVICES ..." indicating chains
    		// that we are deleting because they are no longer used, and remove
    		// those chains from createdChains.
    		createdChains = createdChains.Delete(findAllMatches(lines, `-X ([^ ]*)`)...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          // The mean and variance are each 1 dimensional arrays the size of the
          // feature dimension, with the same element type as the operand (x).
          // This shape must be constructed manually because the mean and variance
          // inputs are empty in the training case.
          Type mean_var_type = tensorflow::GetTypeFromTFTensorShape(
              {operand_shape[feature_dim.getInt()]}, scale_element_type);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.29.md

    - QueueingHint implementation for NodeAffinity is reverted because we found potential scenarios where events that make Pods schedulable could be missed. ([#122327](https://github.com/kubernetes/kubernetes/pull/122327), [@sanposhiho](https://github.com/sanposhiho)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  8. ChangeLog.md

    - [`KT-66148`](https://youtrack.jetbrains.com/issue/KT-66148) K2. Sources of receivers updated twice because of PCLA
    - [`KT-62525`](https://youtrack.jetbrains.com/issue/KT-62525) K2: IllegalStateException: Can't find KotlinType in IrErrorType: IrErrorType(null)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    	// It doesn't make sense to have the labelselector with the key specified in matchLabelKeys
    	// because the matchLabelKeys will be `In` labelSelector which matches with only one value in the key
    	// and we cannot make any further filtering with that key.
    	// On the other hand, we may want to have labelSelector with the key specified in mismatchLabelKeys.
    	// because the mismatchLabelKeys will be `NotIn` labelSelector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	PodReasonUnschedulable = "Unschedulable"
    
    	// PodReasonSchedulingGated reason in PodScheduled PodCondition means that the scheduler
    	// skips scheduling the pod because one or more scheduling gates are still present.
    	PodReasonSchedulingGated = "SchedulingGated"
    
    	// PodReasonSchedulerError reason in PodScheduled PodCondition means that some internal error happens
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top