Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for dependents (0.36 sec)

  1. src/reflect/value.go

    	// and each iteration makes its own copy of the value c.
    	var runcases []runtimeSelect
    	if len(cases) > 4 {
    		// Slice is heap allocated due to runtime dependent capacity.
    		runcases = make([]runtimeSelect, len(cases))
    	} else {
    		// Slice can be stack allocated due to constant capacity.
    		runcases = make([]runtimeSelect, len(cases), 4)
    	}
    
    	haveDefault := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let hasOptions = 1;
    }
    
    def TFL_AssignVariableOp : TFL_Op<"assign_variable", []> {
      let summary = "Assigns a new value to a variable.";
    
      let description = [{
    Any ReadVariableOp with a control dependency on this op is guaranteed to return
    this value or a subsequent newer value of the variable.
      }];
    
      let arguments = (ins
        TFL_ResourceTensor:$resource_id,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    // connections. It's somewhat harmless but enough tests assume it's
    // not true in order to test other things that it's worth fixing.
    // Plus it's nice to be consistent and not have timing-dependent
    // behavior.
    func TestTransportReuseConnEmptyResponseBody(t *testing.T) {
    	run(t, testTransportReuseConnEmptyResponseBody)
    }
    func testTransportReuseConnEmptyResponseBody(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

        },
        "io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference": {
          "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.",
          "properties": {
            "apiVersion": {
              "description": "API version of the referent.",
              "type": "string"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    }
    
    // Maximum PC-relative displacement.
    // The actual limit is ±2²⁰, but we are conservative
    // to avoid needing to recompute the literal pool flush points
    // as span-dependent jumps are enlarged.
    const maxPCDisp = 512 * 1024
    
    // ispcdisp reports whether v is a valid PC-relative displacement.
    func ispcdisp(v int32) bool {
    	return -maxPCDisp < v && v < maxPCDisp && v&3 == 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top