Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for allStars (0.19 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            return this
        }
    
        @Override
        IvyFileModule dependsOn(Map<String, ?> attributes, Module target) {
            def allAttrs = [organisation: target.group, module: target.module, revision: target.version]
            allAttrs.putAll(attributes)
            dependsOn(allAttrs)
            return this
        }
    
        @Override
        IvyModule dependencyConstraint(Module target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. pkg/env/var.go

    type DurationVar struct {
    	Var
    }
    
    var (
    	allVars = make(map[string]Var)
    	mutex   sync.Mutex
    )
    
    // VarDescriptions returns a description of this process' environment variables, sorted by name.
    func VarDescriptions() []Var {
    	mutex.Lock()
    	sorted := make([]Var, 0, len(allVars))
    	for _, v := range allVars {
    		sorted = append(sorted, v)
    	}
    	mutex.Unlock()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/go/build/build_test.go

    		t.Errorf("AllTags = %v, want %v", p.AllTags, want)
    	}
    	wantFiles = []string{"alltags.go"}
    	if !reflect.DeepEqual(p.GoFiles, wantFiles) {
    		t.Errorf("GoFiles = %v, want %v", p.GoFiles, wantFiles)
    	}
    }
    
    func TestAllTagsNonSourceFile(t *testing.T) {
    	p, err := Default.ImportDir("testdata/non_source_tags", 0)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(p.AllTags) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modindex/build.go

    	}
    	n := len(l)
    	if n >= 2 && knownOS[l[n-2]] && knownArch[l[n-1]] {
    		if allTags != nil {
    			// In case we short-circuit on l[n-1].
    			allTags[l[n-2]] = true
    		}
    		return ctxt.matchTag(l[n-1], allTags) && ctxt.matchTag(l[n-2], allTags)
    	}
    	if n >= 1 && (knownOS[l[n-1]] || knownArch[l[n-1]]) {
    		return ctxt.matchTag(l[n-1], allTags)
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

        ) {
            def allArgs = tasks + getEncryptionOptions(kind) + additionalArgs + ["-s"]
            // envVars overrides encryption env vars
            def allVars = getEncryptionEnvVars(kind) + envVars
            executer.withEnvironmentVars(allVars)
            runner(*allArgs)
        }
    
        private List<String> getEncryptionOptions(EncryptionKind kind = EncryptionKind.KEYSTORE) {
            switch (kind) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/read.go

    	p.TestImports, p.TestImportPos = cleanDecls(testImportPos)
    	p.XTestImports, p.XTestImportPos = cleanDecls(xTestImportPos)
    
    	for tag := range allTags {
    		p.AllTags = append(p.AllTags, tag)
    	}
    	sort.Strings(p.AllTags)
    
    	if len(p.CgoFiles) > 0 {
    		p.SFiles = append(p.SFiles, Sfiles...)
    		sort.Strings(p.SFiles)
    	} else {
    		p.IgnoredOtherFiles = append(p.IgnoredOtherFiles, Sfiles...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

                    scala.collection.Iterable<Path> sourceJars = JavaConverters.collectionAsScalaIterable(Collections.singletonList(compilerBridgeSourceJar.toPath()));
                    List<Path> xsbtiJarsAsPath = Arrays.stream(scalaInstance.allJars()).map(File::toPath).collect(Collectors.toList());
                    scala.collection.Iterable<Path> xsbtiJars = JavaConverters.collectionAsScalaIterable(xsbtiJarsAsPath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top