Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for customFile (0.14 sec)

  1. manifests/charts/gateway/README.md

    Warning: the helm charts here default to using port 80 and 443, while the old charts used 8080 and 8443.
    If you have AuthorizationPolicies that reference port these ports, you should update them during this process,
    or customize the ports to match the old defaults.
    See the [security advisory](https://istio.io/latest/news/security/istio-security-2021-002/) for more information.
    
    #### Other migrations
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_precompiled.adoc

    When you apply a plugin that defines an extension, you can access the extension object and configure its properties or call its methods to customize the behavior of the plugin or tasks provided by the plugin.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/metadata.md

    # Metadata and Docs URLs
    
    You can customize several metadata configurations in your **FastAPI** application.
    
    ## Metadata for API
    
    You can set the following fields that are used in the OpenAPI specification and the automatic API docs UIs:
    
    | Parameter | Type | Description |
    |------------|------|-------------|
    | `title` | `str` | The title of the API. |
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. docs/en/docs/how-to/custom-docs-ui-assets.md

    But it's possible to customize it, you can set a specific CDN, or serve the files yourself.
    
    ## Custom CDN for JavaScript and CSS
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

      <artifactId>tutorial</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
    </project>
    ----
    
    == Step 5. Exploring Plugins
    Plugins are used to extend build capability and customize Gradle.
    
    Using plugins is the **primary mechanism for organizing build logic**.
    
    Plugin authors can either keep their plugins private or distribute them to the public. As such, plugins are distributed three ways:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    It provides a centralized way to manage and customize dependency resolution.
    
    [source,kotlin]
    ----
    dependencyResolutionManagement {
        repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
        repositories {
            mavenCentral()
        }
    }
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    //
    // A Fact type must be a pointer.
    // Facts are encoded and decoded using encoding/gob.
    // A Fact may implement the GobEncoder/GobDecoder interfaces
    // to customize its encoding. Fact encoding should not fail.
    //
    // A Fact should not be modified once exported.
    type Fact interface {
    	AFact() // dummy method to avoid type errors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[build_environment]]
    = Configuring the Build Environment
    
    Configuring the build environment is a powerful way to customize the build process.
    There are many mechanisms available.
    By leveraging these mechanisms, you can make your Gradle builds more flexible and adaptable to different environments and requirements.
    
    == Available mechanisms
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

       *
       * In order to support preemptive authentication we pass a fake "Auth Failed" response to the
       * authenticator. This gives the authenticator the option to customize the CONNECT request. It can
       * decline to do so by returning null, in which case OkHttp will use it as-is.
       */
      @Throws(IOException::class)
      private fun createTunnelRequest(route: Route): Request {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

                    }
                }
            }
            '''
    
            expect:
            run 'run'
        }
    
    
        def "can customize application name"() {
            file('build.gradle') << '''
    application.applicationName = 'mega-app'
    '''
            file('src/main/java/org/gradle/test/Main.java') << '''
    package org.gradle.test;
    
    class Main {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top