Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 81 for 0123456789_ (0.16 sec)

  1. pkg/wasm/cache.go

    	resourceVersionByResource map[string]string
    }
    
    type moduleKey struct {
    	// Identifier for the module. It should be neutral for the checksum.
    	// e.g.) oci://docker.io/test@sha256:0123456789 is not allowed.
    	//       oci://docker.io/test:latest (tagged form) is allowed.
    	name     string
    	checksum string
    }
    
    type cacheKey struct {
    	moduleKey
    	downloadURL string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

    }
    
    private void addGoogleServicesJson(File outputDirectory) {
        new File(outputDirectory, 'santa-tracker/google-services.json').text = """
    {
      "project_info": {
        "project_number": "012345678912",
        "firebase_url": "https://example.com",
        "project_id": "example",
        "storage_bucket": "example.example.com"
      },
      "client": [
        {
          "client_info": {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

      static final String LOTS_OF_DELTAS = Strings.repeat(DELTA, 62);
    
      private static final String ALMOST_TOO_MANY_LEVELS = Strings.repeat("a.", 127);
    
      private static final String ALMOST_TOO_LONG = Strings.repeat("aaaaa.", 40) + "1234567890.c";
    
      private static final ImmutableSet<String> VALID_NAME =
          ImmutableSet.of(
              "foo.com",
              "f-_-o.cOM",
              "f--1.com",
              "f11-1.com",
              "www",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/fmt/fmt_test.go

    	{"%20f", 1.23456789e3, "         1234.567890"},
    	{"%20f", 1.23456789e-3, "            0.001235"},
    	{"%20f", 12345678901.23456789, "  12345678901.234568"},
    	{"%-20f", 1.23456789e3, "1234.567890         "},
    	{"%20.8f", 1.23456789e3, "       1234.56789000"},
    	{"%20.8f", 1.23456789e-3, "          0.00123457"},
    	{"%g", 1.23456789e3, "1234.56789"},
    	{"%g", 1.23456789e-3, "0.00123456789"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  5. src/runtime/runtime_test.go

    	// just a convenient way of documenting (via eqstring_generic)
    	// what == does.
    	s := []string{
    		"",
    		"a",
    		"c",
    		"aaa",
    		"ccc",
    		"cccc"[:3], // same contents, different string
    		"1234567890",
    	}
    	for _, s1 := range s {
    		for _, s2 := range s {
    			x := s1 == s2
    			y := eqstring_generic(s1, s2)
    			if x != y {
    				t.Errorf(`("%s" == "%s") = %t, want %t`, s1, s2, x, y)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. src/math/big/ratconv.go

    // This file implements rat-to-string conversion functions.
    
    package big
    
    import (
    	"errors"
    	"fmt"
    	"io"
    	"strconv"
    	"strings"
    )
    
    func ratTok(ch rune) bool {
    	return strings.ContainsRune("+-/0123456789.eE", ch)
    }
    
    var ratZero Rat
    var _ fmt.Scanner = &ratZero // *Rat must implement fmt.Scanner
    
    // Scan is a support routine for fmt.Scanner. It accepts the formats
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/topology_hints_test.go

    			pod:       *testPod4,
    			container: *testContainer4,
    			assignments: state.ContainerCPUAssignments{
    				string(testPod4.UID): map[string]cpuset.CPUSet{
    					testContainer4.Name: cpuset.New(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10),
    				},
    			},
    			defaultCPUSet: cpuset.New(),
    			expectedHints: []topologymanager.TopologyHint{
    				{
    					NUMANodeAffinity: crossSocketMask,
    					Preferred:        true,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/expvar/expvar_test.go

    		`\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\u0008\t\n\u000b\u000c\r\u000e\u000f` +
    		`\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017\u0018\u0019\u001a\u001b\u001c\u001d\u001e\u001f` +
    		` !\"#$%\u0026'()*+,-./0123456789:;\u003c=\u003e?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_` +
    		"`" + `abcdefghijklmnopqrstuvwxyz{|}~` + "\x7f" + `\u2028\u2029"`
    	if got != want {
    		t.Errorf("appendJSONQuote mismatch:\ngot  %v\nwant %v", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/encoding/json/decode.go

    				i++ // escaped char
    			case '"':
    				i++ // tokenize the closing quote too
    				break Switch
    			}
    		}
    	case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-': // number
    		for ; i < len(data); i++ {
    			switch data[i] {
    			case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
    				'.', 'e', 'E', '+', '-':
    			default:
    				break Switch
    			}
    		}
    	case 't': // true
    		i += len("rue")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  10. src/fmt/scan.go

    			s.error(errBool)
    		}
    		return false
    	}
    	return false
    }
    
    // Numerical elements
    const (
    	binaryDigits      = "01"
    	octalDigits       = "01234567"
    	decimalDigits     = "0123456789"
    	hexadecimalDigits = "0123456789aAbBcCdDeEfF"
    	sign              = "+-"
    	period            = "."
    	exponent          = "eEpP"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
Back to top