Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 402 for comp (0.04 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

                version = '1.0'
    
                def comp = new TestComponent()
                comp.usages.add(new TestUsage(
                        name: 'api',
                        usage: objects.named(Usage, 'api'),
                        dependencies: configurations.implementation.allDependencies,
                        attributes: testAttributes))
    
                comp.usages.add(new TestUsage(
                        name: 'impl',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenGradleModuleMetadataPublishIntegrationTest.groovy

                version = '1.0'
    
                def comp = new TestComponent()
                comp.usages.add(new TestUsage(
                        name: 'api',
                        usage: objects.named(Usage, 'api'),
                        dependencies: configurations.implementation.allDependencies,
                        attributes: testAttributes))
    
                comp.usages.add(new TestUsage(
                        name: 'impl',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    		semver:     semver,
    	}
    	for i, comp := range components {
    		if (i == 0 || semver) && strings.HasPrefix(comp, "0") && comp != "0" {
    			return nil, fmt.Errorf("illegal zero-prefixed version component %q in %q", comp, str)
    		}
    		num, err := strconv.ParseUint(comp, 10, 0)
    		if err != nil {
    			return nil, fmt.Errorf("illegal non-numeric version component %q in %q: %v", comp, str, err)
    		}
    		v.components[i] = uint(num)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleModuleMetadata.groovy

        }
    
        @Nullable
        Coords getComponent() {
            def comp = values.component
            if (comp == null || comp.url) {
                return null
            }
            return new Coords(comp.group, comp.module, comp.version)
        }
    
        @Nullable
        ModuleReference getOwner() {
            def comp = values.component
            if (comp == null || !comp.url) {
                return null
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. src/image/jpeg/scan.go

    	// The h0, mxx, by and bx variables have the same meaning as in the
    	// processSOS method.
    	h0 := d.comp[0].h
    	mxx := (d.width + 8*h0 - 1) / (8 * h0)
    	for i := 0; i < d.nComp; i++ {
    		if d.progCoeffs[i] == nil {
    			continue
    		}
    		v := 8 * d.comp[0].v / d.comp[i].v
    		h := 8 * d.comp[0].h / d.comp[i].h
    		stride := mxx * d.comp[i].h
    		for by := 0; by*v < d.height; by++ {
    			for bx := 0; bx*h < d.width; bx++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. 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)
Back to top