Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 967 for updateIPs (1.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.h

    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTPUVariableRuntimeReformattingPass();
    
    // Creates a pass that merges device variable reads/updates into the surrounded
    // TPUExecute node. This allows the execute node to perform in-place variable
    // updates.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTPUMergeVariablesWithExecutePass();
    
    #define GEN_PASS_REGISTRATION
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/array_grad_test.cc

    }
    
    TEST_F(ArrayGradTest, ScatterNdGrad_SimpleIndexing) {
      TensorShape updates_shape({4});
      auto updates =
          Placeholder(scope_, DT_FLOAT, Placeholder::Shape(updates_shape));
      auto indices = Const(scope_, {{4}, {3}, {1}, {7}});
      TensorShape y_shape({8});
      auto y = ScatterNd(scope_, indices, updates, {8});
      RunTest(updates, updates_shape, y, y_shape);
    }
    
    TEST_F(ArrayGradTest, ScatterNdGrad_SliceIndexing) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  3. pkg/kubelet/types/pod_update.go

    )
    
    // These constants identify the sources of pods.
    const (
    	// Filesource idenitified updates from a file.
    	FileSource = "file"
    	// HTTPSource identifies updates from querying a web page.
    	HTTPSource = "http"
    	// ApiserverSource identifies updates from Kubernetes API Server.
    	ApiserverSource = "api"
    	// AllSource identifies updates from all sources.
    	AllSource = "*"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. tests/update_test.go

    	}
    	checkUpdatedAtChanged("Updates with map", user.UpdatedAt)
    	checkOtherData("Updates with map")
    
    	var result2 User
    	if err := DB.Where("id = ?", user.ID).First(&result2).Error; err != nil {
    		t.Errorf("errors happened when query: %v", err)
    	} else {
    		CheckUser(t, result2, *user)
    	}
    
    	if err := DB.Model(user).Updates(User{Age: 2}).Error; err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Dec 04 03:50:58 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/staticpod/utils_linux.go

    )
    
    type pathOwnerAndPermissionsUpdaterFunc func(path string, uid, gid int64, perms uint32) error
    type pathOwnerUpdaterFunc func(path string, uid, gid int64) error
    
    // RunComponentAsNonRoot updates the pod manifest and the hostVolume permissions to run as non root.
    func RunComponentAsNonRoot(componentName string, pod *v1.Pod, usersAndGroups *users.UsersAndGroups, cfg *kubeadmapi.ClusterConfiguration) error {
    	switch componentName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 14:41:12 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/ArtifactDescriptorUtils.java

            String checksums = toRepositoryChecksumPolicy(RepositoryPolicy.CHECKSUM_POLICY_WARN); // the default
            String updates = RepositoryPolicy.UPDATE_POLICY_DAILY;
    
            if (policy != null) {
                enabled = policy.isEnabled();
                if (policy.getUpdatePolicy() != null) {
                    updates = policy.getUpdatePolicy();
                }
                if (policy.getChecksumPolicy() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_local.txt

    ! go get -u
    ! go get -u .
    
    # 'go get -u .' within a package in the main module updates the dependencies
    # of that package.
    cp go.mod.orig go.mod
    cd uselang
    go get -u .
    cd ..
    grep 'rsc.io/quote.*v1.3.0' go.mod
    grep 'golang.org/x/text.*v0.3.0' go.mod
    cp go.mod go.mod.dotpkg
    
    # 'go get -u' with an explicit package in the main module updates the
    # dependencies of that package.
    cp go.mod.orig go.mod
    go get -u local/uselang
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storageversion/updater.go

    		return err
    	}
    	_, err = c.UpdateStatus(context.TODO(), updatedSV, metav1.UpdateOptions{})
    	return err
    }
    
    // localUpdateStorageVersion updates the input storageversion with given server storageversion info.
    // The function updates the input storageversion in place.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. cmd/erasure.go

    						Name:       bucket.Name,
    						LastUpdate: time.Time{},
    						NextCycle:  wantCycle,
    					}
    				}
    				// Collect updates.
    				updates := make(chan dataUsageEntry, 1)
    				var wg sync.WaitGroup
    				wg.Add(1)
    				go func(name string) {
    					defer wg.Done()
    					for update := range updates {
    						select {
    						case <-ctx.Done():
    						case bucketResults <- dataUsageEntryInfo{
    							Name:   name,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_overlay.txt

    cp incomplete-sum-file $WORK/overlay/overlay-sum-used-correct-sums
    ! go get -overlay overlay.json .
    stderr '^go: updates to go.sum needed, but go.sum is part of the overlay specified with -overlay$'
    cmp incomplete-sum-file $WORK/overlay/overlay-sum-used-correct-sums
    ! go mod tidy -overlay overlay.json
    stderr '^go: updates to go.sum needed, but go.sum is part of the overlay specified with -overlay$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 7.7K bytes
    - Viewed (0)
Back to top