Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for rend (0.05 sec)

  1. CHANGELOG/CHANGELOG-1.4.md

    * portfordwardtester: avoid data loss during send+close+exit ([#37103](https://github.com/kubernetes/kubernetes/pull/37103), [@sttts](https://github.com/sttts))
    * Wait for the port to be ready before starting ([#38260](https://github.com/kubernetes/kubernetes/pull/38260), [@fraenkel](https://github.com/fraenkel))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // reit : 2014-09-04 National Association of Real Estate Investment Trusts, Inc.
    reit
    
    // reliance : 2015-04-02 Reliance Industries Limited
    reliance
    
    // ren : 2013-12-12 ZDNS International Limited
    ren
    
    // rent : 2014-12-04 XYZ.COM LLC
    rent
    
    // rentals : 2013-12-05 Binky Moon, LLC
    rentals
    
    // repair : 2013-11-07 Binky Moon, LLC
    repair
    
    // report : 2013-12-05 Binky Moon, LLC
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    					ctx.t.Errorf("expected %d nodes, got %d", len(s.graphNodes), l)
    				}
    				for _, n := range s.graphNodes {
    					graphNode, ok := ctx.gc.dependencyGraphBuilder.uidToNode.Read(n.identity.UID)
    					if !ok {
    						ctx.t.Errorf("%s: no node in graph with uid=%s", n.identity.UID, n.identity.UID)
    						continue
    					}
    					if graphNode.identity != n.identity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    }
    
    // Put1 appends one byte to the end of the buffer.
    func (ab *AsmBuf) Put1(x byte) {
    	ab.buf[ab.off] = x
    	ab.off++
    }
    
    // Put2 appends two bytes to the end of the buffer.
    func (ab *AsmBuf) Put2(x, y byte) {
    	ab.buf[ab.off+0] = x
    	ab.buf[ab.off+1] = y
    	ab.off += 2
    }
    
    // Put3 appends three bytes to the end of the buffer.
    func (ab *AsmBuf) Put3(x, y, z byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

    * Rename ScheduledJobs to CronJobs. ([#36021](https://github.com/kubernetes/kubernetes/pull/36021), [@soltysh](https://github.com/soltysh))
    * Read the federation controller manager kubeconfig from a filesystem path ([#30601](https://github.com/kubernetes/kubernetes/pull/30601), [@madhusudancs](https://github.com/madhusudancs))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    		gp1 := sched.runq.pop()
    		runqput(pp, gp1, false)
    	}
    	return gp
    }
    
    // pMask is an atomic bitstring with one bit per P.
    type pMask []uint32
    
    // read returns true if P id's bit is set.
    func (p pMask) read(id uint32) bool {
    	word := id / 32
    	mask := uint32(1) << (id % 32)
    	return (atomic.Load(&p[word]) & mask) != 0
    }
    
    // set sets P id's bit.
    func (p pMask) set(id int32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      );
    
      let results = (outs);
    }
    
    def TFL_ReadVariableOp : TFL_Op<"read_variable", []> {
      let summary = "Reads variable value.";
    
      let description = [{
    Read variable data identified by 'resource_id'.
      }];
    
      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)
Back to top