Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for store1 (0.36 sec)

  1. src/cmd/compile/internal/ssa/rewritegeneric.go

    	}
    	// match: (Zero {t1} [n] p1 store:(Store {t2} (OffPtr [o2] p2) _ mem))
    	// cond: isSamePtr(p1, p2) && store.Uses == 1 && n >= o2 + t2.Size() && clobber(store)
    	// result: (Zero {t1} [n] p1 mem)
    	for {
    		n := auxIntToInt64(v.AuxInt)
    		t1 := auxToType(v.Aux)
    		p1 := v_0
    		store := v_1
    		if store.Op != OpStore {
    			break
    		}
    		t2 := auxToType(store.Aux)
    		mem := store.Args[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Res<TensorOf<[TF_Float16, TF_Float32]>, [{A 1-D float tensor of shape `[M]` representing the corresponding
    scores for each selected box, where `M <= max_output_size`.  Scores only differ
    from corresponding input scores when using Soft NMS (i.e. when
    `soft_nms_sigma>0`)}]>:$selected_scores,
        Res<TF_Int32Tensor, [{A 0-D integer tensor representing the number of valid elements in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Int64).Load", Method, 19},
    		{"(*Int64).Store", Method, 19},
    		{"(*Int64).Swap", Method, 19},
    		{"(*Pointer).CompareAndSwap", Method, 19},
    		{"(*Pointer).Load", Method, 19},
    		{"(*Pointer).Store", Method, 19},
    		{"(*Pointer).Swap", Method, 19},
    		{"(*Uint32).Add", Method, 19},
    		{"(*Uint32).CompareAndSwap", Method, 19},
    		{"(*Uint32).Load", Method, 19},
    		{"(*Uint32).Store", Method, 19},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__apps__v1_openapi.json

    \n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteARM64.go

    	v_0 := v.Args[0]
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 1
    	// result: (MOVBstore ptr val mem)
    	for {
    		t := auxToType(v.Aux)
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		if !(t.Size() == 1) {
    			break
    		}
    		v.reset(OpARM64MOVBstore)
    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  7. RELEASE.md

        arg is provided for better performance.
    *   Adds a `save_traces` argument to `model.save`/ `tf.keras.models.save_model`
        which determines whether the SavedModel format stores the Keras model/layer
        call functions. The traced functions allow Keras to revive custom models and
        layers without the original class definition, but if this isn't required the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	}
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 8 && !t.IsFloat()
    	// result: (MOVQstore ptr val mem)
    	for {
    		t := auxToType(v.Aux)
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		if !(t.Size() == 8 && !t.IsFloat()) {
    			break
    		}
    		v.reset(OpAMD64MOVQstore)
    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    	// match: (Store {t} ptr val mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.19.md

    [seccomp-docs]: https://kubernetes.io/docs/tutorials/clusters/seccomp/
    
    
    ### Production images moved to community control
    
    As of Kuberenetes v1.19, Kubernetes container images are stored on a community-controlled storage bucket, 
    located at `{asia,eu,us}.gcr.io/k8s-artifacts-prod`. The `k8s.gcr.io` vanity domain has been updated 
    to this new bucket. This brings production artifacts under community control.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
Back to top