Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for someConf (0.14 sec)

  1. README.md

    ---
    
    "_Honestly, what you've built looks super solid and polished. In many ways, it's what I wanted **Hug** to be - it's really inspiring to see someone build that._"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. docs/fa/docs/index.md

    ---
    
    <div style="text-align: left; direction: ltr;">"Honestly, what you've built looks super solid and polished. In many ways, it's what I wanted <strong>Hug</strong> to be - it's really inspiring to see someone build that."</div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    //     If we chose to allow any unknown fields, then we would never be able to remove fields we added, as
    //     we cannot tell if we created it or someone else did. SSA fixes these issues
    //   - SSA using client-go Apply libraries is almost a good choice, but most third-party clients (Istio, MCS, and gateway-api)
    //     do not provide these libraries.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        node.thread = null; // mark as 'deleted'
        restart:
        while (true) {
          Waiter pred = null;
          Waiter curr = waiters;
          if (curr == Waiter.TOMBSTONE) {
            return; // give up if someone is calling complete
          }
          Waiter succ;
          while (curr != null) {
            succ = curr.next;
            if (curr.thread != null) { // we aren't unlinking this node, update pred.
              pred = curr;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  5. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        node.thread = null; // mark as 'deleted'
        restart:
        while (true) {
          Waiter pred = null;
          Waiter curr = waiters;
          if (curr == Waiter.TOMBSTONE) {
            return; // give up if someone is calling complete
          }
          Waiter succ;
          while (curr != null) {
            succ = curr.next;
            if (curr.thread != null) { // we aren't unlinking this node, update pred.
              pred = curr;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  6. src/encoding/gob/type.go

    	if id < 0 || int(id) >= len(builtinIdToTypeSlice) {
    		return nil
    	}
    	return builtinIdToTypeSlice[id]
    }
    
    func setTypeId(typ gobType) {
    	// When building recursive types, someone may get there before us.
    	if typ.id() != 0 {
    		return
    	}
    	nextId := typeId(len(idToTypeSlice))
    	typ.setId(nextId)
    	idToTypeSlice = append(idToTypeSlice, typ)
    }
    
    func (t typeId) gobType() gobType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    			// Double check basic conditions of zeroedBase.
    			if zeroedBase <= arenaLimit && zeroedBase > arenaBase {
    				// The zeroedBase moved into the space we were trying to
    				// claim. That's very bad, and indicates someone allocated
    				// the same region we did.
    				throw("potentially overlapping in-use allocations detected")
    			}
    		}
    
    		// Move base forward and subtract from npage to move into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/constants/constants.go

    	// KubeProxyClusterRoleName sets the name for the kube-proxy ClusterRole
    	KubeProxyClusterRoleName = "system:node-proxier"
    	// NodeBootstrapperClusterRoleName defines the name of the auto-bootstrapped ClusterRole for letting someone post a CSR
    	NodeBootstrapperClusterRoleName = "system:node-bootstrapper"
    	// CSRAutoApprovalClusterRoleName defines the name of the auto-bootstrapped ClusterRole for making the csrapprover controller auto-approve the CSR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    	start, startOK := encodeValue(state.ctxt, pending.startBlock, pending.startValue)
    	end, endOK := encodeValue(state.ctxt, endBlock, endValue)
    	if !startOK || !endOK {
    		// If someone writes a function that uses >65K values,
    		// they get incomplete debug info on 32-bit platforms.
    		return
    	}
    	if start == end {
    		if state.loggingLevel > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	// Patch tries to change to 30.
    	setTcPod(tc.changedPod, name, namespace, uid, "1", examplev1.SchemeGroupVersion.String(), &thirty, "")
    
    	// Someone else already changed it to 30.
    	// This should be fine since it's not a "meaningful conflict".
    	// Previously this was detected as a meaningful conflict because int64(30) != float64(30).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top