Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 390 for _new (0.2 sec)

  1. .cm/javadoc_on_new_files.cm

    # its own file.
    
    on:
      - pr_created
      - commit
      - comment_added
    
    automations:
    
      javadoc_on_new_files:
        # Triggered for new Java files that lack Javadoc content.
        if:
    
          - {{ ('javadoc_on_new_files' | isEnabledAutomation(pr)) }}
          - {{ is.java and is.new }}
          - {{ source.diff.files | matchDiffLines(regex=r/\/*\*([\s\S]*?)\//) | nope }}
        run:
          - action: add-label@v1
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CipherSuiteTest.kt

        assertThat(forJavaName("SSL_DH_RSA_EXPORT_WITH_DES40_CBC_SHA"))
          .isEqualTo(forJavaName("TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA"))
        assertThat(forJavaName("SSL_FAKE_NEW_CIPHER"))
          .isEqualTo(forJavaName("TLS_FAKE_NEW_CIPHER"))
      }
    
      @Test
      fun applyIntersectionRetainsTlsPrefixes() {
        val socket = FakeSslSocket()
        socket.enabledProtocols = arrayOf("TLSv1")
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional bool readOnlyRootFilesystem = 6;
    
      // AllowPrivilegeEscalation controls whether a process can gain more
      // privileges than its parent process. This bool directly controls if
      // the no_new_privs flag will be set on the container process.
      // AllowPrivilegeEscalation is true always when the container is:
      // 1) run as Privileged
      // 2) has CAP_SYS_ADMIN
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (windows-386), const CERT_TRUST_REVOCATION_STATUS_UNKNOWN = 64
    pkg syscall (windows-386), const CREATE_ALWAYS = 2
    pkg syscall (windows-386), const CREATE_NEW = 1
    pkg syscall (windows-386), const CREATE_NEW_PROCESS_GROUP = 512
    pkg syscall (windows-386), const CREATE_NEW_PROCESS_GROUP ideal-int
    pkg syscall (windows-386), const CREATE_UNICODE_ENVIRONMENT = 1024
    pkg syscall (windows-386), const CRYPT_DEFAULT_CONTAINER_OPTIONAL = 128
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  5. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const SYS_CAP_ENTER ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_CAP_GETMODE ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_CAP_GETRIGHTS ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_CAP_NEW ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_CHDIR ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_CHFLAGS ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_CHMOD ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  6. docs/en/docs/alternatives.md

    It had the best performance benchmarks at the time (only surpassed by Starlette).
    
    At first, it didn't have an automatic API documentation web UI, but I knew I could add Swagger UI to it.
    
    It had a dependency injection system. It required pre-registration of components, as other tools discussed above. But still, it was a great feature.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  7. docs/features/events.md

    ```java
    Request washingtonPostRequest = new Request.Builder()
        .url("https://www.washingtonpost.com/")
        .build();
    client.newCall(washingtonPostRequest).enqueue(new Callback() {
      ...
    });
    
    Request newYorkTimesRequest = new Request.Builder()
        .url("https://www.nytimes.com/")
        .build();
    client.newCall(newYorkTimesRequest).enqueue(new Callback() {
      ...
    });
    ```
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 7.7K bytes
    - Viewed (0)
  8. mockwebserver/README.md

      // Create a MockWebServer. These are lean enough that you can create a new
      // instance for every unit test.
      MockWebServer server = new MockWebServer();
    
      // Schedule some responses.
      server.enqueue(new MockResponse().setBody("hello, world!"));
      server.enqueue(new MockResponse().setBody("sup, bra?"));
      server.enqueue(new MockResponse().setBody("yo dog"));
    
      // Start the server.
      server.start();
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Dec 17 15:34:10 GMT 2023
    - 5K bytes
    - Viewed (1)
  9. docs/en/docs/advanced/testing-database.md

        ├── database.py
        ├── main.py
        ├── models.py
        ├── schemas.py
        └── tests
            ├── __init__.py
            └── test_sql_app.py
    ```
    
    ## Create the new database session
    
    First, we create a new database session with the new database.
    
    We'll use an in-memory database that persists during the tests instead of the local file `sql_app.db`.
    
    But the rest of the session code is more or less the same, we just copy it.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_4x.md

        This artifact has a dependency on Google's Brotli decoder (95 KiB).
    
     *  New: `EventListener.proxySelectStart()`, `proxySelectEnd()` events give visibility into the
        proxy selection process.
     *  New: `Response.byteString()` reads the entire response into memory as a byte string.
     *  New: `OkHttpClient.x509TrustManager` accessor.
     *  New: Permit [new WebSocket response codes][iana_websocket]: 1012 (Service Restart), 1013 (Try
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 17 13:25:31 GMT 2024
    - 25.2K bytes
    - Viewed (0)
Back to top