Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 647 for assign_id (0.44 sec)

  1. tensorflow/compiler/jit/node_matchers.h

    //  - Name(string): matches the node name exactly.  We will probably need to
    //    have this take a string matcher soon in the future.
    //
    //  - Op(string): matches the op exactly.
    //
    //  - AssignedDevice(string): matches the assigned device exactly.
    //
    //  - Inputs(<ordered list>): matches the list of non-control inputs to the node
    //    exactly (i.e. does not match a suffix or a prefix) where each element
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

      Output var_handle = ops::VarHandleOp(scope.WithOpName("Var_" + id), DT_FLOAT,
                                           TensorShape({}));
      ops::AssignVariableOp assign_op(scope.WithOpName("Assignee_" + id),
                                      var_handle, value_to_write);
      return assign_op.operation.node();
    }
    
    Node* MakeWrite(const Scope& scope, const string& id) {
      return MakeWrite(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanPropertyWriter.kt

                    fieldValue
                } else {
                    getConventionValue(bean, field, fieldValue)
                        ?.takeIf { conventionValue ->
                            // Prevent convention value to be assigned to a field of incompatible type
                            // A common cause is a regular field type being promoted to a Property/Provider type.
                            conventionValue.isAssignableTo(field.type)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.status.yaml.golden

      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: Resource programmed, assigned to service(s) istio-ingressgateway.istio-system.svc.domain.suffix:34000
          and istio-ingressgateway.istio-system.svc.domain.suffix:34001
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 16 17:59:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/util.go

    		id, _ := x.(*ast.Ident)
    		return id
    	case *ast.Ident:
    		return fun
    	default:
    		return nil
    	}
    }
    
    // funcLitInScope returns a FuncLit that id is at least initially assigned to.
    //
    // TODO: This is closely tied to id.Obj which is deprecated.
    func funcLitInScope(id *ast.Ident) *ast.FuncLit {
    	// Compare to (*ast.Object).Pos().
    	if id.Obj == nil {
    		return nil
    	}
    	var rhs ast.Expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskState.java

         * @since 2.5
         */
        boolean getUpToDate();
    
        /**
         * Returns true if the execution of this task was skipped due to task inputs are empty.
         *
         * @return true if this task has no input files assigned
         * @since 3.4
         */
        boolean getNoSource();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/master-helper.sh

      [[ -n ${1:-} ]] && address="${1}"
      local internal_address=""
      [[ -n ${2:-} ]] && internal_address="${2}"
    
      write-master-env
      ensure-gci-metadata-files
      # shellcheck disable=SC2153 # 'MASTER_NAME' is assigned by upstream
      create-master-instance-internal "${MASTER_NAME}" "${address}" "${internal_address}"
    }
    
    function replicate-master-instance() {
      local existing_master_zone="${1}"
      local existing_master_name="${2}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  8. pkg/cache/ttlCache.go

    	atomic.StoreInt64(&c.baseTimeNanos, n)
    
    	// This loop is inherently racy. As we iterate through the
    	// key/value pairs, the value assigned to a particular key may
    	// change at any point. So when we find an expired entry and
    	// delete it, it's possible that a concurrent update assigned a
    	// fresh value to the key at hand, and so we'll proceed to delete
    	// the fresh key/value combo.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. .github/workflows/create_issue.js

     * limitations under the License.
     * =============================================================================
     */
    
    /** Extracts PR from commit message and creates a GitHub Issue on Rollback of PR
      Created issue is assigned to original PR owner and reviewer.
    
      @param {!object}
        github enables querying for PR and also create issue using rest endpoint
        context has the commit message details in the payload
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 18 23:04:59 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/function/function.h

        // functions, as it may sometimes remove arguments and results.
        enable_grappler = false;
      }
    
      // If true, use ServingCoreSelector to pick TPU core. Otherwise, obtain core
      // location from assigned device name.
      // Currently we don't use core_selector for training use cases.
      bool tpu_use_core_selector = false;
    
      // If true, use BundledTransferToTpuOp to transfer variables and input tensors
      // to TPU.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 04:50:20 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top