Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 402 for multis (0.18 sec)

  1. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/README.adoc

    This sample shows how build logic in a multi-project build can be organized into reusable plugins.
    
    == Use case
    
    As an example, let's say a project with three subprojects produces two public Java libraries that use the third subproject as an internal shared library.
    This is the project structure:
    
    ====
    [.multi-language-sample]
    =====
    .Project structure
    [source, kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprog/crash.go

    	panic("important multi-line\nstringer message")
    }
    
    func StringerPanic() {
    	panic(exampleStringer{})
    }
    
    type examplePanicStringer struct{}
    
    func (s examplePanicStringer) String() string {
    	panic(exampleStringer{})
    }
    
    func DoubleStringerPanic() {
    	panic(examplePanicStringer{})
    }
    
    func StringPanic() {
    	panic("important multi-line\nstring message")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/structuring_software_products_details.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[tweaking_structure]]
    = Multi-project Build Considerations and Optimizations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 824 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    This sample uses this feature to configure an additional repository to be used only for specific environments.
    
    [source.multi-language-sample,kotlin]
    ----
    > gradle --init-script init.gradle.kts -q showRepos
    include::{snippetsPath}/initScripts/configurationInjection/tests-common/initScriptConfiguration.out[]
    ----
    [source.multi-language-sample,groovy]
    ----
    > gradle --init-script init.gradle -q showRepos
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/feature_request.md

    [ ] Extensions and Telemetry
    [ ] Security
    [ ] Test and Release
    [ ] User Experience
    [ ] Developer Infrastructure
    
    **Affected features (please put an X in all that apply)**
    
    [ ] Multi Cluster
    [ ] Virtual Machine
    [ ] Multi Control Plane
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:42:48 UTC 2024
    - 707 bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v6-restore.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 96 bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/persistentvolumebindercontroller.go

    	fs.Int32Var(&o.VolumeConfiguration.PersistentVolumeRecyclerConfiguration.MinimumTimeoutHostPath, "pv-recycler-minimum-timeout-hostpath", o.VolumeConfiguration.PersistentVolumeRecyclerConfiguration.MinimumTimeoutHostPath, "The minimum ActiveDeadlineSeconds to use for a HostPath Recycler pod.  This is for development and testing only and will not work in a multi-node cluster.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. tools/build-base-images.sh

    DOCKER_TARGETS="${DOCKER_TARGETS:-${defaultTargets}}"
    
    # For multi architecture building:
    # See https://medium.com/@artur.klauser/building-multi-architecture-docker-images-with-buildx-27d80f7e2408 for more info
    # * docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
    # * docker buildx create --name multi-arch --platform linux/amd64,linux/arm64 --use
    # * export DOCKER_ARCHITECTURES="linux/amd64,linux/arm64"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/config/types.go

    	// HostPath persistent volume recycling. This is for development and testing only and
    	// will not work in a multi-node cluster.
    	PodTemplateFilePathHostPath string
    	// minimumTimeoutHostPath is the minimum ActiveDeadlineSeconds to use for a HostPath
    	// Recycler pod.  This is for development and testing only and will not work in a multi-node
    	// cluster.
    	MinimumTimeoutHostPath int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/test_report_aggregation_plugin.adoc

    [[sec:test_report_aggregation_usage]]
    == Usage
    
    To use the Test Report Aggregation plugin, include the following in your build script:
    
    [.multi-language-text.lang-groovy]
    ----
    plugins {
        id 'test-report-aggregation'
    }
    ----
    [.multi-language-text.lang-kotlin]
    ----
    plugins {
        id("test-report-aggregation")
    }
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top