Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,073 for wrappy (0.15 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/printers/typesetter.go

    	}
    
    	return p.Delegate.PrintObj(obj, w)
    }
    
    // ToPrinter returns a printer (not threadsafe!) that has been wrapped
    func (p *TypeSetterPrinter) ToPrinter(delegate ResourcePrinter) ResourcePrinter {
    	if p == nil {
    		return delegate
    	}
    
    	p.Delegate = delegate
    	return p
    }
    
    // WrapToPrinter wraps the common ToPrinter method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    		}
    	}
    
    	certificatePath := pathForCert(pkiPath, name)
    	encoded, err := EncodeCertBundlePEM(certs)
    	if err != nil {
    		return errors.Wrapf(err, "unable to marshal certificate bundle to PEM")
    	}
    	if err := certutil.WriteCert(certificatePath, encoded); err != nil {
    		return errors.Wrapf(err, "unable to write certificate bundle to file %s", certificatePath)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/python/wrap_converter.py

      """Wraps experimental mlir sparsify model."""
      return _pywrap_converter_api.ExperimentalMlirSparsifyModel(input_data_str)
    
    
    def wrapped_register_custom_opdefs(custom_opdefs_list):
      """Wraps RegisterCustomOpdefs with lazy loader."""
      return _pywrap_converter_api.RegisterCustomOpdefs(custom_opdefs_list)
    
    
    def wrapped_retrieve_collected_errors():
      """Wraps RetrieveCollectedErrors with lazy loader."""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/UncheckedThrowingFuture.java

        WrapperException(Throwable t) {
          super(t);
        }
      }
    
      private static void rethrow(ExecutionException e) throws ExecutionException {
        Throwable wrapper = e.getCause();
        if (wrapper instanceof WrapperException) {
          Throwable cause = wrapper.getCause();
          if (cause instanceof RuntimeException) {
            throw (RuntimeException) cause;
          } else if (cause instanceof Error) {
            throw (Error) cause;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 12 20:02:10 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  5. tensorflow/c/eager/gradients.h

    };
    
    // TODO(srbs): Figure out if we can avoid declaring this in the public header.
    // Wrapper for a tensor output of an operation executing under a tape.
    //
    // `GetID` returns a unique id for the wrapped tensor which is used to maintain
    // a map (`tensorflow::eager::TensorTape`) from the wrapped tensor to the id of
    // the op that produced it (or -1 if this tensor was watched using
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 26 10:27:05 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/wait/error_test.go

    	"fmt"
    	"testing"
    )
    
    type errWrapper struct {
    	wrapped error
    }
    
    func (w errWrapper) Unwrap() error {
    	return w.wrapped
    }
    func (w errWrapper) Error() string {
    	return fmt.Sprintf("wrapped: %v", w.wrapped)
    }
    
    type errNotWrapper struct {
    	wrapped error
    }
    
    func (w errNotWrapper) Error() string {
    	return fmt.Sprintf("wrapped: %v", w.wrapped)
    }
    
    func TestInterrupted(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

            ParameterNotInstantiableException.class,
            () -> new ClassSanityTester().doTestEquals(SetWrapper.class));
      }
    
      private abstract static class Wrapper {
        private final Object wrapped;
    
        Wrapper(Object wrapped) {
          this.wrapped = checkNotNull(wrapped);
        }
    
        @Override
        public boolean equals(@Nullable Object obj) {
          // In general getClass().isInstance() is bad for equals.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/output/output.go

    }
    
    // Printf is a wrapper around fmt.Printf
    func (tp *TextPrinter) Printf(format string, args ...interface{}) (n int, err error) {
    	return fmt.Printf(format, args...)
    }
    
    // Println is a wrapper around fmt.Printf
    func (tp *TextPrinter) Println(args ...interface{}) (n int, err error) {
    	return fmt.Println(args...)
    }
    
    // ResourcePrinterWrapper wraps ResourcePrinter and implements Printer interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 08:22:45 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

        IslandOp wrapper = dyn_cast_or_null<IslandOp>(operand.getDefiningOp());
        if (!wrapper || !wrapper.WrapsSingleOp()) continue;
        ops.push_back(wrapper);
      }
    }
    
    void collect_output_users_islands(IslandOp op, std::vector<IslandOp>& ops) {
      for (Value result : op->getResults()) {
        for (OpOperand use : result.getUsers()) {
          IslandOp wrapper =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/UnicodeString.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.dcerpc;
    
    
    /**
     * Unicode string type wrapper
     * 
     */
    public class UnicodeString extends rpc.unicode_string {
    
        boolean zterm;
    
    
        /**
         * 
         * @param zterm
         *            whether the string should be zero terminated
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.5K bytes
    - Viewed (0)
Back to top