Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 877 for tffunction (1.01 sec)

  1. docs/em/docs/advanced/settings.md

    participant code as Code
    participant function as say_hi()
    participant execute as Execute function
    
        rect rgba(0, 255, 0, .1)
            code ->> function: say_hi(name="Camila")
            function ->> execute: execute function code
            execute ->> code: return the result
        end
    
        rect rgba(0, 255, 255, .1)
            code ->> function: say_hi(name="Camila")
            function ->> code: return stored result
        end
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. tensorflow/c/eager/parallel_device/parallel_device_test.cc

      if (TF_GetCode(status) != TF_OK) return;
      TF_Operation* operations[]{placeholder_op, reduce_op};
      TF_Output y{reduce_op, 0};
      const char* output_name = "y";
      std::unique_ptr<TF_Function, decltype(&TF_DeleteFunction)> function(
          TF_GraphToFunction(
              /* fn_body */ body.get(), /* fn_name */ function_name,
              /* append_hash_to_fn_name */ 0, /* num_opers */ 2,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 08 23:47:35 UTC 2021
    - 29.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactHashMap.java

          }
        }
      }
    
      @Override
      public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
        checkNotNull(function);
        Map<K, V> delegate = delegateOrNull();
        if (delegate != null) {
          delegate.replaceAll(function);
        } else {
          for (int i = 0; i < size; i++) {
            setValue(i, function.apply(key(i), value(i)));
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  4. cluster/common.sh

    }
    
    # Generate bearer token.
    #
    # Vars set:
    #   KUBE_BEARER_TOKEN
    function gen-kube-bearertoken() {
        KUBE_BEARER_TOKEN=$(dd if=/dev/urandom bs=128 count=1 2>/dev/null | base64 | tr -d "=+/" | dd bs=32 count=1 2>/dev/null)
    }
    
    function load-or-gen-kube-basicauth() {
      if [[ -n "${KUBE_CONTEXT:-}" ]]; then
        get-kubeconfig-basicauth
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

        unique_name = absl::StrCat(func_name.str(), "_", uniquing_counter);
      }
      function.setAttr("sym_name",
                       StringAttr::get(module.getContext(), unique_name));
      return symbol_table.insert(&function);
    }
    
    // Creates the TF::PartitionedCallOp with the given arguments and output types.
    // This function call op is for invoking the TF subgraphs.
    ValueRange CreateTFPartitionedCallOp(OpBuilder& builder,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. pkg/apis/apiserverinternal/v1alpha1/zz_generated.conversion.go

    	out.ServedVersions = *(*[]string)(unsafe.Pointer(&in.ServedVersions))
    	return nil
    }
    
    // Convert_v1alpha1_ServerStorageVersion_To_apiserverinternal_ServerStorageVersion is an autogenerated conversion function.
    func Convert_v1alpha1_ServerStorageVersion_To_apiserverinternal_ServerStorageVersion(in *v1alpha1.ServerStorageVersion, out *apiserverinternal.ServerStorageVersion, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. cluster/gce/windows/common.psm1

    # $Delay can be set to a positive value to introduce some seconds of delay
    # before querying the service information, which may produce more consistent
    # results if this function is called immediately after changing a service's
    # configuration.
    function Write-VerboseServiceInfoToConsole {
      param (
        [parameter(Mandatory=$true)] [string]$Service,
        [parameter(Mandatory=$false)] [int]$Delay = 0
      )
      if ($Delay -gt 0) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	flat := map[uint64]int64{}
    	cum := map[uint64]int64{}
    
    	// Record an interest in the function corresponding to lines[index].
    	markInterest := func(addr uint64, loc *profile.Location, index int) {
    		fn := loc.Line[index]
    		if fn.Function == nil {
    			return
    		}
    		sp.interest[fn.Function.Name] = true
    		sp.interest[fn.Function.SystemName] = true
    		if _, ok := addrs[addr]; !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  9. pkg/apis/storagemigration/v1alpha1/zz_generated.conversion.go

    	out.Group = in.Group
    	out.Version = in.Version
    	out.Resource = in.Resource
    	return nil
    }
    
    // Convert_v1alpha1_GroupVersionResource_To_storagemigration_GroupVersionResource is an autogenerated conversion function.
    func Convert_v1alpha1_GroupVersionResource_To_storagemigration_GroupVersionResource(in *v1alpha1.GroupVersionResource, out *storagemigration.GroupVersionResource, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. src/runtime/symtab.go

    	// for non-Go code or fully inlined functions.
    	Func *Func
    
    	// Function is the package path-qualified function name of
    	// this call frame. If non-empty, this string uniquely
    	// identifies a single function in the program.
    	// This may be the empty string if not known.
    	// If Func is not nil then Function == Func.Name().
    	Function string
    
    	// File and Line are the file name and line number of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top