Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 613 for lasta (0.08 sec)

  1. src/path/path.go

    	for i := len(path) - 1; i >= 0 && path[i] != '/'; i-- {
    		if path[i] == '.' {
    			return path[i:]
    		}
    	}
    	return ""
    }
    
    // Base returns the last element of path.
    // Trailing slashes are removed before extracting the last element.
    // If the path is empty, Base returns ".".
    // If the path consists entirely of slashes, Base returns "/".
    func Base(path string) string {
    	if path == "" {
    		return "."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. src/path/filepath/symlink.go

    			// Ignore path component ".".
    			continue
    		} else if path[start:end] == ".." {
    			// Back up to previous component if possible.
    			// Note that volLen includes any leading slash.
    
    			// Set r to the index of the last slash in dest,
    			// after the volume.
    			var r int
    			for r = len(dest) - 1; r >= volLen; r-- {
    				if os.IsPathSeparator(dest[r]) {
    					break
    				}
    			}
    			if r < volLen || dest[r+1:] == ".." {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastapplied.go

    //
    // This is a copy of the corev1 annotation since we don't want to depend on the whole package.
    const LastAppliedConfigAnnotation = "kubectl.kubernetes.io/last-applied-configuration"
    
    // SetLastApplied sets the last-applied annotation the given value in
    // the object.
    func SetLastApplied(obj runtime.Object, value string) error {
    	accessor, err := meta.Accessor(obj)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/matchresources.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the NamespaceSelector field is set to the value of the last call.
    func (b *MatchResourcesApplyConfiguration) WithNamespaceSelector(value *v1.LabelSelectorApplyConfiguration) *MatchResourcesApplyConfiguration {
    	b.NamespaceSelector = value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:51:52 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2/externalmetricsource.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Metric field is set to the value of the last call.
    func (b *ExternalMetricSourceApplyConfiguration) WithMetric(value *MetricIdentifierApplyConfiguration) *ExternalMetricSourceApplyConfiguration {
    	b.Metric = value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 2.1K bytes
    - Viewed (0)
Back to top