Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for read1 (0.09 sec)

  1. RELEASE.md

            `"LOCAL"` (case insensitive). If `"AUTO"`, tf.data service runtime
            decides which workers to read from. If `"ANY"`, TF workers read from any
            tf.data service workers. If `"LOCAL"`, TF workers will only read from
            local in-processs tf.data service workers. `"AUTO"` works well for most
            cases, while users can specify other targets. For example, `"LOCAL"`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritegeneric.go

    		v2.AuxInt = int8ToAuxInt(int8(read8(scon, 0)))
    		v0.AddArg2(v1, v2)
    		v.AddArg2(v0, mem)
    		return true
    	}
    	// match: (StaticLECall {callAux} (Addr {scon} (SB)) sptr (Const64 [1]) mem)
    	// cond: isSameCall(callAux, "runtime.memequal") && symIsRO(scon)
    	// result: (MakeResult (Eq8 (Load <typ.Int8> sptr mem) (Const8 <typ.Int8> [int8(read8(scon,0))])) mem)
    	for {
    		if len(v.Args) != 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteARM64.go

    	}
    	// match: (MOVBUload [off] {sym} (SB) _)
    	// cond: symIsRO(sym)
    	// result: (MOVDconst [int64(read8(sym, int64(off)))])
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		if v_0.Op != OpSB || !(symIsRO(sym)) {
    			break
    		}
    		v.reset(OpARM64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(read8(sym, int64(off))))
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "type": "string"
              },
              "readOnly": {
                "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.",
                "type": "boolean"
              },
              "recursiveReadOnly": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        }
      }];
    }
    
    def TF_DisableCopyOnReadOp : TF_Op<"DisableCopyOnRead", []> {
      let summary = "Turns off the copy-on-read mode.";
    
      let description = [{
    Turns off the copy-on-read mode of a resource variable. If the variable is not in copy-on-read mode, this op has no effect.
      }];
    
      let arguments = (ins
        Arg<TF_ResourceTensor, [{The resource handle of the resource variable.}]>:$resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	}
    	// match: (MOVBload [off] {sym} (SB) _)
    	// cond: symIsRO(sym)
    	// result: (MOVLconst [int32(read8(sym, int64(off)))])
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		if v_0.Op != OpSB || !(symIsRO(sym)) {
    			break
    		}
    		v.reset(OpAMD64MOVLconst)
    		v.AuxInt = int32ToAuxInt(int32(read8(sym, int64(off))))
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/gateway-api-crd.yaml

                      vocabulary to describe Gateway state.
    
    
                      Known condition types are:
    
    
                      * "Accepted"
                      * "Programmed"
                      * "Ready"
                    items:
                      description: "Condition contains details for one aspect of the current
                        state of this API Resource.\n---\nThis struct is intended for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
Back to top