Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for dropRune (0.12 sec)

  1. internal/s3select/sql/stringfuncs.go

    				return true, nil
    			}
    
    		case underscore:
    			if len(s) == 0 {
    				text, ok = dropRune(text)
    				if !ok {
    					return false, nil
    				}
    				continue
    			}
    
    			text, ok = matcher(text, string(s), hasLeadingPercent)
    			if !ok {
    				return false, nil
    			}
    			hasLeadingPercent = false
    
    			text, ok = dropRune(text)
    			if !ok {
    				return false, nil
    			}
    			s = []rune{}
    
    		case escape:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  2. internal/s3select/sql/stringfuncs_test.go

    	}{
    		{"", "", false},
    		{"a", "", true},
    		{"ab", "b", true},
    		{"தமிழ்", "மிழ்", true},
    	}
    
    	for i, tc := range dropCases {
    		res, ok := dropRune(tc.input)
    		if res != tc.resultExpected || ok != tc.matchExpected {
    			t.Errorf("DropRune Case %d failed", i)
    		}
    	}
    
    	matcherCases := []struct {
    		iText, iPat        string
    		iHasLeadingPercent bool
    		resultExpected     string
    		matchExpected      bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work_edit.txt

    go work edit -go 1.18
    cmp go.work go.work.want_go_118
    
    go work edit -dropuse m
    cmp go.work go.work.want_dropuse_m
    
    go work edit -replace=x.1@v1.3.0=y.1@v1.4.0 -replace='x.1@v1.4.0 = ../z'
    cmp go.work go.work.want_add_replaces
    
    go work edit -use n -use ../a -use /b -use c -use c
    cmp go.work go.work.want_multiuse
    
    go work edit -dropuse /b -dropuse n
    cmp go.work go.work.want_multidropuse
    
    go work edit -dropreplace='x.1@v1.4.0'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/workcmd/edit.go

    			base.Fatalf("go: -use=%s: %v", arg, err)
    		}
    	})
    }
    
    // flagEditworkDropUse implements the -dropuse flag.
    func flagEditworkDropUse(arg string) {
    	workedits = append(workedits, func(f *modfile.WorkFile) {
    		if err := f.DropUse(modload.ToDirectoryPath(arg)); err != nil {
    			base.Fatalf("go: -dropdirectory=%s: %v", arg, err)
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/cmd/go/internal/workcmd/use.go

    			if dir == keepDir { // (note that dir is always non-empty)
    				nKept++
    			} else {
    				wf.DropUse(dir)
    			}
    		}
    		if keepDir != "" && nKept != 1 {
    			// If we kept more than one copy, delete them all.
    			// We'll recreate a unique copy with AddUse.
    			if nKept > 1 {
    				wf.DropUse(keepDir)
    			}
    			wf.AddUse(keepDir, "")
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. src/html/template/attr.go

    	"defer":           contentTypeUnsafe,
    	"dir":             contentTypePlain,
    	"dirname":         contentTypePlain,
    	"disabled":        contentTypePlain,
    	"draggable":       contentTypePlain,
    	"dropzone":        contentTypePlain,
    	"enctype":         contentTypeUnsafe,
    	"for":             contentTypePlain,
    	"form":            contentTypeUnsafe,
    	"formaction":      contentTypeURL,
    	"formenctype":     contentTypeUnsafe,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    		}
    	}
    
    	// TODO(#45713): Add module path to comment.
    
    	for diskPath, modulePath := range need {
    		f.AddNewUse(diskPath, modulePath)
    	}
    	f.SortBlocks()
    }
    
    func (f *WorkFile) DropUse(path string) error {
    	for _, d := range f.Use {
    		if d.Path == path {
    			d.Syntax.markRemoved()
    			*d = Use{}
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier_test.go

    	`)
    
    	testCases := []struct {
    		nfacctEnsured  bool
    		tcpLiberal     bool
    		dropRule       string
    		nfAcctCounters map[string]bool
    	}{
    		{
    			nfacctEnsured:  false,
    			tcpLiberal:     false,
    			nfAcctCounters: map[string]bool{},
    			dropRule:       "-A KUBE-FORWARD -m conntrack --ctstate INVALID -j DROP",
    		},
    		{
    			nfacctEnsured: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // replacing any existing godebug lines with the given key.
    //
    // The -dropgodebug=key flag drops any existing godebug lines
    // with the given key.
    //
    // The -use=path and -dropuse=path flags
    // add and drop a use directive from the go.work file's set of module directories.
    //
    // The -replace=old[@v]=new[@v] flag adds a replacement of the given
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top