Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,578 for lasta (0.66 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/internal/bytealg/bytealg.go

    }
    
    // LastIndexRabinKarp uses the Rabin-Karp search algorithm to return the last index of the
    // occurrence of sep in s, or -1 if not present.
    func LastIndexRabinKarp[T string | []byte](s, sep T) int {
    	// Rabin-Karp search from the end of the string
    	hashss, pow := HashStrRev(sep)
    	n := len(sep)
    	last := len(s) - n
    	var h uint32
    	for i := len(s) - 1; i >= last; i-- {
    		h = h*PrimeRK + uint32(s[i])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/internal/bytealg/index_ppc64x.s

    	CMP      R6, R4                 // Compare lengths
    	BGT      notfound               // If sep len is > string, notfound
    	ADD      R4, R3, LASTBYTE       // find last byte addr
    	SUB      R6, LASTBYTE, LASTSTR  // LAST=&s[len(s)-len(sep)] (last valid start index)
    	CMP      R6, $0                 // Check sep len
    	BEQ      notfound               // sep len 0 -- not found
    	MOVD     R3, R7                 // Copy of string addr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/validatingadmissionpolicy.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 *ValidatingAdmissionPolicyApplyConfiguration) WithKind(value string) *ValidatingAdmissionPolicyApplyConfiguration {
    	b.Kind = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 02:44:28 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/deployment.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 *DeploymentApplyConfiguration) WithKind(value string) *DeploymentApplyConfiguration {
    	b.Kind = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/cronjob.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 *CronJobApplyConfiguration) WithKind(value string) *CronJobApplyConfiguration {
    	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
    - 11.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/certificates/v1/certificatesigningrequest.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 *CertificateSigningRequestApplyConfiguration) WithKind(value string) *CertificateSigningRequestApplyConfiguration {
    	b.Kind = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 13.3K bytes
    - Viewed (0)
Back to top