Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for SWAP (0.34 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "MOVBEQload", argLength: 2, reg: gpload, asm: "MOVBEQ", aux: "SymOff", typ: "UInt64", faultOnNilArg0: true, symEffect: "Read"}, // load and swap 8 bytes from arg0+auxint+aux. arg1=mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. src/cmd/internal/obj/s390x/asmz.go

    	op_CDS     uint32 = 0xBB00 // FORMAT_RS1        COMPARE DOUBLE AND SWAP (32)
    	op_CDSG    uint32 = 0xEB3E // FORMAT_RSY1       COMPARE DOUBLE AND SWAP (64)
    	op_CDSTR   uint32 = 0xB3F3 // FORMAT_RRE        CONVERT FROM SIGNED PACKED (64 to long DFP)
    	op_CDSY    uint32 = 0xEB31 // FORMAT_RSY1       COMPARE DOUBLE AND SWAP (32)
    	op_CDTR    uint32 = 0xB3E4 // FORMAT_RRE        COMPARE (long DFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                                    graph_out.get(), flr, lib_def.get(), &modified);
      if (!s.ok()) return s;
    
      GraphDef graphdef_out;
      graph_out->ToGraphDef(&graphdef_out);
      graphdef->Swap(&graphdef_out);
    
      *library = lib_def->ToProto();
      // Remove "_xla_inferred_shapes" attr. They are added by
      // `PerformStaticShapeInferenceBeforeEncapsulation`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    // do any scheduling that requires an m.
    //
    // In order to avoid needing heavy lifting here, we adopt
    // the following strategy: there is a stack of available m's
    // that can be stolen. Using compare-and-swap
    // to pop from the stack has ABA races, so we simulate
    // a lock by doing an exchange (via Casuintptr) to steal the stack
    // head and replace the top pointer with MLOCKED (1).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    	if err != nil {
    		return false
    	}
    	return s.IsDir()
    }
    
    // Sort pods by UID.
    type podsByUID []*v1.Pod
    
    func (p podsByUID) Len() int           { return len(p) }
    func (p podsByUID) Swap(i, j int)      { p[i], p[j] = p[j], p[i] }
    func (p podsByUID) Less(i, j int) bool { return p[i].UID < p[j].UID }
    
    // createAndStartFakeRemoteRuntime creates and starts fakeremote.RemoteRuntime.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    type SortableResourceNames []api.ResourceName
    
    func (list SortableResourceNames) Len() int {
    	return len(list)
    }
    
    func (list SortableResourceNames) Swap(i, j int) {
    	list[i], list[j] = list[j], list[i]
    }
    
    func (list SortableResourceNames) Less(i, j int) bool {
    	return list[i] < list[j]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. src/net/http/server.go

    	cr.conn.cancelCtx()
    	cr.closeNotify()
    }
    
    // may be called from multiple goroutines.
    func (cr *connReader) closeNotify() {
    	res := cr.conn.curReq.Load()
    	if res != nil && !res.didCloseNotify.Swap(true) {
    		res.closeNotifyCh <- true
    	}
    }
    
    func (cr *connReader) Read(p []byte) (n int, err error) {
    	cr.lock()
    	if cr.inRead {
    		cr.unlock()
    		if cr.conn.hijacked() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    	taints = []v1.Taint{{Key: v1.TaintNodeUnschedulable, Value: "", Effect: v1.TaintEffectNoSchedule}}
    )
    
    func (p *criticalPaths) sort() {
    	if p[0].MatchNum == p[1].MatchNum && p[0].TopologyValue > p[1].TopologyValue {
    		// Swap TopologyValue to make them sorted alphabetically.
    		p[0].TopologyValue, p[1].TopologyValue = p[1].TopologyValue, p[0].TopologyValue
    	}
    }
    
    func TestPreFilterState(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  10. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
Back to top