Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 168 for comp (0.06 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/jvm/component/internal/DefaultJvmSoftwareComponentIntegrationTest.groovy

                components {
                    thing(JvmSoftwareComponentInternal)
                    comp(JvmSoftwareComponentInternal)
                }
    
                task verify {
                    assert components.thing instanceof DefaultJvmSoftwareComponent
                    assert components.comp instanceof DefaultJvmSoftwareComponent
                }
            """
    
            expect:
            succeeds "verify"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:18:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. pkg/kube/multicluster/component.go

    	comp := m.constructor(cluster)
    	m.mu.Lock()
    	defer m.mu.Unlock()
    	m.clusters[cluster.ID] = comp
    	return comp
    }
    
    func (m *Component[T]) clusterUpdated(cluster *Cluster) ComponentConstraint {
    	// Build outside of the lock, in case its slow
    	comp := m.constructor(cluster)
    	old, f := m.clusters[cluster.ID]
    	m.mu.Lock()
    	m.clusters[cluster.ID] = comp
    	m.mu.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/MissingLocalArtifactMetadataTest.groovy

            withClassifier.toString() == "name-classifier.ext (<comp>)"
    
            def noExtension = localArtifactIdentifier(componentId, "name", "type", null, 'classifier')
            noExtension.displayName == "name-classifier (<comp>)"
            noExtension.toString() == "name-classifier (<comp>)"
        }
    
        def "is equal when all attributes and module version are the same"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/net/file_plan9.go

    		}
    	}
    
    	path, err := syscall.Fd2path(int(f.Fd()))
    	if err != nil {
    		return nil, os.NewSyscallError("fd2path", err)
    	}
    	comp := splitAtBytes(path, "/")
    	n := len(comp)
    	if n < 3 || comp[0][0:3] != "net" {
    		return nil, syscall.EPLAN9
    	}
    
    	name := comp[2]
    	switch file := comp[n-1]; file {
    	case "ctl", "clone":
    		fd, err := syscall.Dup(int(f.Fd()), -1)
    		if err != nil {
    			return nil, os.NewSyscallError("dup", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/SourceSetDependenciesIntegrationTest.groovy

            app.library.sourceFiles*.writeToDir(file("src/main"))
            app.library.headerFiles*.writeToDir(file("src/library"))
    
            buildFile << """
    apply plugin: 'c'
    
    model {
        components { comp ->
            library(NativeLibrarySpec)
            main(NativeExecutableSpec) {
                sources {
                    c.lib \$.components.library.sources.c
                }
            }
        }
    }
    """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentBinarySourcesIntegrationTest.groovy

                sources {
                    comp(CustomLanguageSourceSet)
                }
                binaries.all {
                    sources {
                        bin(CustomLanguageSourceSet)
                    }
                }
            }
        }
        tasks {
            verify(Task) {
                doLast {
                    def comp = $.components.mylib
                    def binary = comp.binaries.main
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/util/WrapUtil.java

         */
        @SafeVarargs
        @SuppressWarnings("varargs")
        public static <T> SortedSet<T> toSortedSet(Comparator<T> comp, T... items) {
            logDeprecation(7);
            SortedSet<T> coll = new TreeSet<T>(comp);
            Collections.addAll(coll, items);
            return coll;
        }
    
        /**
         * Wraps the given items in a mutable list.
         */
        @SafeVarargs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 28 16:04:22 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. src/archive/zip/register.go

    func RegisterDecompressor(method uint16, dcomp Decompressor) {
    	if _, dup := decompressors.LoadOrStore(method, dcomp); dup {
    		panic("decompressor already registered")
    	}
    }
    
    // RegisterCompressor registers custom compressors for a specified method ID.
    // The common methods [Store] and [Deflate] are built in.
    func RegisterCompressor(method uint16, comp Compressor) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/EclipseModelTest.groovy

            then:
            model.wtp.component == component
            model.wtp.facet == facet
            model.wtp.facet.facets.empty
    
            when: "configure wtp component and facet"
            model.wtp.component({ comp -> comp.deployName = 'name' } as Action<EclipseWtpComponent>)
            model.wtp.facet({ fac -> fac.facets.add(new Facet()) } as Action<EclipseWtpFacet>)
    
            then:
            model.wtp.component.deployName == 'name'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilderSpec.groovy

      x:U:1 -> x:U:1 - Could not resolve x:U:1.
    """
        }
    
        private void node(String module, ComponentSelectionReason reason = ComponentSelectionReasons.requested()) {
            DummyModuleVersionSelection moduleVersion = comp(module, reason)
            builder.startVisitComponent(moduleVersion.resultId, moduleVersion.selectionReason, "repo")
            builder.visitComponentDetails(moduleVersion.componentId, moduleVersion.moduleVersion)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top