Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for onStop (0.17 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        return success();
      }
    };
    
    // Converts ConstOp to XLA's constant operation and introduces a tensor cast if
    // needed.
    class ConvertConstOp : public OpRewritePattern<TF::ConstOp> {
     public:
      using OpRewritePattern::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TF::ConstOp op,
                                    PatternRewriter &rewriter) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	if len(hostAliases) == 0 {
    		return []byte{}
    	}
    
    	var buffer bytes.Buffer
    	buffer.WriteString("\n")
    	buffer.WriteString("# Entries added by HostAliases.\n")
    	// for each IP, write all aliases onto single line in hosts file
    	for _, hostAlias := range hostAliases {
    		buffer.WriteString(fmt.Sprintf("%s\t%s\n", hostAlias.IP, strings.Join(hostAlias.Hostnames, "\t")))
    	}
    	return buffer.Bytes()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_StackPushV2Op : TF_Op<"StackPushV2", []> {
      let summary = "Push an element onto the stack.";
    
      let arguments = (ins
        Arg<TF_ResourceTensor, [{The handle to a stack.}], [TF_StackRead, TF_StackWrite]>:$handle,
        Arg<TF_Tensor, [{The tensor to be pushed onto the stack.}]>:$elem,
    
        DefaultValuedOptionalAttr<BoolAttr, "false">:$swap_memory
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    - Fixed a bug where `Services` using finalizers may hold onto `ClusterIP` and/or `NodePort` allocated resources for longer than expected if the finalizer is removed using the status subresource. ([#120623](https://github.com/kubernetes/kubernetes/pull/120623), [@aojea](https://github.com/aojea))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    			// closure is always safe, but IsSanitizerSafeAddr
    			// can't always figure that out currently, and it's
    			// critical that we not clobber any arguments already
    			// stored onto the stack.
    			codeptr = s.rawLoad(types.Types[types.TUINTPTR], closure)
    			aux := ssa.ClosureAuxCall(callABI.ABIAnalyzeTypes(ACArgs, ACResults))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

    - Fixes a bug where Services using finalizers may hold onto ClusterIP and/or NodePort allocated resources for longer than expected if the finalizer is removed using the status subresource ([#120654](https://github.com/kubernetes/kubernetes/pull/120654), [@aojea](https://github.com/aojea)) [SIG Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - Fixes a bug where Services using finalizers may hold onto ClusterIP and/or NodePort allocated resources for longer than expected if the finalizer is removed using the status subresource ([#120655](https://github.com/kubernetes/kubernetes/pull/120655), [@aojea](https://github.com/aojea)) [SIG Network and Testing]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top