Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for Issued (0.21 sec)

  1. docs/changelogs/changelog_3x.md

        implement `SecureRandom` incorrectly!
     *  Fix: Correctly canonicalize IPv6 addresses in `HttpUrl`. This prevented OkHttp from trusting
        HTTPS certificates issued to certain IPv6 addresses.
     *  Fix: Don't reuse connections after an unsuccessful `Expect: 100-continue`.
     *  Fix: Handle either `TLS_` or `SSL_` prefixes for cipher suite names. This is necessary for
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      //
      // The server guarantees that the objects returned when using continue will be identical to issuing
      // a single list call without a limit - that is, no objects created, modified, or deleted after the
      // first request is issued will be included in any subsequent continued requests. This is sometimes
      // referred to as a consistent snapshot, and ensures that a client that is using limit to receive
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.3.md

      - [Highlights](#highlights)
      - [Known Issues and Important Steps before Upgrading](#known-issues-and-important-steps-before-upgrading)
          - [ThirdPartyResource](#thirdpartyresource)
          - [kubectl](#kubectl)
          - [kubernetes Core Known Issues](#kubernetes-core-known-issues)
          - [Docker runtime Known Issues](#docker-runtime-known-issues)
          - [Rkt runtime Known Issues](#rkt-runtime-known-issues)
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        }
        taskFaker.runNextTask()
    
        // Check that a rebuilt journal behaves normally.
        assertValue("a", "a", "a")
        assertValue("b", "b", "b")
      }
    
      /** @see [Issue 28](https://github.com/JakeWharton/DiskLruCache/issues/28) */
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
      fun rebuildJournalOnRepeatedReadsWithOpenAndClose(parameters: Pair<FileSystem, Boolean>) {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 14:55:09 GMT 2024
    - 75.8K bytes
    - Viewed (0)
  5. .bazelrc

    # Verbose failure logs when something goes wrong
    build:windows --verbose_failures
    
    # Work around potential issues with large command lines on windows.
    # See: https://github.com/bazelbuild/bazel/issues/5163
    build:windows --features=compiler_param_file
    
    # Do not risk cache corruption. See:
    # https://github.com/bazelbuild/bazel/issues/3360
    build:linux --experimental_guard_against_concurrent_changes
    
    # Configure short or long logs
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 52.6K bytes
    - Viewed (2)
  6. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("https://project.url/scm", pom.getValue("scm/developerConnection"));
            assertEquals("TAG", pom.getValue("scm/tag"));
    
            assertEquals("issues", pom.getValue("issueManagement/system"));
            assertEquals("https://project.url/issues", pom.getValue("issueManagement/url"));
    
            assertEquals("ci", pom.getValue("ciManagement/system"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    	"unsigned short":         "ushort", // Used by Clang; issue 13129.
    	"short int":              "short",
    	"long long int":          "longlong",
    	"long long unsigned int": "ulonglong",
    	"signed char":            "schar",
    	"unsigned char":          "uchar",
    	"unsigned long":          "ulong",     // Used by Clang 14; issue 53013.
    	"unsigned long long":     "ulonglong", // Used by Clang 14; issue 53013.
    }
    
    const signedDelta = 64
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

      val clientTestRule = configureClientTestRule()
    
      @RegisterExtension
      val testLogHandler: TestLogHandler = TestLogHandler(Http2::class.java)
    
      // Flaky https://github.com/square/okhttp/issues/4632
      // Flaky https://github.com/square/okhttp/issues/4633
      private val handshakeCertificates: HandshakeCertificates =
        platform.localhostHandshakeCertificates()
    
      private lateinit var server: MockWebServer
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Thu Apr 11 22:09:35 GMT 2024
    - 75.3K bytes
    - Viewed (0)
  9. tests/migrate_test.go

    	}
    }
    
    type DynamicUser struct {
    	gorm.Model
    	Name      string
    	CompanyID string `gorm:"index"`
    }
    
    // To test auto migrate crate indexes for dynamic table name
    // https://github.com/go-gorm/gorm/issues/4752
    func TestMigrateIndexesWithDynamicTableName(t *testing.T) {
    	// Create primary table
    	if err := DB.AutoMigrate(&DynamicUser{}); err != nil {
    		t.Fatalf("AutoMigrate create table error: %#v", err)
    	}
    
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Mon Mar 18 11:24:16 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

       * @param otherElements the rest of the elements the set should contain
       * @return an immutable set containing those elements, minus duplicates
       */
      // http://code.google.com/p/google-web-toolkit/issues/detail?id=3028
      @GwtCompatible(serializable = true)
      public static <E extends Enum<E>> ImmutableSet<E> immutableEnumSet(
          E anElement, E... otherElements) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 77.4K bytes
    - Viewed (0)
Back to top