Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,256 for lasta (0.04 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/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: Fri Jul 21 20:56:23 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/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: Fri Jul 21 20:56:23 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top