Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for regexec (0.22 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    		// See computeLive for more comments.
    		for i := len(oldSched) - 1; i >= 0; i-- {
    			v := oldSched[i]
    			prefs := desired.remove(v.ID)
    			regspec := s.regspec(v)
    			desired.clobber(regspec.clobbers)
    			for _, j := range regspec.inputs {
    				if countRegs(j.regs) != 1 {
    					continue
    				}
    				desired.clobber(j.regs)
    				desired.add(v.Args[j.idx].ID, pickReg(j.regs))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. src/regexp/syntax/parse.go

    	numRegexp   int               // number of regexps allocated
    	numRunes    int               // number of runes in char classes
    	repeats     int64             // product of all repetitions seen
    	height      map[*Regexp]int   // regexp height, for height limit check
    	size        map[*Regexp]int64 // regexp compiled size, for size limit check
    }
    
    func (p *parser) newRegexp(op Op) *Regexp {
    	re := p.free
    	if re != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. fastapi/param_functions.py

            ),
        ] = None,
        pattern: Annotated[
            Optional[str],
            Doc(
                """
                RegEx pattern for strings.
                """
            ),
        ] = None,
        regex: Annotated[
            Optional[str],
            Doc(
                """
                RegEx pattern for strings.
                """
            ),
            deprecated(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/kubelet/server/server_test.go

    	}
    	return s, nil
    }
    
    func (fk *fakeKubelet) GetExec(_ context.Context, podFullName string, podUID types.UID, containerName string, cmd []string, streamOpts remotecommandserver.Options) (*url.URL, error) {
    	if fk.getExecCheck != nil {
    		fk.getExecCheck(podFullName, podUID, containerName, cmd, streamOpts)
    	}
    	// Always use testContainerID
    	resp, err := fk.streamingRuntime.GetExec(&runtimeapi.ExecRequest{
    		ContainerId: testContainerID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/describe.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package describe
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    	"io"
    	"regexp"
    	"sort"
    	"strconv"
    	"strings"
    
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. 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)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // <stddef.h>.
    # include <regex.h>  // NOLINT
    
    # define GTEST_USES_POSIX_RE 1
    
    #elif GTEST_OS_WINDOWS
    
    // <regex.h> is not available on Windows.  Use our own simple regex
    // implementation instead.
    # define GTEST_USES_SIMPLE_RE 1
    
    #else
    
    // <regex.h> may not be available on this platform.  Use our own
    // simple regex implementation instead.
    # define GTEST_USES_SIMPLE_RE 1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. pkg/apis/certificates/validation/validation_test.go

    		// csr being validated
    		csr *capi.CertificateSigningRequest
    
    		// options that allow the csr to pass validation
    		lenientOpts certificateValidationOptions
    
    		// regexes matching expected errors when validating strictly
    		strictRegexes []regexp.Regexp
    
    		// expected errors (after filtering out errors matched by strictRegexes) when validating strictly
    		strictErrs []string
    	}{
    		// valid strict cases
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
Back to top