Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for Trune (0.06 sec)

  1. hack/verify-description.sh

            -o -wholename './release' \
            -o -wholename './target' \
            -o -wholename '*/third_party/*' \
            -o -wholename '*/vendor/*' \
            -o -wholename './pkg/*' \
          \) -prune \
        \) \
        \( -wholename './staging/src/k8s.io/api/*/v*/types.go' \
           -o -wholename './staging/src/k8s.io/kube-aggregator/pkg/apis/*/v*/types.go' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/input.go

    }
    
    func (in *input) charinfoNFKC(p int) (uint16, int) {
    	if in.bytes == nil {
    		return nfkcData.lookupString(in.str[p:])
    	}
    	return nfkcData.lookup(in.bytes[p:])
    }
    
    func (in *input) hangul(p int) (r rune) {
    	var size int
    	if in.bytes == nil {
    		if !isHangulString(in.str[p:]) {
    			return 0
    		}
    		r, size = utf8.DecodeRuneInString(in.str[p:])
    	} else {
    		if !isHangul(in.bytes[p:]) {
    			return 0
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/unicode/norm/transform.go

    		err = transform.ErrShortSrc
    	}
    	return n, n, err
    }
    
    func flushTransform(rb *reorderBuffer) bool {
    	// Write out (must fully fit in dst, or else it is an ErrShortDst).
    	if len(rb.out) < rb.nrune*utf8.UTFMax {
    		return false
    	}
    	rb.out = rb.out[rb.flushCopy(rb.out):]
    	return true
    }
    
    var errs = []error{nil, transform.ErrShortDst, transform.ErrShortSrc}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/str/str.go

    		c := s[i]
    		if c >= utf8.RuneSelf || 'A' <= c && c <= 'Z' {
    			goto Slow
    		}
    	}
    	return s
    
    Slow:
    	var b strings.Builder
    	for _, r := range s {
    		// SimpleFold(x) cycles to the next equivalent rune > x
    		// or wraps around to smaller values. Iterate until it wraps,
    		// and we've found the minimum value.
    		for {
    			r0 := r
    			r = unicode.SimpleFold(r0)
    			if r <= r0 {
    				break
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 20:08:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/mime/mediatype.go

    				// {RFC 2231 section 7}
    				// attribute-char := <any (US-ASCII) CHAR except SPACE, CTLs, "*", "'", "%", or tspecials>
    				if ch <= ' ' || ch >= 0x7F ||
    					ch == '*' || ch == '\'' || ch == '%' ||
    					isTSpecial(rune(ch)) {
    
    					b.WriteString(value[offset:index])
    					offset = index + 1
    
    					b.WriteByte('%')
    					b.WriteByte(upperhex[ch>>4])
    					b.WriteByte(upperhex[ch&0x0F])
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/regexp/syntax/make_perl_groups.pl

            push @ranges, [$start, $i-1];
          }
          $start = -1;
        }
      }
      return @ranges;
    }
    
    sub PrintClass($$@) {
      my ($cname, $name, @ranges) = @_;
      print "var code$cname = []rune{  /* $name */\n";
      for (my $i=0; $i<@ranges; $i++) {
        my @a = @{$ranges[$i]};
        printf "\t0x%x, 0x%x,\n", $a[0], $a[1];
      }
      print "}\n\n";
      my $n = @ranges;
      my $negname = $name;
      if ($negname =~ /:/) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. tools/istio-clean-iptables/pkg/cmd/root.go

    		Long:  "Script responsible for cleaning up iptables rules",
    		PreRunE: func(cmd *cobra.Command, args []string) error {
    			if err := log.Configure(logOpts); err != nil {
    				return err
    			}
    			return nil
    		},
    		RunE: func(cmd *cobra.Command, args []string) error {
    			cfg.FillConfigFromEnvironment()
    			if err := cfg.Validate(); err != nil {
    				return err
    			}
    			ext := NewDependencies(cfg)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. pkg/config/security/security.go

    	"P-521",
    	"P-384",
    	"X25519",
    	"X25519Kyber768Draft00",
    )
    
    func IsValidCipherSuite(cs string) bool {
    	if cs == "" || cs == "ALL" {
    		return true
    	}
    	if !unicode.IsNumber(rune(cs[0])) && !unicode.IsLetter(rune(cs[0])) {
    		// Not all of these are correct, but this is needed to support advanced cases like - and + operators
    		// without needing to parse the full expression
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. utils/utils.go

    			return string(strconv.AppendInt(append([]byte(frame.File), ':'), int64(frame.Line), 10))
    		}
    	}
    
    	return ""
    }
    
    func IsValidDBNameChar(c rune) bool {
    	return !unicode.IsLetter(c) && !unicode.IsNumber(c) && c != '.' && c != '*' && c != '_' && c != '$' && c != '@'
    }
    
    // CheckTruth check string true or not
    func CheckTruth(vals ...string) bool {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 22 06:43:02 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. operator/cmd/mesh/profile-diff.go

      istioctl profile diff default demo`,
    		Args: func(cmd *cobra.Command, args []string) error {
    			if len(args) != 2 {
    				return fmt.Errorf("diff requires two profiles")
    			}
    			return nil
    		},
    		RunE: func(cmd *cobra.Command, args []string) error {
    			isdifferent, err := profileDiff(cmd, pfArgs, args)
    			if err != nil {
    				return err
    			}
    			if isdifferent {
    				os.Exit(1)
    			}
    			return nil
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top