Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 399 for Trune (0.03 sec)

  1. samples/ambient-argo/meta-application.yaml

        targetRevision: HEAD
      - path: application
        repoURL: '{repo-placeholder}'
        targetRevision: HEAD
        directory:
          include: application.yaml
      project: default
      syncPolicy:
        automated:
          prune: true
          selfHeal: true
        retry:
          limit: 2
          backoff:
            duration: 5s
            maxDuration: 3m0s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 630 bytes
    - Viewed (0)
  2. src/cmd/go/internal/envcmd/env_test.go

    					" isn't testing.", s)
    			}
    			if c > unicode.MaxASCII {
    				t.Skipf("skipping %#q: contains a non-ASCII character %q", s, c)
    			}
    			if !unicode.IsGraphic(rune(c)) && !unicode.IsSpace(rune(c)) {
    				t.Skipf("skipping %#q: contains non-graphic character %q", s, c)
    			}
    			if runtime.GOOS == "windows" && c == '\r' || c == '\n' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. operator/cmd/mesh/uninstall.go

    	if uiArgs.purge && (uiArgs.revision != "" || uiArgs.filename != "") {
    		l.LogAndPrint(PurgeWithRevisionOrOperatorSpecifiedWarning)
    	}
    	// If only revision flag is set, we would prune resources by the revision label.
    	// Otherwise we would merge the revision flag and the filename flag and delete resources by following the
    	// owning name label.
    	var iop *iopv1alpha1.IstioOperator
    	if uiArgs.filename == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/html/template/js.go

    	// Make sure that json.Marshal escapes codepoints U+2028 & U+2029
    	// so it falls within the subset of JSON which is valid JS.
    	for i := 0; i < len(b); {
    		rune, n := utf8.DecodeRune(b[i:])
    		repl := ""
    		if rune == 0x2028 {
    			repl = `\u2028`
    		} else if rune == 0x2029 {
    			repl = `\u2029`
    		}
    		if repl != "" {
    			buf.Write(b[written:i])
    			buf.WriteString(repl)
    			written = i + n
    		}
    		i += n
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    			r.Raw = bytes
    		},
    	}
    }
    
    // taken from gofuzz internals for RandString
    type charRange struct {
    	first, last rune
    }
    
    func (c *charRange) choose(r *rand.Rand) rune {
    	count := int64(c.last - c.first + 1)
    	ch := c.first + rune(r.Int63n(count))
    
    	return ch
    }
    
    // randomLabelPart produces a valid random label value or name-part
    // of a label key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. operator/pkg/util/path.go

    		return "", false
    	}
    	return pe[1 : len(pe)-1], true
    }
    
    // splitEscaped splits a string using the rune r as a separator. It does not split on r if it's prefixed by \.
    func splitEscaped(s string, r rune) []string {
    	var prev rune
    	if len(s) == 0 {
    		return []string{}
    	}
    	prevIdx := 0
    	var out []string
    	for i, c := range s {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. src/path/match.go

    	failed := false
    	for len(chunk) > 0 {
    		if !failed && len(s) == 0 {
    			failed = true
    		}
    		switch chunk[0] {
    		case '[':
    			// character class
    			var r rune
    			if !failed {
    				var n int
    				r, n = utf8.DecodeRuneInString(s)
    				s = s[n:]
    			}
    			chunk = chunk[1:]
    			// possibly negated
    			negated := false
    			if len(chunk) > 0 && chunk[0] == '^' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. src/encoding/json/scanner_test.go

    	"reflect"
    	"strings"
    	"testing"
    )
    
    func indentNewlines(s string) string {
    	return strings.Join(strings.Split(s, "\n"), "\n\t")
    }
    
    func stripWhitespace(s string) string {
    	return strings.Map(func(r rune) rune {
    		if r == ' ' || r == '\n' || r == '\r' || r == '\t' {
    			return -1
    		}
    		return r
    	}, s)
    }
    
    func TestValid(t *testing.T) {
    	tests := []struct {
    		CaseName
    		data string
    		ok   bool
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/input_arrays.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_translate -input-arrays=squared_difference --experimental-prune-unreachable-nodes-unconditionally --tflite-flatbuffer-to-mlir - -o -
    // TODO(b/329300758): re-enable filecheck | FileCheck %s
    // Tests -input-arrays flag.
    
    func.func @main(%arg0: tensor<4xf32>) -> tensor<4xf32> {
      %0 = "tfl.pseudo_const" () {value = dense<1.0> : tensor<4xf32>} : () -> tensor<4xf32> loc("Const")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 867 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

    // change the flag to a more lightwise flag, e.g.
    // "import_custom_ops_as_side_effect_free_ops", and let the MLIR DCE to prune
    // the operations.
    // NOLINTNEXTLINE
    static opt<bool, true> experimental_prune_unreachable_nodes_unconditionally_flg(
        "experimental-prune-unreachable-nodes-unconditionally",
        llvm::cl::desc("Prune nodes that are not ancestors of the output nodes."),
        llvm::cl::location(experimental_prune_unreachable_nodes_unconditionally),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top