Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 866 for OUT (0.29 sec)

  1. src/encoding/base32/base32.go

    			return
    		}
    		e.enc.Encode(e.out[0:], e.buf[0:])
    		if _, e.err = e.w.Write(e.out[0:8]); e.err != nil {
    			return n, e.err
    		}
    		e.nbuf = 0
    	}
    
    	// Large interior chunks.
    	for len(p) >= 5 {
    		nn := len(e.out) / 8 * 5
    		if nn > len(p) {
    			nn = len(p)
    			nn -= nn % 5
    		}
    		e.enc.Encode(e.out[0:], p[0:nn])
    		if _, e.err = e.w.Write(e.out[0 : nn/5*8]); e.err != nil {
    			return n, e.err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. src/net/net_windows_test.go

    	}
    	f.Close()
    	defer os.Remove(f.Name())
    	cmd := fmt.Sprintf(`%s | Out-File "%s" -encoding UTF8`, strings.Join(args, " "), f.Name())
    	out, err := exec.Command("powershell", "-Command", cmd).CombinedOutput()
    	if err != nil {
    		if len(out) != 0 {
    			return nil, fmt.Errorf("%s failed: %v: %q", args[0], err, string(removeUTF8BOM(out)))
    		}
    		var err2 error
    		out, err2 = os.ReadFile(f.Name())
    		if err2 != nil {
    			return nil, err2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/controller.go

    func (c *Controller) Services() []*model.Service {
    	c.RLock()
    	out := make([]*model.Service, 0, len(c.servicesMap))
    	for _, svc := range c.servicesMap {
    		out = append(out, svc)
    	}
    	c.RUnlock()
    	sort.Slice(out, func(i, j int) bool { return out[i].Hostname < out[j].Hostname })
    	return out
    }
    
    // GetService implements a service catalog operation by hostname specified.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell.go

    		if dir == "" {
    			dir = p.Dir
    		}
    	}
    
    	out := string(cmdOut)
    
    	if !strings.HasSuffix(out, "\n") {
    		out = out + "\n"
    	}
    
    	// Replace workDir with $WORK
    	out = replacePrefix(out, sh.workDir, "$WORK")
    
    	// Rewrite mentions of dir with a relative path to dir
    	// when the relative path is shorter.
    	for {
    		// Note that dir starts out long, something like
    		// /foo/bar/baz/root/a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/syscall/mksyscall.pl

    	# Split into name, in params, out params.
    	if(!/^\/\/sys(nb)? (\w+)\(([^()]*)\)\s*(?:\(([^()]+)\))?\s*(?:=\s*((?i)_?SYS_[A-Z0-9_]+))?$/) {
    		print STDERR "$ARGV:$.: malformed //sys declaration\n";
    		$errors = 1;
    		next;
    	}
    	my ($func, $in, $out, $sysname) = ($2, $3, $4, $5);
    
    	# Split argument lists on comma.
    	my @in = parseparamlist($in);
    	my @out = parseparamlist($out);
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm.go

    	// rather than happen on the heap.
    	var out [p256CompressedLength]byte
    	return p.bytesCompressed(&out)
    }
    
    func (p *P256Point) bytesCompressed(out *[p256CompressedLength]byte) []byte {
    	if p.isInfinity() == 1 {
    		return append(out[:0], 0)
    	}
    
    	x, y := new(p256Element), new(p256Element)
    	p.affineFromMont(x, y)
    
    	out[0] = 2 | byte(y[0]&1)
    	p256LittleToBig((*[32]byte)(out[1:33]), x)
    
    	return out[:]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/vcs.go

    	*os.File
    }
    
    func (d *deleteCloser) Close() error {
    	defer os.Remove(d.File.Name())
    	return d.File.Close()
    }
    
    func hgParseStat(rev, out string) (*RevInfo, error) {
    	f := strings.Fields(out)
    	if len(f) < 3 {
    		return nil, vcsErrorf("unexpected response from hg log: %q", out)
    	}
    	hash := f[0]
    	version := rev
    	if strings.HasPrefix(hash, version) {
    		version = hash // extend to full hash
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_traffic_policy.go

    	if outlier == nil {
    		return
    	}
    
    	out := &cluster.OutlierDetection{}
    
    	// SuccessRate based outlier detection should be disabled.
    	out.EnforcingSuccessRate = &wrapperspb.UInt32Value{Value: 0}
    
    	if e := outlier.Consecutive_5XxErrors; e != nil {
    		v := e.GetValue()
    
    		out.Consecutive_5Xx = &wrapperspb.UInt32Value{Value: v}
    
    		if v > 0 {
    			v = 100
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. src/crypto/x509/oid_test.go

    			continue
    		}
    
    		if err != nil {
    			continue
    		}
    
    		if !o.Equal(tt.out) {
    			t.Errorf("(*OID).UnmarshalText(%q) = %v; want = %v", tt.in, o, tt.out)
    			continue
    		}
    
    		if !o2.Equal(tt.out) {
    			t.Errorf("ParseOID(%q) = %v; want = %v", tt.in, o2, tt.out)
    			continue
    		}
    
    		marshalled, err := o.MarshalText()
    		if string(marshalled) != tt.in || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/internal/trace/gc.go

    					for _, p := range ps[gomaxprocs:] {
    						out[p.series] = addUtil(out[p.series], MutatorUtil{int64(ev.Time()), 0})
    					}
    				}
    				ps = ps[:gomaxprocs]
    			}
    			for len(ps) < gomaxprocs {
    				// Start new P's series.
    				series := 0
    				if flags&UtilPerProc != 0 || len(out) == 0 {
    					series = len(out)
    					out = append(out, []MutatorUtil{{int64(ev.Time()), 1}})
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top