Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 585 for multis (0.1 sec)

  1. 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)
  2. subprojects/core/src/main/java/org/gradle/util/internal/JarUtil.java

        // We cannot use Attributes.Name.MULTI_RELEASE as it is only available since Java 9;
        public static final String MULTI_RELEASE_ATTRIBUTE = "Multi-Release";
        // Pattern for JAR entries in the versioned directories.
        // See https://docs.oracle.com/en/java/javase/20/docs/specs/jar/jar.html#multi-release-jar-files
        private static final Pattern VERSIONED_JAR_ENTRY_PATH = Pattern.compile("^META-INF/versions/(\\d+)/.+$");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 07 19:17:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. 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)
  4. .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)
  5. test/fixedbugs/bug196.go

    package main
    
    var m = map[int]int{0: 0, 1: 0}
    var nf = 0
    var i int
    
    func multi() (int, int) { return 1, 2 }
    
    func xxx() {
    	var c chan int
    	x, ok := <-c
    
    	var m map[int]int
    	x, ok = m[1]
    
    	var i interface{}
    	var xx int
    	xx, ok = i.(int)
    
    	a, b := multi()
    
    	_, _, _, _, _ = x, ok, xx, a, b
    }
    
    func f() map[int]int {
    	nf++
    	return m
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 654 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. releasenotes/notes/multicluster-global-domain.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
        **Deprecated** the use of the `.global` stub domain for multi-primary
        (formerly "replicated control planes") multicluster configurations. The new
        onboarding flow uses a simpler configuration which allows services across
        the mesh to be accessed via `*.cluster.local`. There were several
        limitations with `.global`, such as poor load balancing when using
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 16 18:47:12 UTC 2020
    - 998 bytes
    - Viewed (0)
  10. 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)
Back to top