Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 1234567890123456 (0.13 sec)

  1. cmd/kubeadm/app/apis/bootstraptoken/v1/utils.go

    	// the match of the first parenthesized subexpression, and so on.
    	// e.g.:
    	// result := bootstraputil.BootstrapTokenRegexp.FindStringSubmatch("abcdef.1234567890123456")
    	// result == []string{"abcdef.1234567890123456","abcdef","1234567890123456"}
    	// len(result) == 3
    	validatedSubstringsSize = 3
    )
    
    // MarshalJSON implements the json.Marshaler interface.
    func (bts BootstrapTokenString) MarshalJSON() ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. src/main/resources/fess.xml

    		<property name="cookieKey">"fessRoles"</property>
    		<property name="encryptedCookieValue">true</property>
    		<property name="cipher">
    			<component class="org.codelibs.core.crypto.CachedCipher">
    				<property name="key">"1234567890123456"</property>
    			</component>
    		</property>
    		<property name="valueSeparator">"\\n"</property>
    		<property name="roleSeparator">","</property>
    		 -->
    	</component>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 01 06:48:48 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  3. src/time/mono_test.go

    	}
    }
    
    func TestMonotonicSub(t *testing.T) {
    	t1 := Unix(1483228799, 995e6)
    	SetMono(&t1, 123456789012345)
    
    	t2 := Unix(1483228799, 5e6)
    	SetMono(&t2, 123456789012345+10e6)
    
    	t3 := Unix(1483228799, 995e6)
    	SetMono(&t3, 123456789012345+1e9)
    
    	t1w := t1.AddDate(0, 0, 0)
    	if GetMono(&t1w) != 0 {
    		t.Fatalf("AddDate didn't strip monotonic clock reading")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 17:10:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/image-auto.yaml

        spec:
          containers:
            - name: istio-proxy
              image: auto
    ---
    # No image auto, should not produce error!
    apiVersion: v1
    kind: Pod
    metadata:
      name: istiod-canary-1234567890-12345
      namespace: istio-system
      labels:
        app: istiod
        istio: pilot
        sidecar.istio.io/inject: "true"
    spec:
      containers:
        - image: ubuntu
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. src/strconv/ftoa_test.go

    	{1.2345e6, 'g', 5, "1.2345e+06"},
    
    	// Round to even
    	{1.2345e6, 'e', 3, "1.234e+06"},
    	{1.2355e6, 'e', 3, "1.236e+06"},
    	{1.2345, 'f', 3, "1.234"},
    	{1.2355, 'f', 3, "1.236"},
    	{1234567890123456.5, 'e', 15, "1.234567890123456e+15"},
    	{1234567890123457.5, 'e', 15, "1.234567890123458e+15"},
    	{108678236358137.625, 'g', -1, "1.0867823635813762e+14"},
    
    	{1e23, 'e', 17, "9.99999999999999916e+22"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 24 23:50:20 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/injection.yaml

        name: server
    ---
    # Control plane pod proving the existence of istio.io/rev 'canary'
    apiVersion: v1
    kind: Pod
    metadata:
      name: istiod-canary-1234567890-12345
      namespace: istio-system
      labels:
        app: istiod
        istio: pilot
        istio.io/rev: canary
    spec:
      containers:
      - image: gcr.io/google-samples/microservices-demo/adservice:v0.1.1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 14:06:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top