Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 350 for 2055 (0.07 sec)

  1. src/crypto/tls/testdata/Client-TLSv10-ClientCert-RSA-ECDSA

    >>> Flow 2 (server to client)
    00000000  16 03 01 00 5d 02 00 00  59 03 01 6f 48 26 41 da  |....]...Y..oH&A.|
    00000010  73 82 d1 cf 84 ad 06 e9  76 39 dc e4 c8 34 af 53  |s.......v9...4.S|
    00000020  06 ed ed 68 56 5f 76 11  4e f6 ff 20 55 fd 29 c5  |...hV_v.N.. U.).|
    00000030  aa 56 af bd 5d 67 74 4f  08 8a 52 a1 7e cd b9 ac  |.V..]gtO..R.~...|
    00000040  31 a0 2f 45 25 1f b2 24  71 26 80 17 c0 09 00 00  |1./E%..$q&......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/poset_test.go

    		{OrderedOrEqual, 20, 30},
    		{OrderedOrEqual, 10, 40},
    		{Undo, 0, 0},
    
    		{Checkpoint, 0, 0},
    		{SetOrderOrEqual, 30, 35},
    		{OrderedOrEqual, 20, 35},
    		{Ordered_Fail, 20, 35},
    		{SetNonEqual, 20, 35},
    		{Ordered, 20, 35},
    		{Undo, 0, 0},
    
    		// Learn <= and >=
    		{Checkpoint, 0, 0},
    		{SetOrderOrEqual, 50, 60},
    		{SetOrderOrEqual, 60, 50},
    		{OrderedOrEqual, 50, 60},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 26 07:52:35 UTC 2019
    - 18.1K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/array_grad_test.cc

      auto y = GatherV2(scope_, x, {2, 0, 2, 5}, /*axis=*/0);
      TensorShape y_shape({4});
      RunTest(x, shape, y, y_shape);
    }
    
    TEST_F(ArrayGradTest, GatherV2Grad_MoreParamDims) {
      TensorShape shape({100, 2, 3, 2});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      auto y = GatherV2(scope_, x, {2, 0, 2, 5}, /*axis=*/0);
      TensorShape y_shape({4, 2, 3, 2});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  4. src/time/example_test.go

    	// Unix format: Wed Feb 25 11:06:39 PST 2015
    	// Same, in UTC: Wed Feb 25 19:06:39 UTC 2015
    	//in Shanghai with seconds: 2015-02-26T03:06:39 +080000
    	//in Shanghai with colon seconds: 2015-02-26T03:06:39 +08:00:00
    	//
    	// Formats:
    	//
    	// Basic full date  "Mon Jan 2 15:04:05 MST 2006" gives "Wed Feb 25 11:06:39 PST 2015"
    	// Basic short date "2006/01/02" gives "2015/02/25"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/testdata/none_lds_tcp.json

                        "cluster": {
                          "Kind": {
                            "StringValue": "outbound|2005||s2.external.test.istio.io"
                          }
                        },
                        "stat_prefix": {
                          "Kind": {
                            "StringValue": "outbound|2005||s2.external.test.istio.io"
                          }
                        }
                      }
                    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 22.4K bytes
    - Viewed (0)
  6. src/mime/encodedword.go

    // Copyright 2015 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 mime
    
    import (
    	"bytes"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"io"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // A WordEncoder is an RFC 2047 encoded-word encoder.
    type WordEncoder byte
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/test/resources/plugin/repo2/index.html

                <td>Sun Jul 05 13:18:45 UTC 2015</td>
                <td align="right">
                                  &nbsp;
                              </td>
                <td></td>
              </tr>
                      <tr>
                <td><a href="https://oss.sonatype.org/content/repositories/snapshots/org/codelibs/fess/fess-db-mysql/">fess-db-mysql/</a></td>
                <td>Sun Jul 05 13:21:09 UTC 2015</td>
                <td align="right">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Aug 13 07:34:14 UTC 2019
    - 10.5K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessorTest.groovy

            adapter.started(test, new TestStartEvent(100L))
            adapter.output("testid", event)
    
            then:
            1 * listener.output({it.descriptor == test}, event)
        }
    
        @Issue("GRADLE-2035")
        def "behaves gracefully even if cannot match output to the test"() {
            given:
            def event = new DefaultTestOutputEvent(TestOutputEvent.Destination.StdOut, "hey!")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ErrorParsingTest.kt

                    UnsupportedConstruct(
                        languageFeature = UninitializedProperty,
                        potentialElementSource = indexes: 20..25, line/column: 3/1..3/6, file: test,
                        erroneousSource = indexes: 20..25, line/column: 3/1..3/6, file: test
                    )
                )
                ErroneousStatement (
                    ParsingError(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 09:41:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/LinkedHashMultimapTest.java

        LinkedHashMultimap<String, Integer> multimap = LinkedHashMultimap.create(20, 15);
        multimap.put("foo", 1);
        multimap.put("bar", 2);
        multimap.put("foo", 3);
        assertEquals(ImmutableSet.of(1, 3), multimap.get("foo"));
      }
    
      public void testCreateFromIllegalSizes() {
        try {
          LinkedHashMultimap.create(-20, 15);
          fail();
        } catch (IllegalArgumentException expected) {
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top