Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,163 for componentX (0.16 sec)

  1. cmd/kubeadm/app/phases/upgrade/staticpods.go

    func (spm *KubeStaticPodPathManager) PatchesDir() string {
    	return spm.patchesDir
    }
    
    // RealManifestPath gets the file path for the component in the "real" static pod manifest directory used by the kubelet
    func (spm *KubeStaticPodPathManager) RealManifestPath(component string) string {
    	return constants.GetStaticPodFilepath(component, spm.realManifestDir)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

                </md5>
             </artifact>
          </component>
       </components>
    </verification-metadata>
    """
            then:
            verifier.verificationMetadata.size() == 4
    
            def first = verifier.verificationMetadata[0]
            first.componentId.group == "org"
            first.componentId.module == "bar"
            first.componentId.version == "1.2"
            first.artifactVerifications.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishBasicIntegTest.groovy

                        maven(MavenPublication) {
                            from components.java
                            from components.web
                        }
                    }
                }
            """
            when:
            fails 'publish'
    
            then:
            failure.assertHasCause("Maven publication 'maven' cannot include multiple components")
        }
    
        def "publishes to all defined repositories"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    					},
    				},
    			},
    			versionStates: versionStates,
    			expectedBytes: []byte(`Components that must be upgraded manually after you have upgraded the control plane with 'kubeadm upgrade apply':
    COMPONENT   NODE      CURRENT   TARGET
    kubelet     node1     v1.18.1   v1.18.4
    
    Upgrade to the latest version in the v1.18 series:
    
    COMPONENT                 NODE      CURRENT   TARGET
    kube-apiserver            node1     v1.18.1   v1.18.4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

        }
    
        public static void createBuildDependentComponentsTasks(ModelMap<Task> tasks, ComponentSpecContainer components) {
            for (final VariantComponentSpec component : components.withType(NativeComponentSpec.class).withType(VariantComponentSpec.class)) {
                tasks.create(getAssembleDependentComponentsTaskName(component), DefaultTask.class, new Action<DefaultTask>() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

                List<BinarySpecInternal> notBuildable = new ArrayList<>();
                boolean hasBuildableBinaries = false;
                for (VariantComponentSpec component : components.withType(VariantComponentSpec.class)) {
                    for (BinarySpecInternal binary : component.getBinaries().withType(BinarySpecInternal.class)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublicationTest.groovy

        }
    
        def "cannot add multiple components"() {
            given:
            def publication = createPublication()
    
            when:
            publication.from(createComponent([], []))
            publication.from(Mock(SoftwareComponentInternal))
    
            then:
            def e = thrown(InvalidUserDataException)
            e.message == "Ivy publication 'pub-name' cannot include multiple components"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

          </trusted-keys>
       </configuration>
       <components>
          <component group="org" name="baz" version="1.0.0">
             <artifact name="baz-1.0.0.jar">
                <pgp value="${SigningFixtures.validPublicKeyHexString}"/>
             </artifact>
          </component>
       </components>
    </verification-metadata>
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReader.java

            private void assertInComponents() {
                assertContext(inComponents, COMPONENT, COMPONENTS);
            }
    
            private void assertInMetadata() {
                assertContext(inMetadata, COMPONENTS, VERIFICATION_METADATA);
            }
    
            private void assertValidComponent() {
                assertContext(currentComponent != null, ARTIFACT, COMPONENT);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 13:23:37 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  10. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublicationTest.groovy

            def variant2 = createVariant([artifact2], [], 'runtime')
            def component = Stub(SoftwareComponentInternal)
            component.usages >> [variant1, variant2]
            def mavenArtifact = Mock(MavenArtifact)
            mavenArtifact.file >> artifactFile
            notationParser.parseNotation(artifact1) >> mavenArtifact
    
            when:
            publication.from(component)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 24.8K bytes
    - Viewed (0)
Back to top