Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 140 for checkpoint2 (0.59 sec)

  1. src/cmd/compile/internal/ssa/fuse_branchredirect.go

    			}
    			pbranch := positive
    			if pk.i == 1 {
    				pbranch = negative
    			}
    			ft.checkpoint()
    			// Assume branch p->b is taken.
    			addBranchRestrictions(ft, p, pbranch)
    			// Check if any outgoing branch is unreachable based on the above condition.
    			parent := b
    			for j, bbranch := range [...]branch{positive, negative} {
    				ft.checkpoint()
    				// Try to update relationship b->child, and check if the contradiction occurs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/types.go

    	GetAllocatableDevices() ResourceDeviceInstances
    
    	// ShouldResetExtendedResourceCapacity returns whether the extended resources should be reset or not,
    	// depending on the checkpoint file availability. Absence of the checkpoint file strongly indicates
    	// the node has been recreated.
    	ShouldResetExtendedResourceCapacity() bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/exported_model.proto

      string init_node_name = 2;
    
      // Path to the directory where checkpoint files are saved. This directoy is
      // not expected to be persistent (usually a temporary directory). When
      // fetching the restore op (see `restore_node_name`), this value is provided
      // to the "file_prefix" tensor to identify the checkpoint directory.
      string checkpoint_dir = 5;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 06:12:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/loader.cc

      // Find path to variables to be restored in export directory.
      const string variables_directory =
          io::JoinPath(export_dir, kSavedModelVariablesDirectory);
      // Check for saver checkpoints in v2 format. Models exported in the checkpoint
      // v2 format will have a variables.index file. The corresponding
      // variables are stored in the variables.data-?????-of-????? files.
      const string variables_index_path = io::JoinPath(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 04:36:00 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. pkg/kubelet/server/auth_test.go

    	testPaths := map[string]string{
    		"/attach/{podNamespace}/{podID}/{containerName}":       "proxy",
    		"/attach/{podNamespace}/{podID}/{uid}/{containerName}": "proxy",
    		"/checkpoint/{podNamespace}/{podID}/{containerName}":   "checkpoint",
    		"/configz": "proxy",
    		"/containerLogs/{podNamespace}/{podID}/{containerName}": "proxy",
    		"/debug/flags/v":                                     "proxy",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 18:09:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/manager.go

    			claimInfo.addPodReference(pod.UID)
    
    			// Checkpoint to ensure all claims we plan to prepare are tracked.
    			// If something goes wrong and the newly referenced pod gets
    			// deleted without a successful prepare call, we will catch
    			// that in the reconcile loop and take the appropriate action.
    			if err := m.cache.syncToCheckpoint(); err != nil {
    				return fmt.Errorf("failed to checkpoint claimInfo state: %w", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pkg/kubelet/config/defaults.go

    	KubeletPluginsDirSELinuxLabel            = "system_u:object_r:container_file_t:s0"
    	KubeletContainersSharedSELinuxLabel      = "system_u:object_r:container_file_t:s0"
    	DefaultKubeletCheckpointsDirName         = "checkpoints"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 00:57:47 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables_test.cc

          SaveVariablesToCheckpoint(*checkpoint_prefix, *module_op_ref);
      EXPECT_TRUE(variable_shared_names.ok());
      EXPECT_THAT(*variable_shared_names, IsEmpty());
    
      // Verify that the checkpoint doesn't exist.
      BundleReader bundle_reader(env_, *checkpoint_prefix);
      EXPECT_THAT(bundle_reader.status(), Not(IsOk()));
    }
    
    TEST_F(SaveVariablesToCheckpointTest,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/testing/DaemonsStateCheckpoint.groovy

     * limitations under the License.
     */
    package org.gradle.launcher.daemon.testing
    
    /**
     * Represents a particular expected registry state, and optionally a series of
     * actions to perform when the checkpoint is reached.
     */
    class DaemonsStateCheckpoint {
    
        final DaemonsState expectedState
        private final Runnable[] actions
    
        DaemonsStateCheckpoint(DaemonsState expectedState, Runnable... actions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/ops/restore_ops.cc

      AbstractTensorPtr tensor(ctx->CreateStringScalar(s));
      if (tensor.get() == nullptr) {
        return errors::Internal(
            "Failed to create scalar string tensor for checkpoint restore");
      }
    
      out->reset(ctx->CreateLocalHandle(tensor.get()));
      return Status();
    }
    
    // Creates a Rank 1 string tensorhandle containing a single string `s`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 4.5K bytes
    - Viewed (0)
Back to top