Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 195 for Strip (0.04 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftPlatformToolProvider.java

                return toolSearchPath.locate(compilerType, SymbolExtractorOsConfig.current().getExecutableName());
            }
            if (compilerType == ToolType.STRIPPER) {
                return toolSearchPath.locate(compilerType, "strip");
            }
            throw new IllegalArgumentException();
        }
    
        @Override
        public <T extends CompileSpec> org.gradle.language.base.internal.compile.Compiler<T> newCompiler(Class<T> spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/util/documentation.go

    // - A line break can be forced by adding a couple of empty spaces at the end of a text line.
    // - All indentation is removed. The resulting output is not indented.
    func LongDesc(s string) string {
    	// Strip beginning and trailing space characters (including empty lines) and split the lines into a slice
    	lines := strings.Split(strings.TrimSpace(s), "\n")
    
    	output := []string{}
    	paragraph := []string{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/strip_noinline_attribute.cc

    struct StripNoinlineAttributePass
        : public impl::StripNoinlineAttributePassBase<StripNoinlineAttributePass> {
     public:
      // void runOnOperation() override;
      void runOnOperation() override {
        // Strip the "tf._noinline" attribute from top-level functions.
        for (auto func_op : getOperation().getOps<func::FuncOp>())
          func_op->removeAttr("tf._noinline");
      }
    };
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/strip_tf_attributes.mlir

    // RUN: tf-opt %s -allow-unregistered-dialect --tf-strip-tf-attributes --split-input-file | FileCheck %s
    
    // CHECK-LABEL: strips_attributes
    // CHECK-NOT: tf
    func.func @strips_attributes(%arg0: tensor<32x28x28x1xf32> {tf._user_specified_name = "x"},
                                 %arg1: tensor<3x3x1x5xf32> {tf._user_specified_name = "w1"},
                                 %arg2: tensor<5xf32> {tf._user_specified_name = "b1"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 25 20:04:10 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/recv.go

    	return
    }
    
    // Unpointer returns T given *T or an alias thereof.
    // For all other types it is the identity function.
    // It does not look at underlying types.
    // The result may be an alias.
    //
    // Use this function to strip off the optional pointer on a receiver
    // in a field or method selection, without losing the named type
    // (which is needed to compute the method set).
    //
    // See also [typeparams.MustDeref], which removes one level of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. test/fixedbugs/issue22660.go

    	"strings"
    )
    
    func main() {
    	f, err := ioutil.TempFile("", "issue22660.go")
    	if err != nil {
    		log.Fatal(err)
    	}
    	f.Close()
    	defer os.Remove(f.Name())
    
    	// path must appear in error messages even if we strip them with -trimpath
    	path := filepath.Join("users", "xxx", "go")
    	var src bytes.Buffer
    	fmt.Fprintf(&src, "//line %s:1\n", filepath.Join(path, "foo.go"))
    
    	if err := ioutil.WriteFile(f.Name(), src.Bytes(), 0660); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/model/attr_spec.cc

      description_ = attr_def.description();
      full_type_ = attr_def.type();
      default_value_ = attr_def.default_value();
      if (str_util::StartsWith(full_type_, "list(")) {
        is_list_ = true;
        // strip surrounding "list(%s)"
        base_type_ = full_type_.substr(5, full_type_.length() - 6);
      } else {
        is_list_ = false;
        base_type_ = full_type_;
      }
    }
    
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/gover/gomod.go

    	if !strings.HasPrefix(string(line), key) {
    		return "", false
    	}
    	s := strings.TrimPrefix(string(line), key)
    	if len(s) == 0 || (s[0] != ' ' && s[0] != '\t') {
    		return "", false
    	}
    	s, _, _ = strings.Cut(s, "//") // strip comments
    	return strings.TrimSpace(s), true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:31:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/parse.go

    // syntax, but allows the minor and patch versions to be elided.
    //
    // This is a copy of the Go runtime's parseRelease from
    // https://golang.org/cl/209597.
    func parseRelease(rel string) (major, minor, patch int, ok bool) {
    	// Strip anything after a dash or plus.
    	for i := 0; i < len(rel); i++ {
    		if rel[i] == '-' || rel[i] == '+' {
    			rel = rel[:i]
    			break
    		}
    	}
    
    	next := func() (int, bool) {
    		for i := 0; i < len(rel); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 17:48:21 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcweb/insecure.go

    	// The insecure-redirect handler implementation doesn't depend or dir or env.
    	//
    	// The only effect of the directory is to determine which prefix the caller
    	// will strip from the request before passing it on to this handler.
    	return h, nil
    }
    
    func (h *insecureHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
    	if req.Host == "" && req.URL.Host == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top