Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,035 for updateIPs (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionDescriptorInternal.java

    import org.gradle.api.Describable;
    import org.gradle.api.artifacts.result.ComponentSelectionDescriptor;
    
    public interface ComponentSelectionDescriptorInternal extends ComponentSelectionDescriptor {
        /**
         * Updates the description of this component selection descriptor.
         *
         * @param description a new textual description of the descriptor.
         *
         * @return this descriptor
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. guava/src/com/google/common/cache/LongAdder.java

      public void decrement() {
        add(-1L);
      }
    
      /**
       * Returns the current sum. The returned value is NOT an atomic snapshot; invocation in
       * the absence of concurrent updates returns an accurate result, but concurrent updates that occur
       * while the sum is being calculated might not be incorporated.
       *
       * @return the sum
       */
      @Override
      public long sum() {
        long sum = base;
        Cell[] as = cells;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/controller/endpoint/config/types.go

    	// that will be done concurrently. Larger number = faster endpoint updating,
    	// but more CPU (and network) load.
    	ConcurrentEndpointSyncs int32
    
    	// EndpointUpdatesBatchPeriod can be used to batch endpoint updates.
    	// All updates of endpoint triggered by pod change will be delayed by up to
    	// 'EndpointUpdatesBatchPeriod'. If other pods in the same endpoint change
    	// in that period, they will be batched to a single endpoint update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 24 09:36:53 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top