Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Strip (0.7 sec)

  1. configure.py

        except subprocess.CalledProcessError as e:
          output = e.output
      else:
        output = subprocess.check_output(cmd, stderr=stderr)
      return output.decode('UTF-8').strip()
    
    
    def cygpath(path):
      """Convert path from posix to windows."""
      return os.path.abspath(path).replace('\\', '/')
    
    
    def get_python_path(environ_cp, python_bin_path):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  2. src/cmd/link/internal/ld/lib.go

    			Exitf("%s: finding dsymutil failed: %v\n%s", os.Args[0], err, out)
    		}
    		dsymutilCmd := strings.TrimSuffix(string(out), "\n")
    
    		cc[len(cc)-1] = "strip"
    		out, err = exec.Command(cc[0], cc[1:]...).CombinedOutput()
    		if err != nil {
    			Exitf("%s: finding strip failed: %v\n%s", os.Args[0], err, out)
    		}
    		stripCmd := strings.TrimSuffix(string(out), "\n")
    
    		dsym := filepath.Join(*flagTmpdir, "go.dwarf")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/net/http/client_test.go

    	testCases := []struct {
    		desc string
    		in   string
    		out  string
    	}{
    		{
    			desc: "Strip password from error message",
    			in:   "http://user:******@****.***d/",
    			out:  `Get "http://user:***@dummy.faketld/": dummy impl`,
    		},
    		{
    			desc: "Don't Strip password from domain name",
    			in:   "http://user:******@****.***d/",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. src/time/time.go

    // Because t.AddDate(y, m, d), t.Round(d), and t.Truncate(d) are wall time
    // computations, they always strip any monotonic clock reading from their results.
    // Because t.In, t.Local, and t.UTC are used for their effect on the interpretation
    // of the wall time, they also strip any monotonic clock reading from their results.
    // The canonical way to strip a monotonic clock reading is to use t = t.Round(0).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    func isPodUpdated(oldPod, newPod *v1.Pod) bool {
    	strip := func(pod *v1.Pod) *v1.Pod {
    		p := pod.DeepCopy()
    		p.ResourceVersion = ""
    		p.Generation = 0
    		p.Status = v1.PodStatus{
    			ResourceClaimStatuses: pod.Status.ResourceClaimStatuses,
    		}
    		p.ManagedFields = nil
    		p.Finalizers = nil
    		return p
    	}
    	return !reflect.DeepEqual(strip(oldPod), strip(newPod))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K 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. pilot/pkg/networking/core/listener.go

    	filterChains := make([]*listener.FilterChain, 0, len(opts.filterChainOpts))
    	var listenerFilters []*listener.ListenerFilter
    
    	// Strip PROXY header first for non-QUIC traffic if requested.
    	if opts.needPROXYProtocol {
    		listenerFilters = append(listenerFilters, xdsfilters.ProxyProtocol)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/net/http/request.go

    	if justAuthority {
    		rawurl = "http://" + rawurl
    	}
    
    	if req.URL, err = url.ParseRequestURI(rawurl); err != nil {
    		return nil, err
    	}
    
    	if justAuthority {
    		// Strip the bogus "http://" back off.
    		req.URL.Scheme = ""
    	}
    
    	// Subsequent lines: Key: value.
    	mimeHeader, err := tp.ReadMIMEHeader()
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/type.go

    // that owns methods with receiver parameter t.
    // The result is either a named type or an anonymous struct.
    func ReceiverBaseType(t *Type) *Type {
    	if t == nil {
    		return nil
    	}
    
    	// Strip away pointer if it's there.
    	if t.IsPtr() {
    		if t.Sym() != nil {
    			return nil
    		}
    		t = t.Elem()
    		if t == nil {
    			return nil
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    				// consider checks as matching from the beginning of the actual
    				// assembler source (that is, what is left on each line of the
    				// compile -S output after we strip file/line info) to avoid
    				// trivial bugs such as "ADD" matching "FADD". This
    				// doesn't remove genericity: it's still possible to write
    				// something like "F?ADD", but we make common cases simpler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top