Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 160 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. 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)
  4. 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)
  5. 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)
  6. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentSourceSetIntegrationTest.groovy

    apply plugin: Dump
    
    model {
        components {
            sampleLib(SampleLibrary) {
                sources {
                    compA(LibrarySourceSet) {
                        source.srcDir "src/main/comp-a"
                    }
                    compB(LibrarySourceSet) {
                        source.srcDir "src/main/comp-b"
                    }
                }
                binaries {
                    bin(SampleBinary) {
                        sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. src/image/jpeg/reader.go

    		// says that 0 means Unknown (and in practice RGB) and 1 means YCbCr.
    		return true
    	}
    	return d.comp[0].c == 'R' && d.comp[1].c == 'G' && d.comp[2].c == 'B'
    }
    
    func (d *decoder) convertToRGB() (image.Image, error) {
    	cScale := d.comp[0].h / d.comp[1].h
    	bounds := d.img3.Bounds()
    	img := image.NewRGBA(bounds)
    	for y := bounds.Min.Y; y < bounds.Max.Y; y++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  8. pilot/pkg/leaderelection/leaderelection_test.go

    	cases := []instance{}
    	for _, rev := range []string{"", "default", "not-default"} {
    		for _, loc := range []bool{false, true} {
    			for _, comp := range []string{"location", "simple"} {
    				cases = append(cases, instance{
    					revision: rev,
    					remote:   loc,
    					comp:     comp,
    				})
    			}
    		}
    	}
    
    	for _, start := range cases {
    		t.Run(fmt.Sprint(start), func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/wait.go

    	components := getControlPlaneComponents(cfg)
    
    	var errs []error
    	errChan := make(chan error, len(components))
    
    	for _, comp := range components {
    		fmt.Printf("[control-plane-check] Checking %s at %s\n", comp.name, comp.url)
    
    		go func(comp controlPlaneComponent) {
    			tr := &http.Transport{
    				TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
    			}
    			client := &http.Client{Transport: tr}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

                    dependencies { implementation(project(":sub")) }
                """
            }
            includedBuild('comp').multiProjectBuild('comp', ['sub'], createTasks).settingsFile
            buildFile << """
                tasks.named('build').configure { it.dependsOn gradle.includedBuild('comp').task(':build') }
            """
    
            when:
            run 'build'
    
            then:
            verifyTaskIds()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top