Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for regexec (0.36 sec)

  1. gradle/verification-metadata.xml

                <trusting group="^com[.]diffplug($|([.].*))" regex="true"/>
                <trusting group="^org[.]jetbrains($|([.].*))" regex="true"/>
                <trusting group="^org[.]rnorth($|([.].*))" regex="true"/>
             </trusted-key>
             <trusted-key id="8A10792983023D5D14C93B488D7F1BEC1E2ECAE7" group="^com[.]fasterxml($|([.].*))" regex="true"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    	}
    }
    
    // doGrepCount counts the number of times a regexp is seen in a buffer.
    func (tg *testgoData) doGrepCount(match string, b *bytes.Buffer) int {
    	tg.t.Helper()
    	if !tg.ran {
    		tg.t.Fatal("internal testsuite error: doGrepCount called before run")
    	}
    	re := regexp.MustCompile(match)
    	c := 0
    	for _, ln := range bytes.Split(b.Bytes(), []byte{'\n'}) {
    		if re.Match(ln) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		return remote.ErrContainerStatusNil
    	}
    	return m.ReadLogs(ctx, status.GetLogPath(), containerID.ID, logOptions, stdout, stderr)
    }
    
    // GetExec gets the endpoint the runtime will serve the exec request from.
    func (m *kubeGenericRuntimeManager) GetExec(ctx context.Context, id kubecontainer.ContainerID, cmd []string, stdin, stdout, stderr, tty bool) (*url.URL, error) {
    	req := &runtimeapi.ExecRequest{
    		ContainerId: id.ID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_test.go

    		{Match: &envoyroute.RouteMatch{PathSpecifier: &envoyroute.RouteMatch_SafeRegex{
    			SafeRegex: &matcher.RegexMatcher{
    				Regex: ".*?regex12",
    			},
    		}}},
    		{Match: &envoyroute.RouteMatch{
    			PathSpecifier: &envoyroute.RouteMatch_SafeRegex{
    				SafeRegex: &matcher.RegexMatcher{
    					Regex: "*",
    				},
    			},
    			Headers: []*envoyroute.HeaderMatcher{
    				{
    					Name: "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  5. src/testing/testing.go

    	matchList = flag.String("test.list", "", "list tests, examples, and benchmarks matching `regexp` then exit")
    	match = flag.String("test.run", "", "run only tests and examples matching `regexp`")
    	skip = flag.String("test.skip", "", "do not list or run tests matching `regexp`")
    	memProfile = flag.String("test.memprofile", "", "write an allocation profile to `file`")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier.go

    		syncPeriod:               syncPeriod,
    		iptables:                 ipt,
    		masqueradeAll:            masqueradeAll,
    		masqueradeMark:           masqueradeMark,
    		conntrack:                conntrack.NewExec(exec),
    		nfacct:                   nfacctRunner,
    		localDetector:            localDetector,
    		hostname:                 hostname,
    		nodeIP:                   nodeIP,
    		recorder:                 recorder,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package validation
    
    import (
    	"context"
    	"fmt"
    	"math"
    	"reflect"
    	"regexp"
    	"strings"
    	"sync"
    	"unicode"
    	"unicode/utf8"
    
    	celgo "github.com/google/cel-go/cel"
    
    	"k8s.io/apiextensions-apiserver/pkg/apihelpers"
    	"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    		syncPeriod:          syncPeriod,
    		nftables:            nft,
    		masqueradeAll:       masqueradeAll,
    		masqueradeMark:      masqueradeMark,
    		conntrack:           conntrack.NewExec(utilexec.New()),
    		localDetector:       localDetector,
    		hostname:            hostname,
    		nodeIP:              nodeIP,
    		recorder:            recorder,
    		serviceHealthServer: serviceHealthServer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. pkg/controller/endpointslice/endpointslice_controller_test.go

    	assert.Nil(t, err, "Expected no error fetching endpoint slices")
    	assert.Len(t, sliceList.Items, 1, "Expected 1 endpoint slices")
    	slice := sliceList.Items[0]
    	assert.Regexp(t, "^"+serviceName, slice.Name)
    	assert.Equal(t, serviceName, slice.Labels[discovery.LabelServiceName])
    	assert.EqualValues(t, []discovery.EndpointPort{}, slice.Ports)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
Back to top