Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for ts (0.05 sec)

  1. cmd/storage-datatypes.go

    	// a deleted marker for a versioned bucket.
    	Deleted bool `msg:"del"`
    
    	// TransitionStatus is set to Pending/Complete for transitioned
    	// entries based on state of transition
    	TransitionStatus string `msg:"ts"`
    	// TransitionedObjName is the object name on the remote tier corresponding
    	// to object (version) on the source tier.
    	TransitionedObjName string `msg:"to"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    	}
    	expectedTLSContext := func(filterChain *listener.FilterChain) error {
    		tlsContext := &tls.DownstreamTlsContext{}
    		ts := filterChain.GetTransportSocket().GetTypedConfig()
    		if ts == nil {
    			return fmt.Errorf("expected transport socket for chain %v", filterChain.GetName())
    		}
    		if err := ts.UnmarshalTo(tlsContext); err != nil {
    			return err
    		}
    		commonTLSContext := tlsContext.CommonTlsContext
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    			}
    			if loggingEnabled {
    				state.logf("    piece %d -> dwreg %d", k, dwreg)
    			}
    			if len(inp.Registers) > 1 {
    				list = append(list, dwarf.DW_OP_piece)
    				ts := rtypes[k].Size()
    				list = dwarf.AppendUleb128(list, uint64(ts))
    				if padding[k] > 0 {
    					if loggingEnabled {
    						state.logf(" [pad %d bytes]", padding[k])
    					}
    					list = append(list, dwarf.DW_OP_piece)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool-decom.go

    type PoolDecommissionInfo struct {
    	StartTime   time.Time `json:"startTime" msg:"st"`
    	StartSize   int64     `json:"startSize" msg:"ss"`
    	TotalSize   int64     `json:"totalSize" msg:"ts"`
    	CurrentSize int64     `json:"currentSize" msg:"cs"`
    
    	Complete bool `json:"complete" msg:"cmp"`
    	Failed   bool `json:"failed" msg:"fl"`
    	Canceled bool `json:"canceled" msg:"cnl"`
    
    	// Internal information.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  5. src/cmd/compile/internal/ssagen/ssa.go

    		// Normally, when moving Go values of type T from one location to another,
    		// we don't need to worry about partial overlaps. The two Ts must either be
    		// in disjoint (nonoverlapping) memory or in exactly the same location.
    		// There are 2 cases where this isn't true:
    		//  1) Using unsafe you can arrange partial overlaps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    * 📝 Fix typo in `docs/es/docs/async.md`. PR [#11400](https://github.com/tiangolo/fastapi/pull/11400) by [@fabianfalon](https://github.com/fabianfalon).
    * 📝 Update OpenAPI client generation docs to use `@hey-api/openapi-ts`. PR [#11339](https://github.com/tiangolo/fastapi/pull/11339) by [@jordanshatford](https://github.com/jordanshatford).
    
    ### Translations
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    not when it is added to the graph.  In eager mode, the timestamp is computed
    when the op is eagerly executed.
      }];
    
      let arguments = (ins);
    
      let results = (outs
        TF_Float64Tensor:$ts
      );
    }
    
    def TF_TopKUniqueOp : TF_Op<"TopKUnique", [Pure]> {
      let summary = "Returns the TopK unique values in the array in sorted order.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top