Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for migrate (0.29 sec)

  1. pkg/volume/csimigration/plugin_manager.go

    // that support a spec, map intree <=> migrated CSI plugin names, etc
    type PluginNameMapper interface {
    	GetInTreePluginNameFromSpec(pv *v1.PersistentVolume, vol *v1.Volume) (string, error)
    	GetCSINameFromInTreeName(pluginName string) (string, error)
    }
    
    // PluginManager keeps track of migrated state of in-tree plugins
    type PluginManager struct {
    	PluginNameMapper
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. hack/logcheck.conf

    #    _output/local/bin/golangci-lint cache clean
    
    # At this point we don't enforce the usage structured logging calls except in
    # those packages that were migrated. This disables the check for other files.
    -structured .*
    
    # Now enable it again for migrated packages.
    structured k8s.io/kubernetes/cmd/kubelet/.*
    structured k8s.io/kubernetes/pkg/kubelet/.*
    structured k8s.io/kubernetes/pkg/proxy/.*
    structured k8s.io/kms/.*
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. architecture/standards/0002-avoid-using-java-serialization.md

    ACCEPTED
    
    ## Consequences
    
    * The configuration cache serialization infrastructure should be used for all serialization.
    * Existing usages of Serializer outside of this infrastructure should be migrated to use it.
    * Existing usages of Java serialization should be migrated to use it.
    * It is ok for Serializer to be used as a replacement for Java serialization as a migration step.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. hack/golangci-hints.yaml

              
              # At this point we don't enforce the usage structured logging calls except in
              # those packages that were migrated. This disables the check for other files.
              -structured .*
              
              # Now enable it again for migrated packages.
              structured k8s.io/kubernetes/cmd/kubelet/.*
              structured k8s.io/kubernetes/pkg/kubelet/.*
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. hack/golangci-strict.yaml

              
              # At this point we don't enforce the usage structured logging calls except in
              # those packages that were migrated. This disables the check for other files.
              -structured .*
              
              # Now enable it again for migrated packages.
              structured k8s.io/kubernetes/cmd/kubelet/.*
              structured k8s.io/kubernetes/pkg/kubelet/.*
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. interfaces.go

    import (
    	"context"
    	"database/sql"
    
    	"gorm.io/gorm/clause"
    	"gorm.io/gorm/schema"
    )
    
    // Dialector GORM database dialector
    type Dialector interface {
    	Name() string
    	Initialize(*DB) error
    	Migrator(db *DB) Migrator
    	DataTypeOf(*schema.Field) string
    	DefaultValueOf(*schema.Field) clause.Expression
    	BindVarTo(writer clause.Writer, stmt *Statement, v interface{})
    	QuoteTo(clause.Writer, string)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Aug 19 13:33:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentGraphResolveMetadata.java

     * they do not run user code or execute network requests. This is not currently the case. Instead, that logic should
     * be migrated to {@link ExternalComponentGraphResolveState}</p>
     */
    public interface ExternalComponentGraphResolveMetadata extends ComponentGraphResolveMetadata {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/v1/defaults.go

    	}
    
    	if len(obj.LeaderElection.ResourceLock) == 0 {
    		// Use lease-based leader election to reduce cost.
    		// We migrated for EndpointsLease lock in 1.17 and starting in 1.20 we
    		// migrated to Lease lock.
    		obj.LeaderElection.ResourceLock = "leases"
    	}
    	if len(obj.LeaderElection.ResourceNamespace) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.h

    #include "tensorflow/lite/toco/toco_flags.pb.h"
    
    namespace tflite {
    // Options for exporting to Flatbuffer.
    struct FlatbufferExportOptions {
      // TocoFlags proto. The following fields are migrated.
      // bool emit_builtin_tflite_ops  -> !toco_flags.force_select_tf_ops()
      // bool emit_select_tf_ops       -> toco_flags.enable_select_tf_ops()
      // bool emit_custom_ops          -> toco_flags.allow_custom_ops()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 02:51:43 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleProjectBuilderOptions.java

            // Gradle should support this option at least until an alternative solution exists and Android Studio has migrated to it.
            String builderOptions = System.getProperty("org.gradle.internal.GradleProjectBuilderOptions", "");
            boolean avoidTaskRealization = "omit_all_tasks".equals(builderOptions);
            return !avoidTaskRealization;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 03 17:25:26 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top