Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 687 for toSort (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		if err != nil {
    			return nil, err
    		}
    	}
    
    	sort.SliceStable(toSort, func(i, j int) bool {
    		if ii := index(order, toSort[i], mergeKey, kind); ii >= 0 {
    			if ij := index(order, toSort[j], mergeKey, kind); ij >= 0 {
    				return ii < ij
    			}
    		}
    		return true
    	})
    	toSort = append(toSort, toDelete...)
    	return toSort, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  2. src/path/filepath/symlink_windows.go

    // If two paths A and B are indicating the same file with the same format, toNorm(A) should be equal to toNorm(B).
    // The normBase parameter should be equal to the normBase func, except for in tests.  See docs on the normBase func.
    func toNorm(path string, normBase func(string) (string, error)) (string, error) {
    	if path == "" {
    		return path, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 07:42:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/convert/ShortConversionUtil.java

         * @return 変換された{@link Short}
         */
        public static Short toShort(final Object o) {
            return toShort(o, null);
        }
    
        /**
         * {@link Short}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
         * @param pattern
         *            パターン文字列
         * @return 変換された{@link Short}
         */
        public static Short toShort(final Object o, final String pattern) {
            if (o == null) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/path/filepath/export_windows_test.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package filepath
    
    var (
    	ToNorm   = toNorm
    	NormBase = normBase
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 20:01:49 UTC 2016
    - 226 bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/convert/ShortConversionUtilTest.java

     *
     */
    public class ShortConversionUtilTest extends TestCase {
    
        /**
         * @throws Exception
         */
        public void testToShort() throws Exception {
            assertEquals(new Short("1000"), ShortConversionUtil.toShort("1,000"));
        }
    
        /**
         * @throws Exception
         */
        public void testToPrimitiveShort() throws Exception {
            assertEquals(1000, ShortConversionUtil.toPrimitiveShort("1,000"));
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/web/http.go

    type Interceptor struct {
    	Scheme   string
    	FromHost string
    	ToHost   string
    	Client   *http.Client
    }
    
    func EnableTestHooks(interceptors []Interceptor) error {
    	if enableTestHooks {
    		return errors.New("web: test hooks already enabled")
    	}
    
    	for _, t := range interceptors {
    		if t.FromHost == "" {
    			panic("EnableTestHooks: missing FromHost")
    		}
    		if t.ToHost == "" {
    			panic("EnableTestHooks: missing ToHost")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/util/DES.java

                kn[m] = kn[n] = 0;
                for ( j = 0; j < 28; ++j ) {
                    l = j+totrot[i];
                    if ( l < 28 )
                        pcr[j] = pc1m[l];
                    else
                        pcr[j] = pc1m[l-28];
                }
                for ( j=28; j < 56; ++j ) {
                    l = j+totrot[i];
                    if ( l < 56 )
                        pcr[j] = pc1m[l];
                    else
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  8. helm/minio/templates/ciliumnetworkpolicy.yaml

        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
    spec:
      endpointSelector:
        matchLabels:
          app: {{ template "minio.name" . }}
          release: {{ .Release.Name }}
      ingress:
      - toPorts:
        - ports:
          - port: "{{ .Values.minioAPIPort }}"
            protocol: TCP
          - port: "{{ .Values.minioConsolePort }}"
            protocol: TCP
        {{- if not .Values.networkPolicy.allowExternal }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 07:50:24 UTC 2024
    - 936 bytes
    - Viewed (0)
  9. pkg/probe/tcp/tcp_test.go

    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	tPort, err := strconv.Atoi(tPortStr)
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    
    	tests := []struct {
    		host string
    		port int
    
    		expectedStatus probe.Result
    		expectedError  error
    	}{
    		// A connection is made and probing would succeed
    		{tHost, tPort, probe.Success, nil},
    		// No connection can be made and probing would fail
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 18:23:33 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  10. fess-crawler/src/test/resources/extractor/eml/sample4.eml

    www.museumsdorf-glashuette.de
    Bitte auch 2. Seite lesen !
    Programmablauf:
    Die Eigenbeteiligung für die Exkursion incl. eines Essens beträgt 11,00 €,. Eine verbindliche Anmeldung ist ab
    sofort während der Sprechzeiten (montags, dienstags und donnerstags in der Zeit von 9.30 Uhr bis 12.30 Uhr
    und 13.30 Uhr bis 16.30 Uhr im Raum H 051 möglich.
    Die Anmeldung ist nur verbindlich bei sofortiger Bezahlung der Eigenbeteiligung.
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Jan 07 09:15:11 UTC 2018
    - 681K bytes
    - Viewed (0)
Back to top