Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for allStars (0.22 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-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. 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)
  6. 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)
  7. pkg/env/var_test.go

    // in order to generate documentation for these uses.
    package env
    
    import (
    	"os"
    	"testing"
    	"time"
    )
    
    const testVar = "TESTXYZ"
    
    func reset() {
    	_ = os.Unsetenv(testVar)
    	mutex.Lock()
    	allVars = make(map[string]Var)
    	mutex.Unlock()
    }
    
    func TestString(t *testing.T) {
    	reset()
    
    	ev := RegisterStringVar(testVar, "123", "")
    	v, present := ev.Lookup()
    	if v != "123" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top