Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 536 for NegExp (0.81 sec)

  1. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                                     data-validation="custom"
                                                     data-validation-regexp="(\+|\-)?\d+(\.\d+)?((e|E)(\+|\-)?\d+)?"
                                                     data-validation-help="number (Float)"/>
                                        </div>
                                    </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  2. operator/pkg/compare/compare.go

    	}
    	return aosm, nil
    }
    
    // buildResourceRegexp translates the resource indicator to regexp.
    func buildResourceRegexp(s string) (*regexp.Regexp, error) {
    	hash := strings.Split(s, ":")
    	for i, v := range hash {
    		if v == "" || v == "*" {
    			hash[i] = ".*"
    		}
    	}
    	return regexp.Compile(strings.Join(hash, ":"))
    }
    
    // manifestDiff an internal function to compare the manifests difference specified in the input.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_generated_main.txt

    package x
    
    import (
    	"os"
    	"path/filepath"
    	"regexp"
    	"testing"
    )
    
    func Test(t *testing.T) {
    	exePath, err := os.Executable()
    	if err != nil {
    		t.Fatal(err)
    	}
    	testmainPath := filepath.Join(filepath.Dir(exePath), "_testmain.go")
    	source, err := os.ReadFile(testmainPath)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if matched, err := regexp.Match(`(?m)^// Code generated .* DO NOT EDIT\.$`, source); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 924 bytes
    - Viewed (0)
  4. tests/fuzz/regression_test.go

    			by, err := os.ReadFile(filepath.Join(dir, c.Name()))
    			if err != nil {
    				t.Fatal(err)
    			}
    			runfuzz(t, c.Name(), by)
    		})
    	}
    }
    
    func walkMatch(root string, pattern *regexp.Regexp) ([]string, error) {
    	var matches []string
    	err := filepath.Walk(root, func(path string, info os.FileInfo, err error) error {
    		if err != nil {
    			return err
    		}
    		if filepath.Base(path) == "regression_test.go" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. src/testing/internal/testdeps/deps.go

    	"io"
    	"os"
    	"os/signal"
    	"reflect"
    	"regexp"
    	"runtime/pprof"
    	"strings"
    	"sync"
    	"time"
    )
    
    // Cover indicates whether coverage is enabled.
    var Cover bool
    
    // TestDeps is an implementation of the testing.testDeps interface,
    // suitable for passing to [testing.MainStart].
    type TestDeps struct{}
    
    var matchPat string
    var matchRe *regexp.Regexp
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java

                // basedirSysProp is non regexp and basedir too
                path = pathPattern.replace("${" + basedirSysProp + "}", basedir);
                path = path.replace("\\", "/");
                // ---------------------------------------------------------------------------------
                // I'm not sure if this last regexp was really intended to disallow the usage of
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/escaping.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cel
    
    import (
    	"regexp"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // celReservedSymbols is a list of RESERVED symbols defined in the CEL lexer.
    // No identifiers are allowed to collide with these symbols.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  8. src/regexp/syntax/prog_test.go

      5*	alt -> 3, 6
      6	match
    `},
    }
    
    func TestCompile(t *testing.T) {
    	for _, tt := range compileTests {
    		re, _ := Parse(tt.Regexp, Perl)
    		p, _ := Compile(re)
    		s := p.String()
    		if s != tt.Prog {
    			t.Errorf("compiled %#q:\n--- have\n%s---\n--- want\n%s---", tt.Regexp, s, tt.Prog)
    		}
    	}
    }
    
    func BenchmarkEmptyOpContext(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		var r1 rune = -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 04:39:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/fmahash_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa_test
    
    import (
    	"internal/testenv"
    	"path/filepath"
    	"regexp"
    	"runtime"
    	"testing"
    )
    
    // TestFmaHash checks that the hash-test machinery works properly for a single case.
    // It also runs ssa/check and gccheck to be sure that those are checked at least a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 21:57:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/inst_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package test
    
    import (
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"regexp"
    	"testing"
    )
    
    // TestInst tests that only one instantiation of Sort is created, even though generic
    // Sort is used for multiple pointer types across two packages.
    func TestInst(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top