Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 510 for v0Version (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

                // Dependency is mutated after observation
                version {
                    require("2.0")
                }
            }
        }
    }
    ----
    ======
    =====
    
    In the above example, the build logic uses iteration and mutation to try to set a default version for a particular dependency if the version is not already set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    In this case, you can decide to:
    
    - ignore the signature for this artifact and trust the different possible checksums (both for the old artifact and the new version)
    - or cleanup your mirror so that it contains the same version as in Maven Central
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            String version = null;
            final String modelId = result.getModelIds().get(modelIndex);
    
            if (!modelId.isEmpty()) {
                version = result.getRawModel(modelId).map(Model::getVersion).orElse(null);
                if (version == null) {
                    version = inheritedVersion(result, modelIndex + 1);
                }
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    }
    
    // GroupVersion contains the "group/version" and "version" string of a version.
    // It is made a struct to keep extensibility.
    type GroupVersionForDiscovery struct {
    	// groupVersion specifies the API group and version in the form "group/version"
    	GroupVersion string `json:"groupVersion" protobuf:"bytes,1,opt,name=groupVersion"`
    	// version specifies the version in the form of "version". This is to save
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  5. cmd/batch-handlers.go

    	var format, version uint16
    	switch {
    	case job.Replicate != nil:
    		version = batchReplVersionV1
    		format = batchReplFormat
    	case job.KeyRotate != nil:
    		version = batchKeyRotateVersionV1
    		format = batchKeyRotationFormat
    	case job.Expire != nil:
    		version = batchExpireVersionV1
    		format = batchExpireFormat
    	default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

    /*
     * Copyright 2023 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        /* MNG-2174*/
        @Test
        void testPluginManagementDependencies() throws Exception {
            PomTestWrapper pom = buildPom("plugin-management-dependencies/sub", "test");
            assertEquals("1.0-alpha-21", pom.getValue("build/plugins[1]/version"));
            assertEquals("1.0", pom.getValue("build/plugins[1]/dependencies[1]/version"));
        }
    
        /* MNG-3877*/
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  8. internal/s3select/select_test.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation.go

    			}
    		}
    		// this matches the APIService version field validation
    		if len(gv.Version) == 0 {
    			allErrors = append(allErrors, field.Invalid(fldPath.Child("apiVersion"), gvk.APIVersion, "version must be specified"))
    		} else {
    			if errs := utilvalidation.IsDNS1035Label(gv.Version); len(errs) > 0 {
    				allErrors = append(allErrors, field.Invalid(fldPath.Child("apiVersion"), gv.Version, strings.Join(errs, ",")))
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                if (version != null) {
                    return "id '" + pluginId + "' version '" + version + "'";
                }
                return "id '" + pluginId + "'";
            }
    
            @Override
            public String nestedPluginDependencySpec(String pluginId, @Nullable String version) {
                if (version != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
Back to top