Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 616 for lasta (0.11 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/client-go/applyconfigurations/batch/v1beta1/jobtemplatespec.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 *JobTemplateSpecApplyConfiguration) WithName(value string) *JobTemplateSpecApplyConfiguration {
    	b.ensureObjectMetaApplyConfigurationExists()
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/mutatingwebhook.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 *MutatingWebhookApplyConfiguration) WithName(value string) *MutatingWebhookApplyConfiguration {
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:28:26 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            then:
            !(result.output =~ /Received \d+ file system events since last build while watching \d+ locations/)
            !(result.output =~ /Virtual file system retained information about \d+ files, \d+ directories and \d+ missing files since last build/)
            result.output =~ /VFS> Statistics since last build:/
            result.output =~ /VFS> > Stat: Executed stat\(\) x 0. getUnixMode\(\) x 0/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/validationrule.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Rule field is set to the value of the last call.
    func (b *ValidationRuleApplyConfiguration) WithRule(value string) *ValidationRuleApplyConfiguration {
    	b.Rule = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:34:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. src/runtime/memmove_arm64.s

    	ADD	R1, R2, R4          // R4 points just past the last source byte
    	LDP	-16(R4), (R12, R13)
    	STP	(R6, R7), (R0)
    	ADD	R0, R2, R5          // R5 points just past the last destination byte
    	STP	(R12, R13), -16(R5)
    	RET
    
    // Small copies: 1..16 bytes.
    copy16:
    	ADD	R1, R2, R4 // R4 points just past the last source byte
    	ADD	R0, R2, R5 // R5 points just past the last destination byte
    	CMP	$8, R2
    	BLT	copy7
    	MOVD	(R1), R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podtemplatespec.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 *PodTemplateSpecApplyConfiguration) WithName(value string) *PodTemplateSpecApplyConfiguration {
    	b.ensureObjectMetaApplyConfigurationExists()
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcedefinitionversion.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 *CustomResourceDefinitionVersionApplyConfiguration) WithName(value string) *CustomResourceDefinitionVersionApplyConfiguration {
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/jobtemplatespec.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 *JobTemplateSpecApplyConfiguration) WithName(value string) *JobTemplateSpecApplyConfiguration {
    	b.ensureObjectMetaApplyConfigurationExists()
    	b.Name = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 8.8K bytes
    - Viewed (0)
Back to top