Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for allStars (7.2 sec)

  1. src/go/printer/comment.go

    			continue
    		}
    		b := c[i]
    		if !('a' <= b && b <= 'z' || '0' <= b && b <= '9') {
    			return false
    		}
    	}
    	return true
    }
    
    // allStars reports whether text is the interior of an
    // old-style /* */ comment with a star at the start of each line.
    func allStars(text string) bool {
    	for i := 0; i < len(text); i++ {
    		if text[i] == '\n' {
    			j := i + 1
    			for j < len(text) && (text[j] == ' ' || text[j] == '\t') {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 07:35:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. 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)
  3. src/go/build/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: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

        $('#all-scenarios').removeClass('btn-outline-primary').addClass('btn-primary')
        $('#failed-scenarios').addClass('btn-outline-danger').removeClass('btn-danger')
    
        var allTags = $('#filter-popover .form-check-input').toArray().map(checkbox => checkbox.value);
        refreshCards(allTags)
    }
    
    function initTabs() {
        if (window.location.hash.length > 0) {
            allScenarioButtonClicked()
        } else if ($('#failed-scenarios').length > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestFramework.java

                        "Please either include or exclude the tag but not both.");
                } else {
                    String allTags = intersection.stream().sorted().map(s -> "'" + s + "'").collect(Collectors.joining(", "));
                    LOGGER.warn("The tags " + allTags + " are both included and excluded.  " +
                        "This will result in the tags being excluded, which may not be what was intended.  " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top