Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for doGrep (0.3 sec)

  1. src/cmd/go/go_test.go

    		if re.Match(ln) {
    			return true
    		}
    	}
    	return false
    }
    
    // doGrep looks for a regular expression in a buffer and fails if it
    // is not found. The name argument is the name of the output we are
    // searching, "output" or "error". The msg argument is logged on
    // failure.
    func (tg *testgoData) doGrep(match string, b *bytes.Buffer, name, msg string) {
    	tg.t.Helper()
    	if !tg.doGrepMatch(match, b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/diag/message.go

    	docQueryString := ""
    	if m.DocRef != "" {
    		docQueryString = fmt.Sprintf("?ref=%s", m.DocRef)
    	}
    	result["documentationUrl"] = fmt.Sprintf("%s/%s/%s", url.ConfigAnalysis, strings.ToLower(m.Type.Code()), docQueryString)
    
    	return result
    }
    
    func (m *Message) AnalysisMessageBase() *v1alpha1.AnalysisMessageBase {
    	docQueryString := ""
    	if m.DocRef != "" {
    		docQueryString = fmt.Sprintf("?ref=%s", m.DocRef)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 02:05:07 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  3. pkg/config/analysis/diag/messages.go

    			continue
    		}
    		deduped = append(deduped, m)
    	}
    	return deduped
    }
    
    // SetDocRef sets the doc URL reference tracker for the messages
    func (ms *Messages) SetDocRef(docRef string) *Messages {
    	for i := range *ms {
    		(*ms)[i].DocRef = docRef
    	}
    	return ms
    }
    
    // FilterOutLowerThan only keeps messages at or above the specified output level
    func (ms *Messages) FilterOutLowerThan(outputLevel Level) Messages {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 02:47:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testplugin/testdata/issue25756/plugin/life.go

    // Double return value is just for testing.
    //
    //export GoStart
    func GoStart(i, xdim, ydim, xstart, xend, ystart, yend C.int, a *C.int, n *C.int) (int, int) {
    	c := make(chan bool, int(C.MYCONST))
    	go func() {
    		C.DoStep(xdim, ydim, xstart, xend, ystart, yend, a, n)
    		c <- true
    	}()
    	chans[i] = c
    	return int(i), int(i + 100)
    }
    
    //export GoWait
    func GoWait(i C.int) {
    	<-chans[i]
    	chans[i] = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 889 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testplugin/testdata/issue25756/plugin/life.h

    // Copyright 2010 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.
    
    extern void Step(int, int, int *, int *);
    extern void DoStep(int, int, int, int, int, int, int *, int *);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 292 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testlife/testdata/life.h

    // Copyright 2010 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.
    
    extern void Step(int, int, int *, int *);
    extern void DoStep(int, int, int, int, int, int, int *, int *);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 292 bytes
    - Viewed (0)
  7. pkg/config/analysis/diag/message_test.go

    }
    
    func TestMessageWithDocRef(t *testing.T) {
    	g := NewWithT(t)
    	mt := NewMessageType(Error, "IST0042", "Cheese type not found: %q")
    	m := NewMessage(mt, nil, "Feta")
    	m.DocRef = "test-ref"
    	g.Expect(m.Unstructured(false)["documentationUrl"]).To(Equal(url.ConfigAnalysis + "/ist0042/?ref=test-ref"))
    }
    
    func TestMessage_JSON(t *testing.T) {
    	g := NewWithT(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testlife/testdata/c-life.c

    	GoStart(2, x, y, 0, x / 2, y / 2, y, a, n);
    	GoStart(3, x, y, x / 2, x, y / 2, y, a, n);
    	GoWait(0);
    	GoWait(1);
    	GoWait(2);
    	GoWait(3);
    }
    
    // The actual computation.  This is called in parallel.
    void
    DoStep(int xdim, int ydim, int xstart, int xend, int ystart, int yend, int *a, int *n)
    {
    	int x, y, c, i, j;
    
    	for(x = xstart; x < xend; x++) {
    		for(y = ystart; y < yend; y++) {
    			c = 0;
    			for(i = -1; i <= 1; i++) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testlife/testdata/life.go

    // Double return value is just for testing.
    //
    //export GoStart
    func GoStart(i, xdim, ydim, xstart, xend, ystart, yend C.int, a *C.int, n *C.int) (int, int) {
    	c := make(chan bool, int(C.MYCONST))
    	go func() {
    		C.DoStep(xdim, ydim, xstart, xend, ystart, yend, a, n)
    		c <- true
    	}()
    	chans[i] = c
    	return int(i), int(i + 100)
    }
    
    //export GoWait
    func GoWait(i C.int) {
    	<-chans[i]
    	chans[i] = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 892 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactory.java

                        if (i != j && components.contains(asArray[j])) {
                            doDrop = true;
                            asArray[i] = null;
                            break;
                        }
                    }
                }
            }
            if (doDrop) {
                specs = Arrays.stream(asArray).filter(Objects::nonNull).collect(toSet());
            }
            return specs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.4K bytes
    - Viewed (0)
Back to top