Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 431 for assign_id (0.27 sec)

  1. pilot/pkg/config/kube/gateway/testdata/zero.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:80
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/closure.go

    	cfn := typecheck.ConvNop(addr, clo.Type())
    
    	// non-escaping temp to use, if any.
    	if x := clo.Prealloc; x != nil {
    		if !types.Identical(typ, x.Type()) {
    			panic("closure type does not match order's assigned type")
    		}
    		addr.Prealloc = x
    		clo.Prealloc = nil
    	}
    
    	return walkExpr(cfn, init)
    }
    
    // closureArgs returns a slice of expressions that can be used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/helper.go

    	return fmt.Errorf("couldn't assign/convert %v to %v", srcValue.Type(), field.Type())
    }
    
    // Field puts the value of fieldName, which must be a member of v, into dest,
    // which must be a variable to which this field's value can be assigned.
    func Field(v reflect.Value, fieldName string, dest interface{}) error {
    	field := v.FieldByName(fieldName)
    	if !field.IsValid() {
    		return fmt.Errorf("couldn't find %v field in %T", fieldName, v.Interface())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 22:54:34 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/doc.go

    // directions should prefix their messages with this channel byte. Used for remote execution,
    // the channel numbers are by convention defined to match the POSIX file-descriptors assigned
    // to STDIN, STDOUT, and STDERR (0, 1, and 2). No other conversion is performed on the raw
    // subprotocol - writes are sent as they are received by the server.
    //
    // Example client session:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top