Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,819 for lasta (0.06 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/scale.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Kind field is set to the value of the last call.
    func (b *ScaleApplyConfiguration) WithKind(value string) *ScaleApplyConfiguration {
    	b.Kind = &value
    	return b
    }
    
    // WithAPIVersion sets the APIVersion field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v1/scale.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Kind field is set to the value of the last call.
    func (b *ScaleApplyConfiguration) WithKind(value string) *ScaleApplyConfiguration {
    	b.Kind = &value
    	return b
    }
    
    // WithAPIVersion sets the APIVersion field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/RegularContiguousSet.java

      }
    
      @Override
      public UnmodifiableIterator<C> iterator() {
        return new AbstractSequentialIterator<C>(first()) {
          final C last = last();
    
          @Override
          @CheckForNull
          protected C computeNext(C previous) {
            return equalsOrThrow(previous, last) ? null : domain.next(previous);
          }
        };
      }
    
      @GwtIncompatible // NavigableSet
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podsecuritycontext.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the SELinuxOptions field is set to the value of the last call.
    func (b *PodSecurityContextApplyConfiguration) WithSELinuxOptions(value *SELinuxOptionsApplyConfiguration) *PodSecurityContextApplyConfiguration {
    	b.SELinuxOptions = value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. test/chan/sieve2.go

    		first := ring.New(n)
    		last := first
    		var c chan<- int
    		var e int
    		for {
    			c = out
    			if first == last {
    				// buffer empty: disable output
    				c = nil
    			} else {
    				e = first.Value.(int)
    			}
    			select {
    			case e = <-proxy:
    				last.Value = e
    				if last.Next() == first {
    					// buffer full: expand it
    					last.Link(ring.New(n))
    					n *= 2
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 3.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstateterminated.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the ExitCode field is set to the value of the last call.
    func (b *ContainerStateTerminatedApplyConfiguration) WithExitCode(value int32) *ContainerStateTerminatedApplyConfiguration {
    	b.ExitCode = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainercommon.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Name field is set to the value of the last call.
    func (b *EphemeralContainerCommonApplyConfiguration) WithName(value string) *EphemeralContainerCommonApplyConfiguration {
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimspec.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Selector field is set to the value of the last call.
    func (b *PersistentVolumeClaimSpecApplyConfiguration) WithSelector(value *metav1.LabelSelectorApplyConfiguration) *PersistentVolumeClaimSpecApplyConfiguration {
    	b.Selector = value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. test/fixedbugs/issue59709.dir/dcache.go

    )
    
    type Module struct {
    	cfg  *aconfig.Config
    	err  error
    	last any
    }
    
    //go:noinline
    func TD() {
    }
    
    func (m *Module) Configure(x string) error {
    	if m.err != nil {
    		return m.err
    	}
    	res := cmem.NewResource(m.cfg)
    	m.last = res
    
    	return nil
    }
    
    func (m *Module) Blurb(x string, e error) bool {
    	res, ok := m.last.(*bresource.Resource[*int])
    	if !ok {
    		panic("bad")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 21:04:28 UTC 2023
    - 626 bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/ipallocator_test.go

    			last:   netip.MustParseAddr("192.168.0.7"),
    			offset: 2,
    			want:   7,
    		}, {
    			name:   "start from last address",
    			first:  netip.MustParseAddr("192.168.0.1"),
    			last:   netip.MustParseAddr("192.168.0.7"),
    			offset: 6,
    			want:   7,
    		}, {
    			name:   "start from first address large range",
    			first:  netip.MustParseAddr("2001:db8:1::101"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
Back to top