Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 3,235 for Managed (0.11 sec)

  1. maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderTest.java

        }
    
        /**
         * This test has
         *   - a BOM import which itself imports the junit BOM which manages the dep to 0.1
         *   - a BOM import to the junit BOM which manages the dep to 0.2
         *   - a direct managed dependency to the dep at 0.3 (as suggested by the warning)
         * This results in 0.3 (explicit managed wins) and no warning
         */
        @Test
        void testManagedDependencyDistanceWithExplicit() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/ManagedImplSchema.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.schema;
    
    /**
     * The schema for a fully managed element. This means that we have control over all aspects of the lifecycle of the element: the actual
     * implementation of the element, plus the implementation and instantiation of views for the instance.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 979 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testing/testfieldmanager.go

    }
    
    // Apply applies the given object on top of the current liveObj, for the
    // given manager and force flag.
    func (f *TestFieldManagerImpl) Apply(obj runtime.Object, manager string, force bool) error {
    	out, err := f.fieldManager.Apply(f.liveObj, obj, manager, force)
    	if err == nil {
    		f.liveObj = out
    	}
    	return err
    }
    
    // Update will updates the managed fields in the liveObj based on the
    // changes performed by the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. src/time/zoneinfo_wasip1.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package time
    
    // in wasip1 zoneinfo is managed by the runtime.
    var platformZoneSources = []string{}
    
    func initLocal() {
    	localLoc.name = "Local"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:10 UTC 2023
    - 307 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/ModelSetModelProjectionTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.manage.projection
    
    import org.gradle.model.Managed
    import org.gradle.model.ModelSet
    import org.gradle.model.ReadOnlyModelViewException
    import org.gradle.model.internal.core.ModelPath
    import org.gradle.model.internal.core.ModelReference
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/modelRules/configureAsRequired/groovy/build.gradle

    @Managed
    interface Person {
        String getFirstName()
        void setFirstName(String n)
    
        String getLastName()
        void setLastName(String n)
    }
    
    // tag::configure-rule[]
    model {
        person {
            println "configuring person"
            lastName = "Smith"
        }
    }
    // end::configure-rule[]
    model {
        person(Person) {
            firstName = "John"
        }
        tasks {
            showPerson(Task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 648 bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

            if (preManagedVersion != null) {
                details.add("version managed from " + preManagedVersion);
            }
    
            String preManagedScope = DependencyManagerUtils.getPremanagedScope(node);
            if (preManagedScope != null) {
                details.add("scope managed from " + preManagedScope);
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/DefaultBuildControllerTest.groovy

            when:
            controller.getBuildModel()
    
            then:
            IllegalStateException e = thrown()
            e.message == "A build controller cannot be used from a thread that is not managed by Gradle."
        }
    
        def "adapts model not found exception to protocol exception"() {
            def failure = new UnknownModelException("not found")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:30 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. docs/kms/README.md

    | [Gemalto KeySecure /Thales CipherTrust](https://github.com/minio/kes/wiki/Gemalto-KeySecure) | Local KMS. MinIO and KMS On-Premises.                             |
    | [Google Cloud Platform SecretManager](https://github.com/minio/kes/wiki/GCP-SecretManager)   | Cloud KMS. MinIO in combination with a managed KMS installation   |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. ci/devinfra/README.md

    [@devinfra](https://github.com/orgs/tensorflow/teams/devinfra)
    
    ********************************************************************************
    
    A directory for build and CI related scripts and jobs managed by the TensorFlow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 21:00:01 UTC 2023
    - 732 bytes
    - Viewed (0)
Back to top