Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for Removes (0.23 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          wasn't the "SomeOpThatUsesArg0(%arg0)" line.
      }];
      let constructor = "TF::CreateRemoveUnusedArgumentsPass()";
    }
    
    def RemoveUnusedWhileResultsPass : Pass<"tf-remove-unused-while-results", "mlir::func::FuncOp"> {
      let summary = "Removes unused results from tf.WhileRegion ops";
       let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

    # removes component if it is disabled.
    function update-prometheus-to-sd-parameters {
      if [[ "${ENABLE_PROMETHEUS_TO_SD:-}" == "true" ]]; then
        sed -i -e "s@{{ *prometheus_to_sd_prefix *}}@${PROMETHEUS_TO_SD_PREFIX}@g" "$1"
        sed -i -e "s@{{ *prometheus_to_sd_endpoint *}}@${PROMETHEUS_TO_SD_ENDPOINT}@g" "$1"
      else
        # Removes all lines between two patterns (throws away prometheus-to-sd)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    // The -x flag causes clean to print remove commands as it executes them.
    //
    // The -cache flag causes clean to remove the entire go build cache.
    //
    // The -testcache flag causes clean to expire all test results in the
    // go build cache.
    //
    // The -modcache flag causes clean to remove the entire module
    // download cache, including unpacked source code of versioned
    // dependencies.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    		if d < minInterval {
    			d = minInterval
    		}
    
    		if !t.Stop() {
    			select {
    			case <-t.C:
    			default:
    			}
    		}
    		t.Reset(d)
    	}
    }
    
    // connectionCleanerRunLocked removes connections that should be closed from
    // freeConn and returns them along side an updated duration to the next check
    // if a quicker check is required to ensure connections are checked appropriately.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      echo
    
    }
    
    # Removes master replica from etcd cluster.
    #
    # Assumed vars:
    #   REPLICA_NAME
    #   PROJECT
    #   EXISTING_MASTER_NAME
    #   EXISTING_MASTER_ZONE
    #
    # $1: etcd client port
    # $2: whether etcd communication should use mtls
    # returns the result of ssh command which removes replica
    function remove-replica-from-etcd() {
      local -r port="${1}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // topological sorting impossible. We need to remove these edges from the
      // input graph to infer shapes and construct a Function. For each
      // "NextIteration" node, there are two operations, "NextIteration.source"
      // and "NextIteration.sink" are added to the MLIR module.
      using BackEdge = BackEdgeHelper::BackEdge;
    
      // Removes backedges from the input graph. The removed edges are added back to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	klog.V(3).InfoS("Clean up probes for terminated pods")
    	kl.probeManager.CleanupPods(possiblyRunningPods)
    
    	// Remove orphaned pod statuses not in the total list of known config pods
    	klog.V(3).InfoS("Clean up orphaned pod statuses")
    	kl.removeOrphanedPodStatuses(allPods, mirrorPods)
    
    	// Remove orphaned pod user namespace allocations (if any).
    	klog.V(3).InfoS("Clean up orphaned pod user namespace allocations")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

              entry.getHash(),
              entry.getValueReference().get(),
              entry.getValueReference().getWeight(),
              RemovalCause.COLLECTED);
          writeQueue.remove(entry);
          accessQueue.remove(entry);
        }
    
        /** Removes an entry whose key has been garbage collected. */
        @CanIgnoreReturnValue
        boolean reclaimKey(ReferenceEntry<K, V> entry, int hash) {
          lock();
          try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

              entry.getHash(),
              entry.getValueReference().get(),
              entry.getValueReference().getWeight(),
              RemovalCause.COLLECTED);
          writeQueue.remove(entry);
          accessQueue.remove(entry);
        }
    
        /** Removes an entry whose key has been garbage collected. */
        @CanIgnoreReturnValue
        boolean reclaimKey(ReferenceEntry<K, V> entry, int hash) {
          lock();
          try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.5.md

    * Removed the deprecated kubelet --configure-cbr0 flag, and with that the "classic" networking mode as well ([#34906](https://github.com/kubernetes/kubernetes/pull/34906), [@luxas](https://github.com/luxas))
    * New client-go structure ([#34989](https://github.com/kubernetes/kubernetes/pull/34989), [@caesarxuchao](https://github.com/caesarxuchao))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top