Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 310 for Res (0.04 sec)

  1. src/cmd/compile/internal/syntax/parser_test.go

    				}
    				results <- parseResult{filename, ast.EOF.Line()}
    			})
    		}
    	}()
    
    	var count, lines uint
    	for res := range results {
    		count++
    		lines += res.lines
    		if testing.Verbose() {
    			fmt.Printf("%5d  %s (%d lines)\n", count, res.filename, res.lines)
    		}
    	}
    
    	dt := time.Since(start)
    	var m2 runtime.MemStats
    	runtime.ReadMemStats(&m2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 16:30:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent_test.go

    			}
    		}
    	}
    }
    
    func filenames(t *testing.T, dir string) []string {
    	t.Helper()
    	res := []string{}
    	contents, err := os.ReadDir(dir)
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, f := range contents {
    		res = append(res, f.Name())
    	}
    	sort.Strings(res)
    	return res
    }
    
    func proxyConfigToMetadata(t *testing.T, proxyConfig *meshconfig.ProxyConfig) model.NodeMetadata {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/listener.go

    		return false
    	}
    	return true
    }
    
    func getFilterChains(l *listener.Listener) []*listener.FilterChain {
    	res := l.FilterChains
    	if l.DefaultFilterChain != nil {
    		res = append(res, l.DefaultFilterChain)
    	}
    	return res
    }
    
    // retrieveListenerType classifies a Listener as HTTP|TCP|HTTP+TCP|UNKNOWN
    func retrieveListenerType(l *listener.Listener) string {
    	nHTTP := 0
    	nTCP := 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  4. src/cmd/gofmt/gofmt.go

    			perm := info.Mode().Perm()
    			if err := writeFile(filename, src, res, perm, info.Size()); err != nil {
    				return err
    			}
    		}
    		if *doDiff {
    			newName := filepath.ToSlash(filename)
    			oldName := newName + ".orig"
    			r.Write(diff.Diff(oldName, src, newName, res))
    		}
    	}
    
    	if !*list && !*write && !*doDiff {
    		_, err = r.Write(res)
    	}
    
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. tests/integration/pilot/tunneling_test.go

    	res, err := from.Call(echo.CallOptions{
    		Address: to.ClusterLocalFQDN(),
    		Port: echo.Port{
    			Protocol:    p,
    			ServicePort: port.ServicePort,
    		},
    		HTTP: echo.HTTP{
    			Path: "/" + testName,
    		},
    	})
    	if err != nil {
    		return fmt.Errorf("failed to request to external service: %s", err)
    	}
    	if res.Responses[0].Code != "200" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/math/rand/v2/rand_test.go

    	}
    	return nil
    }
    
    func getStatsResults(samples []float64) *statsResults {
    	res := new(statsResults)
    	var sum, squaresum float64
    	for _, s := range samples {
    		sum += s
    		squaresum += s * s
    	}
    	res.mean = sum / float64(len(samples))
    	res.stddev = math.Sqrt(squaresum/float64(len(samples)) - res.mean*res.mean)
    	return res
    }
    
    func checkSampleDistribution(t *testing.T, samples []float64, expected *statsResults) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/stmt.go

    		}
    		check.convertUntyped(&v, x.typ)
    		if v.mode == invalid {
    			continue L
    		}
    		// Order matters: By comparing v against x, error positions are at the case values.
    		res := v // keep original v unchanged
    		check.comparison(&res, x, syntax.Eql, true)
    		if res.mode == invalid {
    			continue L
    		}
    		if v.mode != constant_ {
    			continue L // we're done
    		}
    		// look for duplicate values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. operator/pkg/translate/translate.go

    		merged[key] = p
    	}
    	for _, p := range overlay {
    		key := portWithProtocol{port: p.Port, protocol: p.Protocol}
    		merged[key] = p
    	}
    	res := make([]*v1.ServicePort, 0, len(merged))
    	for _, pv := range merged {
    		res = append(res, pv)
    	}
    	sort.Slice(res, sortFn(res))
    	return res
    }
    
    // ProtoToValues traverses the supplied IstioOperatorSpec and returns a values.yaml translation from it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. pilot/pkg/xds/filters/filters.go

    // Since there are only 4 possible options, just precompute them all
    var routers = func() map[RouterFilterContext]*hcm.HttpFilter {
    	res := map[RouterFilterContext]*hcm.HttpFilter{}
    	for _, startSpan := range []bool{true, false} {
    		for _, suppressHeaders := range []bool{true, false} {
    			res[RouterFilterContext{
    				StartChildSpan:       startSpan,
    				SuppressDebugHeaders: suppressHeaders,
    			}] = &hcm.HttpFilter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

        transformations like resource op lifting.
    
        For example:
    
        ```mlir
        tf.AssignAddVariableOp(%res, %0)
        ```
    
        Becomes
    
        ```mlir
        %res_val = tf.ReadVariableOp(%res)
        %1 = tf.AddV2(%res_val, %0)
        tf.AssignVariableOp(%res, %1)
        ```
    
        NOTE: This pass does not support `use_locking=true` for a lot of resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top