Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for updateIPs (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

              non_resource_results + resource_arg_to_new_output.size();
          resource_arg_to_new_output[entry.getFirst() - removed_args] =
              new_output_index;
        }
      }
    
      // Append resource updates to the return ops: now they are just forwarded
      // input resources, but will be replaced by the data value in
      // LiftArgRetResourcesForFunction().
      for (auto branch : branches) {
        auto new_retvals =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ### `-tf-tpu-merge-variables-with-execute`
    
    _Merges device variable reads and updates into TPU execute ops_
    
    This pass finds on-device resource variable reads and updates surrounding a
    `tf.TPUExecute` op and merges them into a `tf.TPUExecuteAndUpdateVariables`
    op. This allows the TPU execution to perform more efficient in-place
    variable updates.
    
    For example,
    
    ```mlir
      %0 = "tf.ReadVariableOp"(%arg0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    Other than from an PodSpec from the apiserver, there are two ways that a container
    manifest can be provided to the Kubelet.
    
    File: Path passed as a flag on the command line. Files under this path will be monitored
    periodically for updates. The monitoring period is 20s by default and is configurable
    via a flag.
    
    HTTP endpoint: HTTP endpoint passed as a parameter on the command line. This endpoint
    is checked every 20 seconds (also configurable with a flag).`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. plugin/pkg/admission/limitranger/admission_test.go

    	if err != nil {
    		t.Errorf("Expected not to call limitranger actions on pod updates")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    		return true
    	}
    	return false
    }
    
    // updateExprType updates the type of x to typ and invokes itself
    // recursively for the operands of x, depending on expression kind.
    // If typ is still an untyped and not the final type, updateExprType
    // only updates the recorded untyped type for x and possibly its
    // operands. Otherwise (i.e., typ is not an untyped type anymore,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

    possible for large applications to migrate incrementally. The Maven group ID
    is now `com.squareup.okhttp3`. For an explanation of this strategy, see Jake
    Wharton's post, [Java Interoperability Policy for Major Version
    Updates][major_versions].
    
    This release obsoletes OkHttp 2.x, and all code that uses OkHttp's
    `com.squareup.okhttp` package should upgrade to the `okhttp3` package. Libraries
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			kubeContainerID:           kubeContainerStatus.ID,
    			desiredContainerResources: desiredResources,
    			currentContainerResources: &currentResources,
    		}
    		// Order the container updates such that resource decreases are applied before increases
    		switch {
    		case specValue > statusValue: // append
    			changes.ContainersToUpdate[rName] = append(changes.ContainersToUpdate[rName], cUpdateInfo)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    		return true
    	}
    	return false
    }
    
    // updateExprType updates the type of x to typ and invokes itself
    // recursively for the operands of x, depending on expression kind.
    // If typ is still an untyped and not the final type, updateExprType
    // only updates the recorded untyped type for x and possibly its
    // operands. Otherwise (i.e., typ is not an untyped type anymore,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. plugin/pkg/admission/resourcequota/admission_test.go

    		t.Errorf("Expected error but got none")
    	}
    
    	if len(kubeClient.Actions()) != 0 {
    		t.Errorf("Expected no client action on dry-run")
    	}
    }
    
    // TestAdmitHandlesOldObjects verifies that admit handles updates correctly with old objects
    func TestAdmitHandlesOldObjects(t *testing.T) {
    	// in this scenario, the old quota was based on a service type=loadbalancer
    	resourceQuota := &corev1.ResourceQuota{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    			ResourceClaimStatuses: pod.Status.ResourceClaimStatuses,
    		}
    		p.ManagedFields = nil
    		p.Finalizers = nil
    		return p
    	}
    	return !reflect.DeepEqual(strip(oldPod), strip(newPod))
    }
    
    // Update updates a pod in the active or backoff queue if present. Otherwise, it removes
    // the item from the unschedulable queue if pod is updated in a way that it may
    // become schedulable and adds the updated one to the active queue.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top