Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 824 for OUT (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLambdaIntegrationTest.groovy

                        }
    
                        @TaskAction
                        void printValue() {
                            System.out.println("this.serializableSupplier.get() -> " + this.serializableSupplier.get());
                            System.out.println("this.nonSerializableSupplier.get() -> " + this.nonSerializableSupplier.get());
                        }
                    }
                """
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/math/rand/v2/regress_test.go

    				}
    				argstr = fmt.Sprint(x)
    				args = append(args, reflect.ValueOf(x))
    			}
    
    			var out any
    			out = mv.Call(args)[0].Interface()
    			if m.Name == "Int" || m.Name == "IntN" {
    				out = int64(out.(int))
    			}
    			if m.Name == "Uint" || m.Name == "UintN" {
    				out = uint64(out.(uint))
    			}
    			if *update {
    				var val string
    				big := int64(1 << 60)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:03:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	eps := esc.slices.List(proxy.Metadata.Namespace, endpointSliceSelector)
    	var out []model.ServiceTarget
    	for _, ep := range eps {
    		instances := esc.serviceTargets(ep, proxy)
    		out = append(out, instances...)
    	}
    
    	return out
    }
    
    func serviceNameForEndpointSlice(labels map[string]string) string {
    	return labels[v1.LabelServiceName]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. src/internal/testenv/testenv.go

    		cmd := exec.Command("go", "tool", "-n", "compile")
    		cmd.Env = origEnv
    		out, err := cmd.Output()
    		if err != nil {
    			goBuildErr = fmt.Errorf("%v: %w", cmd, err)
    			return
    		}
    		out = bytes.TrimSpace(out)
    		if len(out) == 0 {
    			goBuildErr = fmt.Errorf("%v: no tool reported", cmd)
    			return
    		}
    		if _, err := exec.LookPath(string(out)); err != nil {
    			goBuildErr = err
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top