Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 156 for haxe (0.06 sec)

  1. pkg/kubelet/kubelet_pods.go

    	// Complete termination of deleted pods that are not runtime pods (don't have
    	// running containers), are terminal, and are not known to pod workers.
    	// An example is pods rejected during kubelet admission that have never
    	// started before (i.e. does not have an orphaned pod).
    	// Adding the pods with SyncPodKill to pod workers allows to proceed with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        if (!shaped_type || !shaped_type.hasRank()) {
          // Marks that we have an unknown rank input.
          has_unknown_shape_input = true;
          continue;
        }
        max_rank = std::max(max_rank, shaped_type.getRank());
        if (!shaped_type.hasStaticShape()) {
          // Marks that we have an unknown shape input.
          has_unknown_shape_input = true;
          continue;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation_test.go

    			AdmissionReviewVersions: []string{"v1beta1", "v1beta1"},
    		},
    		}, true),
    		expectedError: `Invalid value: "v1beta1": duplicate version`,
    	}, {
    		name: "all Webhooks must have a fully qualified name",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:         "webhook.k8s.io",
    			ClientConfig: validClientConfig,
    			SideEffects:  &noSideEffect,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    static LogicalResult Verify(OpT op) {
      if (!HasRankAtLeast(op.getX(), 2)) {
        return op.emitOpError("requires lhs operand to have rank at least two");
      }
      if (!HasRankAtLeast(op.getY(), 2)) {
        return op.emitOpError("requires rhs operand to have rank at least two");
      }
    
      RankedTensorType x_ty = GetRankedTensorTypeForOperand(op.getX());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    instance, three such degrees of Particles, the least of which are solid; this Body will have seven times more Pores than solid Parts. But if there be four such degrees of Particles, the least of which are solid, the Body will have fifteen times more Pores than solid Parts. If there be five degrees, the Body will have one and thirty times more Pores than solid Parts. If six degrees, the Body will have sixty and three times more Pores than solid Parts. And so on perpetually. And there are other ways of conceiving...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		}
    
    		// Patch the maps to handle any expected differences before we compare.
    
    		// DeleteOptions does not have these fields.
    		delete(inMap, "fieldManager")
    		delete(inMap, "fieldValidation")
    
    		// UpdateOptions does not have these fields.
    		delete(outMap, "gracePeriodSeconds")
    		delete(outMap, "preconditions")
    		delete(outMap, "orphanDependents")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	// and update them to use podWorkers instead of podManager. This may introduce latency in some
    	// methods, but avoids race conditions and correctly accounts for terminating pods that have
    	// been force deleted or static pods that have been updated.
    	// https://github.com/kubernetes/kubernetes/issues/116970
    	podManager kubepod.Manager
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    // bounds set up yet.
    //
    // May run during STW (because it doesn't have a P yet), so write
    // barriers are not allowed.
    //
    //go:nosplit
    //go:nowritebarrierrec
    func mstart0() {
    	gp := getg()
    
    	osStack := gp.stack.lo == 0
    	if osStack {
    		// Initialize stack bounds from system stack.
    		// Cgo may have left stack size in stack.hi.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        After the pass,
    
         . The function will have an input argument for each resource that is
           already provided as an input argument or is read. The type of the input
           argument will become the shape of the value represented by the resource.
    
         . The function will have an output for each resource that is written. The
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    }
    
    // Follow the use chain of TensorList and return true iff all elements written
    // to TensorList have same static shape. If all elements have same shape, assign
    // it to `potential_element_type`.
    //
    // This can handle multiple mutations of a TensorList object and would return
    // true if across all mutations the elements written have the same shape.
    bool CanInferTensorListElementType(Value tensorlist,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top