Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for allStars (0.12 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. src/go/build/testdata/alltags/alltags.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 19:36:46 UTC 2022
    - 176 bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/status/util/stats.go

    		return nil, false, fmt.Errorf("listener_manager.workers_started is not yet updated: %s", stats.String())
    	}
    
    	s := &Stats{}
    	allStats := []*stat{
    		{name: statServerState, value: &s.ServerState},
    		{name: statWorkersStarted, value: &s.WorkersStarted},
    	}
    	if err := parseStats(stats, allStats); err != nil {
    		return nil, false, err
    	}
    
    	return &s.ServerState, s.WorkersStarted == 1, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 21 15:50:49 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/go/build/testdata/alltags/x_netbsd_arm.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 19:36:46 UTC 2022
    - 176 bytes
    - Viewed (0)
Back to top