Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 84 for Strip (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      ];
    }
    
    def StripNoinlineAttributePass : Pass<"tf-strip-noinline-attribute", "ModuleOp"> {
      let summary = "Strip the tf._noinline attribute from top-level functions.";
      let constructor = "TF::CreateStripNoinlineAttributePass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. hack/lib/golang.sh

          # fully-qualified Go package name.
          echo "${target}"
          continue
        fi
    
        if [[ "${target}" =~ ^vendor/ ]]; then
          # Strip vendor/ prefix, since we're building in gomodule mode.  This is
          # for backwards compatibility.
          echo "${target#"vendor/"}"
          continue
        fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. pkg/kube/inject/inject_test.go

    							break
    						}
    					}
    					if !hasExpectedLog {
    						t.Fatal("expected log but got none")
    					}
    				}
    
    				// The version string is a maintenance pain for this test. Strip the version string before comparing.
    				gotBytes := util.StripVersion(got.Bytes())
    				wantBytes := util.ReadGoldenFile(t, gotBytes, wantFilePath)
    
    				util.CompareBytes(t, gotBytes, wantBytes, wantFilePath)
    			})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/context.go

    	out.IstioVersion = ParseIstioVersion(metadata.IstioVersion)
    	return out, nil
    }
    
    // ParseIstioVersion parses a version string and returns IstioVersion struct
    func ParseIstioVersion(ver string) *IstioVersion {
    	// strip the release- prefix if any and extract the version string
    	ver = istioVersionRegexp.FindString(strings.TrimPrefix(ver, "release-"))
    
    	if ver == "" {
    		// return very large values assuming latest version
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	if trimPath == "" {
    		// If the trim path is not configured, try to guess it heuristically:
    		// search for basename of each search path in the original path and, if
    		// found, strip everything up to and including the basename. So, for
    		// example, given original path "/some/remote/path/my-project/foo/bar.c"
    		// and search path "/my/local/path/my-project" the heuristic will return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    // slice or array being indexed, but no other part of the memory allocation.
    func (p *Package) checkIndex(sb, sbCheck *bytes.Buffer, arg ast.Expr, i int) bool {
    	// Strip type conversions.
    	x := arg
    	for {
    		c, ok := x.(*ast.CallExpr)
    		if !ok || len(c.Args) != 1 {
    			break
    		}
    		if !p.isType(c.Fun) && !p.isUnsafeData(c.Fun, false) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  7. src/crypto/x509/parser.go

    			return "", errors.New("invalid UTF-8 string")
    		}
    		return string(value), nil
    	case cryptobyte_asn1.Tag(asn1.TagBMPString):
    		if len(value)%2 != 0 {
    			return "", errors.New("invalid BMPString")
    		}
    
    		// Strip terminator if present.
    		if l := len(value); l >= 2 && value[l-1] == 0 && value[l-2] == 0 {
    			value = value[:l-2]
    		}
    
    		s := make([]uint16, 0, len(value)/2)
    		for len(value) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/macho.go

    	addsym := func(s loader.Sym) {
    		sortsym = append(sortsym, s)
    		nkind[symkind(ldr, s)]++
    	}
    
    	// On Mach-O, even with -s, we still need to keep dynamically exported and
    	// referenced symbols. We can strip defined local text and data symbols.
    	// So *FlagS is applied based on symbol type.
    
    	// Add special runtime.text and runtime.etext symbols (which are local).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  9. src/net/url/url.go

    // url was received in an HTTP request, so the url is interpreted
    // only as an absolute URI or an absolute path.
    // The string url is assumed not to have a #fragment suffix.
    // (Web browsers strip #fragment before sending the URL to a web server.)
    func ParseRequestURI(rawURL string) (*URL, error) {
    	url, err := parse(rawURL, true)
    	if err != nil {
    		return nil, &Error{"parse", rawURL, err}
    	}
    	return url, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  10. pkg/kube/inject/webhook.go

    // idempotency by handling an edge case where an injection template is modifying a container already
    // present in the pod spec. In these cases, the logic to strip injected containers would remove the
    // original injected parts as well, leading to the templating logic being different (for example,
    // reading the .Spec.Containers field would be empty).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top