Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 203 for refStore (0.13 sec)

  1. internal/bucket/lifecycle/lifecycle.go

    	}
    
    	return Event{
    		Action: NoneAction,
    	}
    }
    
    // ExpectedExpiryTime calculates the expiry, transition or restore date/time based on a object modtime.
    // The expected transition or restore time is always a midnight time following the object
    // modification time plus the number of transition/restore days.
    //
    //	e.g. If the object modtime is `Thu May 21 13:42:50 GMT 2020` and the object should
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

      might become the name of Retval nodes as well (with an index suffix if there
      are multiple output tensors from one node). Since Retval nodes are not used in
      SavedModel, this function removes them and restore the names to the actual
      output tensors.
    
      Args:
        graph_def: the converted GraphDef.
    
      Returns:
        The GraphDef with Retval nodes removed and output tensor names restored.
      """
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/certs.go

    				return nil
    			}
    			fmt.Printf("[certs] Using existing %s keyless certificate authority\n", ca.BaseName)
    			return nil
    		}
    
    		// if dryrunning, write certificates authority to a temporary folder (and defer restore to the path originally specified by the user)
    		cfg := data.Cfg()
    		cfg.CertificatesDir = data.CertificateWriteDir()
    		defer func() { cfg.CertificatesDir = data.CertificateDir() }()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/runtime/race_arm64.s

    	MOVD	R9, R21	// remember the original function
    	MOVD	$__tsan_go_ignore_sync_begin(SB), R9
    	load_g
    	MOVD	g_racectx(g), R0	// goroutine context
    	BL	racecall<>(SB)
    	MOVD	R21, R9	// restore the original function
    	// Call the atomic function.
    	// racecall will call LLVM race code which might clobber R28 (g)
    	load_g
    	MOVD	g_racectx(g), R0	// goroutine context
    	MOVD	16(RSP), R1	// caller pc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. pkg/util/iptables/testing/parse.go

    	"reflect"
    	"regexp"
    	"strconv"
    	"strings"
    
    	"k8s.io/kubernetes/pkg/util/iptables"
    )
    
    // IPTablesDump represents a parsed IPTables rules dump (ie, the output of
    // "iptables-save" or input to "iptables-restore")
    type IPTablesDump struct {
    	Tables []Table
    }
    
    // Table represents an IPTables table
    type Table struct {
    	Name   iptables.Table
    	Chains []Chain
    }
    
    // Chain represents an IPTables chain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. src/log/slog/handler.go

    	}
    	key = MessageKey
    	msg := r.Message
    	if rep == nil {
    		state.appendKey(key)
    		state.appendString(msg)
    	} else {
    		state.appendAttr(String(key, msg))
    	}
    	state.groups = stateGroups // Restore groups passed to ReplaceAttrs.
    	state.appendNonBuiltIns(r)
    	state.buf.WriteByte('\n')
    
    	h.mu.Lock()
    	defer h.mu.Unlock()
    	_, err := h.w.Write(*state.buf)
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. src/runtime/callers_test.go

    	}
    	// Make sure that frame pointer unwinding succeeds from a deferred
    	// function run after recovering from a panic. It can fail if the
    	// recovery does not properly restore the caller's frame pointer before
    	// running the remaining deferred functions.
    	//
    	// This test does not verify the accuracy of the call stack (it
    	// currently includes a frame from runtime.deferreturn which would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 21:36:31 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

      let summary = "Restore variable tensors";
      let description = [{
        This is the MLRT version of tf.IfrtRestoreVariableOp.
    
        This Op is similar to a combination of RestoreV2 and AssignVariable Op, but
        this Op's execution is asynchronous.
    
        This Op is specific to MLRT runtime and is not a stable interface for
        serialization.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java

        protected void searchPaging(final RenderData data, final SearchForm form) {
            RenderDataUtil.register(data, "crawlingInfoItems", crawlingInfoService.getCrawlingInfoList(crawlingInfoPager)); // page navi
    
            // restore from pager
            copyBeanToBean(crawlingInfoPager, form, op -> op.include("sessionId"));
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export_test.cc

                 attr {
                   key: "tf_saved_model.index_path",
                   value { list { s: "__tf_file_prefix" } }
                 }
               })pb",
          &graph_def));
    
      // Restore op's name should start with "restore_op" and the save op's name
      // should start with "tf_quant__save_op".
      const std::vector<std::string> control_ret_node_names = {
          "restore_op_0", "tf_quant__save_op_0"};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top