Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 223 for Migration (0.24 sec)

  1. cmd/config-migrate.go

    		// Preserve older credential if we do not have
    		// root credentials set via environment variable.
    		globalActiveCred = cfg.Credential
    	}
    
    	// Init compression config. For future migration, Compression config needs to be copied over from previous version.
    	switch cfg.Version {
    	case "29":
    		// V29 -> V30
    		cfg.Compression.Enabled = false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libexport/load.h

    // access for a SavedModel.  Higher level functionality should be layered on top
    // by other functions and classes.
    //
    // In the future, this class can also provide a mechanism for automatic version
    // migration.  This will allow the calling code to always work against the most
    // recent version of SavedModel.
    class TFPackage {
     public:
      // Load a SavedModel, parsing the associated protobuf for later access.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. cluster/gce/upgrade-aliases.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # !!!EXPERIMENTAL!!! Upgrade a K8s cluster from routes to IP aliases for
    # node connectivity on GCE. This is only for migration.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    if [[ "${KUBERNETES_PROVIDER:-gce}" != "gce" ]]; then
      echo "ERR: KUBERNETES_PROVIDER must be gce" >&2
      exit 1
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. LICENSES/vendor/github.com/coredns/corefile-migration/LICENSE

    = vendor/github.com/coredns/corefile-migration licensed under: =
    
                                     Apache License
                               Version 2.0, January 2004
                            http://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 11.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectState.java

         */
        void ensureTasksDiscovered();
    
        /**
         * Returns the mutable model for this project. This should not be used directly. This property is here to help with migration away from direct usage.
         */
        ProjectInternal getMutableModel();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 08:25:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		if tc.csiMigration {
    			// NewPV returns a GCEPersistentDisk volume, which is migrated.
    			newPv = controllervolumetesting.NewPV(tc.pvName, tc.volName)
    		} else {
    			// Otherwise use NFS, which is not subject to migration.
    			newPv = controllervolumetesting.NewNFSPV(tc.pvName, tc.volName)
    		}
    		_, err = adc.kubeClient.CoreV1().PersistentVolumes().Create(tCtx, newPv, metav1.CreateOptions{})
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. docs/tr/docs/project-generation.md

    * **JWT token** kimlik doğrulama.
    * **SQLAlchemy** models (Flask dan bağımsızdır. Celery worker'ları ile kullanılabilir).
    * Kullanıcılar için temel başlangıç ​​modeli (gerektiği gibi değiştirin ve kaldırın).
    * **Alembic** migration.
    * **CORS** (Cross Origin Resource Sharing).
    * **Celery** worker'ları ile backend içerisinden seçilen işleri çalıştırabilirsiniz.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:55:41 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	AcceptedNames CustomResourceDefinitionNames
    
    	// StoredVersions are all versions of CustomResources that were ever persisted. Tracking these
    	// versions allows a migration path for stored versions in etcd. The field is mutable
    	// so the migration controller can first finish a migration to another version (i.e.
    	// that no old objects are left in the storage), and then remove the rest of the
    	// versions from this list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.cc

      pm.addPass(createSymbolDCEPass());
      // MHLO -> StableHLO legalization.
      pm.addPass(mhlo::createHloLegalizeToStablehloPass());
    }
    
    // NOMUTANTS -- Add tests for individual passes with migration below.
    void AddCallModuleSerializationPasses(OpPassManager& pm) {
      AddShapeLegalizationPasses(pm);
      pm.addPass(createReplaceStablehloOpsInMainFunctionWithXlaCallModuleOpsPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/metrics/metrics_test.go

    		Spec: v1.PersistentVolumeSpec{
    			Capacity: v1.ResourceList{
    				v1.ResourceName(v1.ResourceStorage): resource.MustParse("5G"),
    			},
    			PersistentVolumeSource: v1.PersistentVolumeSource{
    				// Note that as GCE CSI Migration is completed, this is handled by the PD CSI plugin.
    				GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{},
    			},
    			AccessModes: []v1.PersistentVolumeAccessMode{v1.ReadWriteOnce, v1.ReadOnlyMany},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top