Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,221 for lasta (0.19 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/versions/KotlinGradlePluginVersions.groovy

        }
    
        String getLatest() {
            return latests.last()
        }
    
        List<String> getLatestsStable() {
            return latests
                .collect { VersionNumber.parse(it) }
                .findAll { it.baseVersion == it }
                .collect { it.toString() }
        }
    
        String getLatestStable() {
            return latestsStable.last()
        }
    
        List<String> getLatestsStableOrRC() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/net/parse.go

    func splitAtBytes(s string, t string) []string {
    	a := make([]string, 1+countAnyByte(s, t))
    	n := 0
    	last := 0
    	for i := 0; i < len(s); i++ {
    		if bytealg.IndexByteString(t, s[i]) >= 0 {
    			if last < i {
    				a[n] = s[last:i]
    				n++
    			}
    			last = i + 1
    		}
    	}
    	if last < len(s) {
    		a[n] = s[last:]
    		n++
    	}
    	return a[0:n]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/externaldocumentation.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Description field is set to the value of the last call.
    func (b *ExternalDocumentationApplyConfiguration) WithDescription(value string) *ExternalDocumentationApplyConfiguration {
    	b.Description = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/externaldocumentation.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Description field is set to the value of the last call.
    func (b *ExternalDocumentationApplyConfiguration) WithDescription(value string) *ExternalDocumentationApplyConfiguration {
    	b.Description = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/expressionwarning.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the FieldRef field is set to the value of the last call.
    func (b *ExpressionWarningApplyConfiguration) WithFieldRef(value string) *ExpressionWarningApplyConfiguration {
    	b.FieldRef = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/modifyvolumestatus.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the TargetVolumeAttributesClassName field is set to the value of the last call.
    func (b *ModifyVolumeStatusApplyConfiguration) WithTargetVolumeAttributesClassName(value string) *ModifyVolumeStatusApplyConfiguration {
    	b.TargetVolumeAttributesClassName = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. src/go/types/signature.go

    		// ok to continue
    	}
    
    	// For a variadic function, change the last parameter's type from T to []T.
    	// Since we type-checked T rather than ...T, we also need to retro-actively
    	// record the type for ...T.
    	if variadic {
    		last := params[len(params)-1]
    		last.typ = &Slice{elem: last.typ}
    		check.recordTypeAndValue(list.List[len(list.List)-1].Type, typexpr, last.typ, nil)
    	}
    
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/io/ioutil/tempfile.go

    // opens the file for reading and writing, and returns the resulting *[os.File].
    // The filename is generated by taking pattern and adding a random
    // string to the end. If pattern includes a "*", the random string
    // replaces the last "*".
    // If dir is the empty string, TempFile uses the default directory
    // for temporary files (see [os.TempDir]).
    // Multiple programs calling TempFile simultaneously
    // will not choose the same file. The caller can use f.Name()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:34:35 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcesubresources.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Status field is set to the value of the last call.
    func (b *CustomResourceSubresourcesApplyConfiguration) WithStatus(value v1beta1.CustomResourceSubresourceStatus) *CustomResourceSubresourcesApplyConfiguration {
    	b.Status = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/paramkind.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the APIVersion field is set to the value of the last call.
    func (b *ParamKindApplyConfiguration) WithAPIVersion(value string) *ParamKindApplyConfiguration {
    	b.APIVersion = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top