Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,484 for Sort (0.04 sec)

  1. hack/update-codegen.sh

    APPLYCONFIG_PKG="k8s.io/client-go/applyconfigurations"
    PLURAL_EXCEPTIONS="Endpoints:Endpoints,ResourceClaimParameters:ResourceClaimParameters,ResourceClassParameters:ResourceClassParameters"
    
    # Any time we call sort, we want it in the same locale.
    export LC_ALL="C"
    
    # Work around for older grep tools which might have options we don't want.
    unset GREP_OPTIONS
    
    if [[ "${DBG_CODEGEN}" == 1 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/size.go

    		}
    		methods = append(methods, m)
    	}
    
    	{
    		methods := t.Methods()
    		sort.SliceStable(methods, func(i, j int) bool {
    			mi, mj := methods[i], methods[j]
    
    			// Sort embedded types by type name (if any).
    			if mi.Sym == nil && mj.Sym == nil {
    				return mi.Type.Sym().Less(mj.Type.Sym())
    			}
    
    			// Sort methods before embedded types.
    			if mi.Sym == nil || mj.Sym == nil {
    				return mi.Sym != nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry.go

    		return false
    	}
    	// Sort each slice so that we can compare them in order. Comparison is on the fields that are used in the test cases.
    	sort.SliceStable(ct.Metrics, func(i, j int) bool {
    		return ct.Metrics[i].Providers[0].Name < ct.Metrics[j].Providers[0].Name
    	})
    	sort.SliceStable(other.Metrics, func(i, j int) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

            def metadata = store.getTypeAnnotationMetadata(type)
            def actualPropertyNames = metadata.propertiesAnnotationMetadata*.propertyName.sort()
            def expectedPropertyNames = expectedProperties.keySet().sort()
            assert actualPropertyNames == expectedPropertyNames
    
            metadata.propertiesAnnotationMetadata.forEach { actualProperty ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. tests/joins_test.go

    	} else if len(users2) != len(users) {
    		t.Fatalf("Failed to load join users, got: %v, expect: %v", len(users2), len(users))
    	}
    
    	sort.Slice(users2, func(i, j int) bool {
    		return users2[i].ID > users2[j].ID
    	})
    
    	sort.Slice(users, func(i, j int) bool {
    		return users[i].ID > users[j].ID
    	})
    
    	for idx, user := range users {
    		CheckUser(t, user, users2[idx])
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailureTest.groovy

    Some sort of FAILURE: without status bar or work in progress\u001B[0K
    Some more output
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package driver
    
    import (
    	"fmt"
    	"io"
    	"regexp"
    	"sort"
    	"strconv"
    	"strings"
    
    	"github.com/google/pprof/internal/plugin"
    	"github.com/google/pprof/internal/report"
    	"github.com/google/pprof/profile"
    )
    
    var commentStart = "//:" // Sentinel for comments on options
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            """
    
            when:
            run 'copy'
            then:
            outputDirectory.list().sort() == [input.name, brokenLink.name].sort()
            executedAndNotSkipped ':copy'
    
            when:
            run 'copy'
            then:
            outputDirectory.list().sort() == [input.name, brokenLink.name].sort()
            skipped ':copy'
    
            when:
            brokenLink.delete()
            run 'copy'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/syscall/mkerrors.sh

    		$2 ~ /^__W[A-Z0-9]+$/ {printf("\t%s = C.%s\n", substr($2,3), $2)}
    
    		{next}
    	' | sort
    
    	echo ')'
    ) >_const.go
    
    # Pull out the error names for later.
    errors=$(
    	echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
    	awk '$1=="#define" && $2 ~ /^E[A-Z0-9_]+$/ { print $2 }' |
    	sort
    )
    
    # Pull out the signal names for later.
    signals=$(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    		for idx := range containerPortMappings {
    			port := containerPortMappings[idx]
    			hostPort := int32(port.HostPort)
    			containerPort := int32(port.ContainerPort)
    			protocol := toRuntimeProtocol(port.Protocol)
    			portMappings = append(portMappings, &runtimeapi.PortMapping{
    				HostIp:        port.HostIP,
    				HostPort:      hostPort,
    				ContainerPort: containerPort,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top