Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 100 for migrate (0.12 sec)

  1. buildscripts/verify-build.sh

    	# remove mc source.
    	purge "${MC_BUILD_DIR}"
    
    	shred -n 1 -s 1M - 1>"$FILE_1_MB" 2>/dev/null
    	shred -n 1 -s 65M - 1>"$FILE_65_MB" 2>/dev/null
    
    	## version is purposefully set to '3' for minio to migrate configuration file
    	echo '{"version": "3", "credential": {"accessKey": "minio", "secretKey": "minio123"}, "region": "us-east-1"}' >"$MINIO_CONFIG_DIR/config.json"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:28:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/registry/key.go

    }
    
    // ReadSubKeyNames returns the names of subkeys of key k.
    func (k Key) ReadSubKeyNames() ([]string, error) {
    	// RegEnumKeyEx must be called repeatedly and to completion.
    	// During this time, this goroutine cannot migrate away from
    	// its current thread. See #49320.
    	runtime.LockOSThread()
    	defer runtime.UnlockOSThread()
    
    	names := make([]string, 0)
    	// Registry key size limit is 255 bytes and described there:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/transformer.go

    	for i, transformer := range t.transformers {
    		if bytes.HasPrefix(data, transformer.Prefix) {
    			result, stale, err := transformer.Transformer.TransformFromStorage(ctx, data[len(transformer.Prefix):], dataCtx)
    			// To migrate away from encryption, user can specify an identity transformer higher up
    			// (in the config file) than the encryption transformer. In that scenario, the identity transformer needs to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. cluster/get-kube-binaries.sh

            echo "Bailing out." >&2
            exit 2
        esac
      fi
    
      if [ -n "${KUBERNETES_CLIENT_ARCH-}" ]; then
        CLIENT_ARCH="${KUBERNETES_CLIENT_ARCH}"
      else
        # TODO: migrate the kube::util::host_platform function out of hack/lib and
        # use it here.
        local machine
        machine="$(uname -m)"
        case "${machine}" in
          x86_64*|i?86_64*|amd64*)
            CLIENT_ARCH="amd64"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager.go

    limitations under the License.
    */
    
    package cm
    
    import (
    	"fmt"
    	"strconv"
    	"strings"
    	"time"
    
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    
    	// TODO: Migrate kubelet to either use its own internal objects or client library.
    	v1 "k8s.io/api/core/v1"
    	internalapi "k8s.io/cri-api/pkg/apis"
    	podresourcesapi "k8s.io/kubelet/pkg/apis/podresources/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. cluster/gce/gci/README.md

        mind, 69 is the first LTS image. Before that, COS only has dev, beta and stable
        images. That is why stable images are used quite frequently in current testing.
        For now, images should slowly migrate from stable to LTS if possible. For
        testing using dev or beta, we need to consider the original intention and
        keep using image in existing channel unless we understand the underlying reason.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 14:55:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

            File libDirectory = getLibDirectory().get().getAsFile();
            File runScript = getRunScriptFile().get().getAsFile();
            Collection<File> libs = getLibs().getFiles();
    
            // TODO: Migrate this to the worker API once the FileSystem and FileOperations services can be injected
            workerLeaseService.runAsIsolatedTask(() -> {
                installToDir(libDirectory, executable, libs);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. tensorflow/api_template_v1.__init__.py

      _logging.warning("""
    
      TensorFlow's `tf-nightly` package will soon be updated to TensorFlow 2.0.
    
      Please upgrade your code to TensorFlow 2.0:
        * https://www.tensorflow.org/guide/migrate
    
      Or install the latest stable TensorFlow 1.X release:
        * `pip install -U "tensorflow==1.*"`
    
      Otherwise your code may be broken by the change.
    
      """)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. src/runtime/rand.go

    	return uint32((uint64(cheaprand()) * uint64(n)) >> 32)
    }
    
    // Too much legacy code has go:linkname references
    // to runtime.fastrand and friends, so keep these around for now.
    // Code should migrate to math/rand/v2.Uint64,
    // which is just as fast, but that's only available in Go 1.22+.
    // It would be reasonable to remove these in Go 1.24.
    // Do not call these from package runtime.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. src/crypto/elliptic/elliptic.go

    // elliptic curves over prime fields.
    //
    // Direct use of this package is deprecated, beyond the [P224], [P256], [P384],
    // and [P521] values necessary to use [crypto/ecdsa]. Most other uses
    // should migrate to the more efficient and safer [crypto/ecdh], or to
    // third-party modules for lower-level functionality.
    package elliptic
    
    import (
    	"io"
    	"math/big"
    	"sync"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top