Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for migrate (0.14 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

    /**
     * An immutable set of directory trees. Intended to be use to efficiently determine whether a particular file is contained in a set of directories or not.
     */
    // TODO Make this into an interface once we can migrate to Java 8+.
    public abstract class FileHierarchySet {
        /**
         * Checks if the given file is contained in the set.
         *
         * A file is contained in the set if it or one of its ancestors has
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(PostQuantizeRemoveQDQPass)
    
      void runOnOperation() override;
    };
    
    // TODO(fengliuai): migrate to use modify_io_nodes pass.
    void RemoveQuantizationAdaptorOps(func::FuncOp func) {
      mlir::OpBuilder builder(func.getBody());
      auto& bb = func.front();
      auto loc = func.getLoc();
    
      int num_args = bb.getNumArguments();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/schema-extra-example.md

        Before that, it only supported the keyword `example` with a single example. That is still supported by OpenAPI 3.1.0, but is deprecated and is not part of the JSON Schema standard. So you are encouraged to migrate `example` to `examples`. 🤓
    
        You can read more at the end of this page.
    
    ## `Field` additional arguments
    
    When using `Field()` with Pydantic models, you can also declare additional `examples`:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. internal/event/target/nats.go

    }
    
    func (target *NATSTarget) initNATS() error {
    	args := target.args
    
    	var err error
    	if args.Streaming.Enable {
    		target.loggerOnce(context.Background(), errors.New("NATS Streaming is deprecated please migrate to JetStream"), target.ID().String())
    		var stanConn stan.Conn
    		stanConn, err = args.connectStan()
    		target.stanConn = stanConn
    	} else {
    		var natsConn *nats.Conn
    		natsConn, err = args.connectNats()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. build/dependencies.yaml

      - name: "etcd-image"
        version: 3.5.14
        refPaths:
        - path: cluster/images/etcd/Makefile
          match: BUNDLED_ETCD_VERSIONS\?|LATEST_ETCD_VERSION\?
        - path: cluster/images/etcd/migrate/options.go
    
      - name: "node-problem-detector"
        version: 0.8.19
        refPaths:
        - path: test/e2e_node/image_list.go
          match: const defaultImage
        - path: test/kubemark/resources/hollow-node_template.yaml
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. internal/logger/target/http/http.go

    			if time.Since(h.lastStarted).Seconds() > 30 {
    				return
    			}
    		}
    
    	}
    }
    
    // CreateOrAdjustGlobalBuffer will create or adjust the global log entry buffers
    // which are used to migrate log entries between old and new targets.
    func CreateOrAdjustGlobalBuffer(currentTgt *Target, newTgt *Target) {
    	logChLock.Lock()
    	defer logChLock.Unlock()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/security/oauth2-jwt.md

        So, you would be able to, for example, share the same data from a Django application in a database with a FastAPI application. Or gradually migrate a Django application using the same database.
    
        And your users would be able to login from your Django app or from your **FastAPI** app, at the same time.
    
    ## Hash and verify the passwords
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    ====
    
    [[migrate_single_lockfile]]
    === Migrating from the lockfile per configuration format
    
    If your project uses the legacy lock file format of a file per locked configuration, follow these instructions to migrate to the new format:
    
    * Follow the documentation for <<#lock_all_configurations_in_one_build_execution, writing>> or <<#selectively_updating_lock_state_entries, updating>> dependency lock state.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    So to track these inputs we had to find a way to track when they are accessed by intercepting API calls reading them. 
    And that is why we started instrumenting bytecode.
    
    Later, with a requirement to migrate Gradle core APIs to lazy properties, we were looking at how we could make old plugins compatible with new Gradle core APIs. 
    We decided that upgrading old compiled bytecode would work well. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux_test.go

    		pods                             []*v1.Pod
    	}
    	tests := []struct {
    		name string
    		args args
    		want []podShutdownGroup
    	}{
    		{
    			name: "migrate config",
    			args: args{
    				shutdownGracePeriodByPodPriority: migrateConfig(300*time.Second /* shutdownGracePeriodRequested */, 120*time.Second /* shutdownGracePeriodCriticalPods */),
    				pods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top