Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for elide (0.06 sec)

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

    env GOPROXY=$WORK/proxydir
    ! go list -versions -m golang.org/x/text
    stderr 'invalid proxy URL.*proxydir'
    
    [!net:proxy.golang.org] stop
    
    # GOPROXY HTTPS paths may elide the "https://" prefix.
    # (See golang.org/issue/32191.)
    env GOPROXY=proxy.golang.org
    env GOSUMDB=
    go list -versions -m golang.org/x/text
    
    -- go.mod --
    module example.com
    go 1.13
    -- $WORK/proxydir/README.md --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 492 bytes
    - Viewed (0)
  2. test/codegen/race.go

    // asmcheck -race
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codegen
    
    // Check that we elide racefuncenter/racefuncexit for
    // functions with no calls (but which might panic
    // in various ways). See issue 31219.
    // amd64:-"CALL.*racefuncenter.*"
    // arm64:-"CALL.*racefuncenter.*"
    // ppc64le:-"CALL.*racefuncenter.*"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 03:03:16 UTC 2020
    - 651 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/debug/debug_options.proto

      optional string print_ir_after = 6 [default = ""];
    
      // If true, always print the top-level operation when printing IR for
      // print_ir_[before|after].
      optional bool print_ir_module_scope = 7 [default = true];
    
      // Elide ElementsAttrs with \"...\" that have more elements than the given
      // upper limit.
      optional int64 elide_elementsattrs_if_larger = 8;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

      'main' entry-point, separating tensors with ':', dimension with ',', and
      using '?' for unknown sizes. For example, `input-arg-shapes=1,2::1,?`
      expresses argument shapes `[1,2]`, `[]` and `[1,?]`.
    * `--e`: Elide large elements attrs while dumping the output StableHLO.
    * `--output_filename`: Path to the output file where the textual StableHLO MLIR
      module will be written (default: stdout).
    
    
    ### Examples
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo_translate.cc

                       "Ignored for MLIR input"),
        llvm::cl::Optional, llvm::cl::init("serve"));
    
    // NOLINTNEXTLINE
    opt<bool> elide_large_elements_attrs(
        "e",
        llvm::cl::desc(
            "Elide large elements attrs while dumping the output StableHLO."),
        llvm::cl::Optional, llvm::cl::init(false));
    
    }  // namespace
    
    namespace mlir {
    
    namespace {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/regexp/syntax/compile.go

    		c.p.NumCap = int(arg) + 1
    	}
    	return f
    }
    
    func (c *compiler) cat(f1, f2 frag) frag {
    	// concat of failure is failure
    	if f1.i == 0 || f2.i == 0 {
    		return frag{}
    	}
    
    	// TODO: elide nop
    
    	f1.out.patch(c.p, f2.i)
    	return frag{f1.i, f2.out, f1.nullable && f2.nullable}
    }
    
    func (c *compiler) alt(f1, f2 frag) frag {
    	// alt of failure is other
    	if f1.i == 0 {
    		return f2
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  7. pkg/config/validation/envoyfilter/envoyfilter.go

    			deprecatedTypes = append(deprecatedTypes, newTypes...)
    		}
    		return true
    	})
    	return deprecatedTypes, topError
    }
    
    // recurseMissingTypedConfig checks that configured filters do not rely on `name` and elide `typed_config`.
    // This is temporarily enabled in Envoy by the envoy.reloadable_features.no_extension_lookup_by_name flag, but in the future will be removed.
    func recurseMissingTypedConfig(message protoreflect.Message) []string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    		// physical frame.
    		u2 := u
    		remaining, _ := traceback2(&u, showRuntime, maxInt, 0)
    		elide := remaining - lastN - tracebackOuterFrames
    		if elide > 0 {
    			print("...", elide, " frames elided...\n")
    			traceback2(&u2, showRuntime, lastN+elide, tracebackOuterFrames)
    		} else if elide <= 0 {
    			// There are tracebackOuterFrames or fewer frames left to print.
    			// Just print the rest of the stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/runtime/stack_test.go

    	})
    }
    
    func testStackWrapperPanic(t *testing.T, cb func(), expect string) {
    	// Test that the stack trace from a panicking wrapper includes
    	// the wrapper, even though elide these when they don't panic.
    	t.Run("CallersFrames", func(t *testing.T) {
    		defer func() {
    			err := recover()
    			if err == nil {
    				t.Fatalf("expected panic")
    			}
    			pcs := make([]uintptr, 10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    opt<bool> verbose(
        "v", llvm::cl::desc("Dump intermediate translations to output dir."),
        llvm::cl::Optional, llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> elide_large_elements_attrs(
        "e", llvm::cl::desc("Elide large elements attrs."), llvm::cl::Optional,
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> debug_info(
        "debug-info", llvm::cl::desc("Inclide MLIR debug location info in output."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top