Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 67 for customFile (0.19 sec)

  1. src/net/tcpsock.go

    // separately nor changing Count (which is usually 10) is supported.
    // Therefore, it's recommended to set both Idle and Interval to non-negative values
    // in conjunction with a -1 for Count on those old Windows if you intend to customize
    // the TCP keep-alive settings.
    // By contrast, if only one of Idle and Interval is set to a non-negative value,
    // the other will be set to the system default value, and ultimately,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. pkg/apis/core/fuzzer/fuzzer.go

    	return []interface{}{
    		func(q *resource.Quantity, c fuzz.Continue) {
    			*q = *resource.NewQuantity(c.Int63n(1000), resource.DecimalExponent)
    		},
    		func(j *core.ObjectReference, c fuzz.Continue) {
    			// We have to customize the randomization of TypeMetas because their
    			// APIVersion and Kind must remain blank in memory.
    			j.APIVersion = c.RandString()
    			j.Kind = c.RandString()
    			j.Namespace = c.RandString()
    			j.Name = c.RandString()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    The difference between these types of plugins lies in the scope of their application:
    
    Project Plugin :: A project plugin is a plugin that is applied to a specific project in a build.
    It can customize the build logic, add tasks, and configure the project-specific settings.
    
    Settings Plugin :: A settings plugin is a plugin that is applied in the `settings.gradle` or `settings.gradle.kts` file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. operator/README.md

    kind: IstioOperator
    spec:
      values:
        pilot:
          traceSampling: 0.1 # override from 1.0
    ```
    
    ### Advanced K8s resource overlays
    
    Advanced users may occasionally have the need to customize parameters (like container command line flags) which are not
    exposed through either of the installation or configuration APIs described in this document. For such cases, it's
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    The rest of the chapter explains the different ways to customize the build to your requirements when building libraries and applications.
    
    [[sec:introducing_build_variants-cpp]]
    == Introducing build variants
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    [[sec:command_line_logging]]
    == Logging options
    
    === Setting log level
    You can customize the <<logging.adoc#logging,verbosity>> of Gradle logging with the following options, ordered from least verbose to most verbose.
    
    `-Dorg.gradle.logging.level=(quiet,warn,lifecycle,info,debug)`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. cluster/gce/config-default.sh

    if [[ ${KUBE_ENABLE_INSECURE_REGISTRY:-false} == "true" ]]; then
      EXTRA_DOCKER_OPTS="${EXTRA_DOCKER_OPTS} --insecure-registry 10.0.0.0/8"
    fi
    
    # Optional: customize runtime config
    RUNTIME_CONFIG="${KUBE_RUNTIME_CONFIG:-}"
    
    if [[ "${KUBE_FEATURE_GATES:-}" == "AllAlpha=true" ]]; then
      export RUNTIME_CONFIG="${KUBE_RUNTIME_CONFIG:-api/all=true}"
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

     * <<publishing_ivy.adoc#publishing_ivy,Ivy Publish Plugin>>
    
    [[sec:jar_manifest]]
    === Modifying the JAR manifest
    
    Each instance of the `Jar`, `War` and `Ear` tasks has a `manifest` property that allows you to customize the _MANIFEST.MF_ file that goes into the corresponding archive. The following example demonstrates how to set attributes in the JAR's manifest:
    
    .Customization of MANIFEST.MF
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/RepositorySystemSupplier.java

     * <p>
     * Since Resolver 2.0 this class offers access to various components via public getters, and allows even partial object
     * graph construction.
     * <p>
     * Extend this class {@code createXXX()} methods and override to customize, if needed. The contract of this class makes
     * sure that these (potentially overridden) methods are invoked only once, and instance created by those methods are
     * memorized and kept as long as supplier instance is kept open.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemSupplier.java

     * <p>
     * Since Resolver 2.0 this class offers access to various components via public getters, and allows even partial object
     * graph construction.
     * <p>
     * Extend this class {@code createXXX()} methods and override to customize, if needed. The contract of this class makes
     * sure that these (potentially overridden) methods are invoked only once, and instance created by those methods are
     * memorized and kept as long as supplier instance is kept open.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 45.5K bytes
    - Viewed (0)
Back to top