Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 100 for recycler (0.29 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

        return connections.count {
          it.withLock { it.calls.isEmpty() }
        }
      }
    
      fun connectionCount(): Int {
        return connections.size
      }
    
      /**
       * Attempts to acquire a recycled connection to [address] for [connectionUser]. Returns the connection if it
       * was acquired, or null if no connection was acquired. The acquired connection will also be
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. src/runtime/mspanset.go

    	// Free spanSetBlocks are managed via a lock-free stack.
    	lfnode
    
    	// popped is the number of pop operations that have occurred on
    	// this block. This number is used to help determine when a block
    	// may be safely recycled.
    	popped atomic.Uint32
    
    	// spans is the set of spans in this block.
    	spans [spanSetBlockEntries]atomicMSpanPointer
    }
    
    // push adds span s to buffer b. push is safe to call concurrently
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller_test.go

    			expVolumeFinalizers: nil,
    			expModified:         false,
    		},
    		{
    			// When ReclaimPolicy is Recycle ensure that in-tree pv deletion protection finalizer is not added.
    			name:                "13-13 migration is disabled, volume has no finalizers, reclaimPolicy is Recycle",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/html.go

    	if _, err := io.WriteString(w.w, s); err != nil {
    		w.Fatalf("%v", err)
    	}
    }
    
    func (v *Value) HTML() string {
    	// TODO: Using the value ID as the class ignores the fact
    	// that value IDs get recycled and that some values
    	// are transmuted into other values.
    	s := v.String()
    	return fmt.Sprintf("<span class=\"%s ssa-value\">%s</span>", s, s)
    }
    
    func (v *Value) LongHTML() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/ipam/range_allocator_test.go

    			cidrsToRelease: [][]string{
    				{"127.123.234.4/30"},
    			},
    			expectedAllocatedCIDRSecondRound: map[int]string{
    				0: "127.123.234.4/30",
    			},
    		},
    		{
    			description: "Correctly recycle CIDR",
    			fakeNodeHandler: &testutil.FakeNodeHandler{
    				Existing: []*v1.Node{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    							Name: "node0",
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. src/runtime/arena_test.go

    	// we want.
    	a := NewUserArena()
    	for i := 0; i < int(UserArenaChunkBytes/goarch.PtrSize*3); i++ {
    		var x any
    		x = (*smallPointer)(nil)
    		a.New(&x)
    	}
    	a.Free()
    
    	// Recycle the arena chunks.
    	GC()
    	GC()
    
    	a = NewUserArena()
    	for i := 0; i < int(UserArenaChunkBytes/goarch.PtrSize*2); i++ {
    		var x any
    		x = (*smallScalar)(nil)
    		a.New(&x)
    		v := x.(*smallScalar)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. ci/devinfra/docker_windows/Dockerfile

    # Installing pip packages
    RUN pip install --upgrade setuptools; \
        pip install altgraph appdirs cachetools certifi cffi chardet colorama \
        cryptography cycler Cython decorator google-api-python-client \
        google-auth google-auth-httplib2 grpcio httplib2 idna ipython-genutils \
        kiwisolver macholib matplotlib nose numpy packaging pandas pickleshare pip \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. src/runtime/extern.go

    	state and thus may hide problems.
    
    	efence: setting efence=1 causes the allocator to run in a mode
    	where each object is allocated on a unique page and addresses are
    	never recycled.
    
    	gccheckmark: setting gccheckmark=1 enables verification of the
    	garbage collector's concurrent mark phase by performing a
    	second mark pass while the world is stopped.  If the second
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/riscv64.s

    	AMOMINW		X5, (X6), X7			// af235386
    	AMOMIND		X5, (X6), X7			// af335386
    	AMOMINUW	X5, (X6), X7			// af2353c6
    	AMOMINUD	X5, (X6), X7			// af3353c6
    
    	// 10.1: Base Counters and Timers
    	RDCYCLE		X5				// f32200c0
    	RDTIME		X5				// f32210c0
    	RDINSTRET	X5				// f32220c0
    
    	// 11.5: Single-Precision Load and Store Instructions
    	FLW	(X5), F0				// 07a00200
    	FLW	4(X5), F0				// 07a04200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. src/net/http/transfer.go

    				err = io.ErrUnexpectedEOF
    			}
    		}
    	}
    
    	// If we can return an EOF here along with the read data, do
    	// so. This is optional per the io.Reader contract, but doing
    	// so helps the HTTP transport code recycle its connection
    	// earlier (since it will see this EOF itself), even if the
    	// client doesn't do future reads or Close.
    	if err == nil && n > 0 {
    		if lr, ok := b.src.(*io.LimitedReader); ok && lr.N == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top