Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,175 for saving (0.12 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/framepointer/framepointer.go

    // that clobbers the frame pointer before saving it.
    package framepointer
    
    import (
    	"go/build"
    	"regexp"
    	"strings"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    )
    
    const Doc = "report assembly that clobbers the frame pointer before saving it"
    
    var Analyzer = &analysis.Analyzer{
    	Name: "framepointer",
    	Doc:  Doc,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/net/main_windows_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package net
    
    import "internal/poll"
    
    var (
    	// Placeholders for saving original socket system calls.
    	origWSASocket   = wsaSocketFunc
    	origClosesocket = poll.CloseFunc
    	origConnect     = connectFunc
    	origConnectEx   = poll.ConnectExFunc
    	origListen      = listenFunc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:36:30 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. src/net/main_unix_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package net
    
    import "internal/poll"
    
    var (
    	// Placeholders for saving original socket system calls.
    	origSocket        = socketFunc
    	origClose         = poll.CloseFunc
    	origConnect       = connectFunc
    	origListen        = listenFunc
    	origAccept        = poll.AcceptFunc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. src/net/main_cloexec_test.go

    func init() {
    	extraTestHookInstallers = append(extraTestHookInstallers, installAccept4TestHook)
    	extraTestHookUninstallers = append(extraTestHookUninstallers, uninstallAccept4TestHook)
    }
    
    var (
    	// Placeholders for saving original socket system calls.
    	origAccept4 = poll.Accept4Func
    )
    
    func installAccept4TestHook() {
    	poll.Accept4Func = sw.Accept4
    }
    
    func uninstallAccept4TestHook() {
    	poll.Accept4Func = origAccept4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 03 14:38:32 UTC 2022
    - 693 bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/metrics.cc

    // Counter that records how many checkpoint shard files were written during
    // saving.
    auto* num_checkpoint_shards_written = monitoring::Counter<0>::New(
        "/tensorflow/core/checkpoint/sharding/num_checkpoint_shards_written",
        "Number of checkpoint shard files written during saving.");
    
    // String gauge which describes the callback used to shard the checkpoint during
    // saving.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

        absl::string_view checkpoint_dir,
        std::optional<tensorflow::SaverDef> saver_def,
        const absl::flat_hash_map<std::string, std::string>& function_aliases,
        const std::vector<tensorflow::AssetFileDef>& asset_file_defs);
    
    // Creates a new `SaverDef` instance, which contains information regarding
    // checkpoint saving and restoring. This function returns a `SaverDef` instance
    // with four fields populated: `version`, `filename_tensor_name`,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables.cc

    // Adds the tensor that initializes the variable through the provided
    // `assign_var_op` to the `bundle_writer` for saving to checkpoint. Returns the
    // shared name of the variable if a variable is saved successfully. If the
    // variable is not saved, returns an empty string.
    absl::StatusOr<std::string> AddTensorToBundleWriter(
        mlir::TF::AssignVariableOp assign_var_op, BundleWriter& bundle_writer) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:36:55 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/EclipseJavaVersionMapper.java

     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.eclipse.model.internal;
    
    import org.gradle.api.JavaVersion;
    
    /**
     * Utility class for saving Java versions in Eclipse descriptors.
     */
    public class EclipseJavaVersionMapper {
    
        private EclipseJavaVersionMapper() {
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/runtime/sys_darwin_arm64.go

    // it as the offset value for runtime.tlsg.
    //
    // This runs at startup on g0 stack, but before g is set, so it must
    // not split stack (transitively). g is expected to be nil, so things
    // (e.g. asmcgocall) will skip saving or reading g.
    //
    //go:nosplit
    func tlsinit(tlsg *uintptr, tlsbase *[_PTHREAD_KEYS_MAX]uintptr) {
    	var k pthreadkey
    	err := g0_pthread_key_create(&k, 0)
    	if err != 0 {
    		abort()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 03:11:18 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  10. src/internal/zstd/window_test.go

    					t.Run(fmt.Sprintf("%d-%d-%d-%d", size, i, j, k), func(t *testing.T) {
    						testWindow(t, size, a, b, c)
    					})
    				}
    			}
    		}
    	}
    }
    
    // testWindow tests window by saving three sequences of bytes to it.
    // Third sequence tests read offset that can become non-zero only after second save.
    func testWindow(t *testing.T, size int, a, b, c []byte) {
    	var w window
    	w.reset(size)
    
    	w.save(a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:05:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top