Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 973 for multOp (0.11 sec)

  1. releasenotes/notes/29894.yaml

    kind: feature
    area: istioctl
    issue:
      - 29026
    
    releaseNotes:
    - |
      **Added** `WorkloadEntry` resources will be read from all clusters in multi-cluster installations and do not need to be duplicated.
      Makes Virtual Machine auto-registration compatible with multi-primary multi-cluster. This feature is diabled by default and can be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 14 20:15:28 UTC 2021
    - 461 bytes
    - Viewed (0)
  2. docs/iam/policies/pbac-tests.sh

    	echo "BUG: PutObject to bucket: multi-key-poc without sse-kms should fail. Succedded"
    	exit 1
    fi
    
    ./mc cp /etc/hosts myminio1/multi-key-poc/hosts --enc-kms "myminio1/multi-key-poc/hosts=minio-default-key"
    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: PutObject to bucket: multi-key-poc with valid sse-kms should succeed. Failed"
    	exit 1
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/net/http/pattern.go

    	// pattern ends in a multi. In that case, that multi is more general
    	// than the remainder of the longer pattern, so combine those two relationships.
    	if len(segs1) < len(segs2) && p1.lastSegment().multi {
    		return combineRelationships(rel, moreGeneral)
    	}
    	if len(segs2) < len(segs1) && p2.lastSegment().multi {
    		return combineRelationships(rel, moreSpecific)
    	}
    	return disjoint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/JvmApplicationProjectInitDescriptor.java

            switch (subproject) {
                case "app":
                    return newArrayList("multi/app/App", "multi/app/MessageUtils");
                case "list":
                    return newArrayList("multi/list/LinkedList");
                case "utilities":
                    return newArrayList("multi/utilities/JoinUtils", "multi/utilities/SplitUtils", "multi/utilities/StringUtils");
                default:
                    return new ArrayList<>();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 20:23:37 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr5_build_scripts.adoc

    For example:
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    defaultTasks("some-task")      // Delegates to Project.defaultTasks()
    reportsDir = file("reports")   // Delegates to Project.file() and the Java Plugin
    ----
    =====
    [.multi-language-sample]
    =====
    [source, groovy]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    This is sometimes referred to as a multi-module project.
    Gradle refers to modules as subprojects.
    
    A multi-project build consists of one root project and one or more subprojects.
    
    [[sec:project_structure]]
    == Multi-Project structure
    
    The following represents the structure of a multi-project build that contains two subprojects:
    
    image::multi-project-structure.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/ClasspathElementTransformTest.groovy

            }
        }
    
        def "instrumentation for #factory produces multi-release jar from multi-release original"() {
            given:
            def testFile = jar(testDir.file("thing.jar")) {
                manifest {
                    mainAttributes.putValue("Multi-Release", "true")
                }
    
                entry("Foo.class", classOne())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    It contains dependencies and other build information that is common to multiple subprojects:
    
    [.multi-language-sample]
    =====
    .shared.gradle.kts
    [source, kotlin]
    ----
    repositories {
        mavenCentral()
    }
    
    dependencies {
        implementation("org.slf4j:slf4j-api:1.7.32")
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .shared.gradle
    [source, groovy]
    ----
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/mesh.yaml.golden

      annotations:
        internal.istio.io/parents: HTTPRoute/multi-service.default
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: multi-service-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - echo-1.default.svc.domain.suffix
      http:
      - match:
        - port: 80
        name: default.multi-service.0
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_builds.adoc

    A multi-project build is the standard in Gradle.
    
    image::structuring-builds-1.png[]
    
    A multi-project build consists of one root project and one or more subprojects.
    Gradle can build the root project and any number of the subprojects in a single execution.
    
    [[sub:project_locations]]
    == Project locations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:33:43 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top