Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 127 for Trimmed (0.12 sec)

  1. src/cmd/go/testdata/script/build_trimpath_goroot.txt

    # It should instead return the empty string, since we know that we don't
    # have a valid path to return.
    
    [trimpath] env GOROOT=
    [trimpath] ! go env GOROOT
    [trimpath] stderr '^go: cannot find GOROOT directory: ''go'' binary is trimmed and GOROOT is not set$'
    [trimpath] env GOROOT=$TESTGO_GOROOT
    
    [short] stop
    
    # With GOROOT still set, 'go build' and 'go test -c'
    # should cause runtime.GOROOT() to report either the correct GOROOT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2_test.go

    	}
    
    	// Test trimmed
    	xl2 = xlMetaV2{}
    	trimmed := xlMetaV2TrimData(serialized)
    	failOnErr(xl2.Load(trimmed))
    	if len(xl2.data) != 0 {
    		t.Fatal("data, was not trimmed, bytes left:", len(xl2.data))
    	}
    	// Corrupt metadata, last 5 bytes is the checksum, so go a bit further back.
    	trimmed[len(trimmed)-10] += 10
    	if err := xl2.Load(trimmed); err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. src/text/template/parse/lex.go

    	"with":     itemWith,
    }
    
    const eof = -1
    
    // Trimming spaces.
    // If the action begins "{{- " rather than "{{", then all space/tab/newlines
    // preceding the action are trimmed; conversely if it ends " -}}" the
    // leading spaces are trimmed. This is done entirely in the lexer; the
    // parser never sees it happen. We require an ASCII space (' ', \t, \r, \n)
    // to be present to avoid ambiguity with things like "{{-3}}". It reads
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  4. pkg/kubelet/network/dns/dns.go

    	options = []string{}
    
    	var allErrors []error
    	lines := strings.Split(string(file), "\n")
    	for l := range lines {
    		trimmed := strings.TrimSpace(lines[l])
    		if strings.HasPrefix(trimmed, "#") {
    			continue
    		}
    		fields := strings.Fields(trimmed)
    		if len(fields) == 0 {
    			continue
    		}
    		if fields[0] == "nameserver" {
    			if len(fields) >= 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/benchmark.cc

          sum_us_best += us;
          ++count_us_best;
        }
      }
      // Prepare nicely-formatted data.
      const int kBufSize = 1000;
      char buf[kBufSize];
      snprintf(buf, kBufSize, "Mean with %2.0f%% trimmed:", trim_ratio * 100);
      std::string label_trimmed(buf);
      snprintf(buf, kBufSize, "Mean of %2.0f%% best:", best_ratio * 100);
      std::string label_best(buf);
      std::vector<std::pair<std::string, double>> groups = {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 19:45:29 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/trim_functions_tf.cc

    #include "mlir/IR/SymbolTable.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    
    // The cmd line flag to specify the allowlist of functions. Rest are trimmed
    // after this pass is run.
    namespace mlir {
    namespace TFL {
    namespace {
    #define GEN_PASS_DEF_TRIMFUNCTIONSPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 07 21:08:41 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  7. src/text/template/doc.go

    delimiter (by default "{{") is followed immediately by a minus sign and white
    space, all trailing white space is trimmed from the immediately preceding text.
    Similarly, if the right delimiter ("}}") is preceded by white space and a minus
    sign, all leading white space is trimmed from the immediately following text.
    In these trim markers, the white space must be present:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/trim.go

    // instructions.
    func emptyBlock(b *Block) bool {
    	for _, v := range b.Values {
    		if v.Op != OpPhi {
    			return false
    		}
    	}
    	return true
    }
    
    // trimmableBlock reports whether the block can be trimmed from the CFG,
    // subject to the following criteria:
    //   - it should not be the first block.
    //   - it should be BlockPlain.
    //   - it should not loop back to itself.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/extract_test.go

    }
    func (o *fakeDeployment) GetObjectKind() runtimeschema.ObjectKind {
    	return runtimeschema.EmptyObjectKind
    }
    func (o *fakeDeployment) DeepCopyObject() runtime.Object {
    	return o
    }
    
    // trimmed up schema for test purposes
    const schemaYAML = typed.YAMLObject(`types:
    - name: io.k8s.api.apps.v1.Deployment
      map:
        fields:
        - name: apiVersion
          type:
            scalar: string
        - name: kind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 22 22:32:45 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/Cookie.kt

        }
    
        fun name(name: String) =
          apply {
            require(name.trim() == name) { "name is not trimmed" }
            this.name = name
          }
    
        fun value(value: String) =
          apply {
            require(value.trim() == value) { "value is not trimmed" }
            this.value = value
          }
    
        fun expiresAt(expiresAt: Long) =
          apply {
            var expiresAt = expiresAt
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top