Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for planes (0.26 sec)

  1. src/runtime/pprof/pprof_test.go

    		}
    		prof = strings.Trim(prof, "\n")
    		lines := strings.Split(prof, "\n")
    		if len(lines) < 6 {
    			t.Fatalf("expected >=6 lines, got %d %q\n%s", len(lines), prof, prof)
    		}
    		// checking that the line is like "35258904 1 @ 0x48288d 0x47cd28 0x458931"
    		r2 := `^\d+ \d+ @(?: 0x[[:xdigit:]]+)+`
    		if ok, err := regexp.MatchString(r2, lines[3]); err != nil || !ok {
    			t.Errorf("%q didn't match %q", lines[3], r2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    	// Output the state machine for each function remaining.
    	for _, s := range unit.Textp {
    		fnSym := loader.Sym(s)
    		_, _, _, lines := d.ldr.GetFuncDwarfAuxSyms(fnSym)
    
    		// Chain the line symbol onto the list.
    		if lines != 0 {
    			syms = append(syms, lines)
    			unitlen += int64(len(d.ldr.Data(lines)))
    		}
    	}
    
    	if d.linkctxt.HeadType == objabi.Haix {
    		addDwsectCUSize(".debug_line", unit.Lib.Pkg, uint64(unitlen))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    	// We have two status
    	// Accepted: is the configuration valid. We only have errors in listeners, and the status is not supposed to
    	// be tied to listeners, so this is always accepted
    	// Programmed: is the data plane "ready" (note: eventually consistent)
    	gatewayConditions := map[string]*condition{
    		string(k8s.GatewayConditionAccepted): {
    			reason:  string(k8s.GatewayReasonAccepted),
    			message: "Resource accepted",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    // limitations under the License.
    
    package controller
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"reflect"
    	"sort"
    	"strconv"
    	"sync"
    	"testing"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	"github.com/google/go-cmp/cmp"
    	corev1 "k8s.io/api/core/v1"
    	discovery "k8s.io/api/discovery/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    checks, use the -vet=all flag.
    
    All test output and summary lines are printed to the go command's
    standard output, even if the test printed them to its own standard
    error. (The go command's standard error is reserved for printing
    errors building the tests.)
    
    The go command places $GOROOT/bin at the beginning of $PATH
    in the test's environment, so that tests that execute
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Many examples in this chapter use hard-coded paths as string literals.
    This makes them easy to understand, but it is not good practice.
    The problem is that paths often change, and the more places you need to change them, the more likely you will miss one and break the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // Formatting issues:
    // - better comment formatting for /*-style comments at the end of a line (e.g. a declaration)
    //   when the comment spans multiple lines; if such a comment is just two lines, formatting is
    //   not idempotent
    // - formatting of expression lists
    // - should use blank instead of tab to separate one-line function bodies from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    	volume, err = provisioner.Provision(selectedNode, allowedTopologies)
    	opComplete(volumetypes.CompleteFuncParam{Err: &err})
    	if err != nil {
    		// Other places of failure have nothing to do with VolumeScheduling,
    		// so just let controller retry in the next sync. We'll only call func
    		// rescheduleProvisioning here when the underlying provisioning actually failed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    func homeEnvName() string {
    	switch runtime.GOOS {
    	case "windows":
    		return "USERPROFILE"
    	case "plan9":
    		return "home"
    	default:
    		return "HOME"
    	}
    }
    
    func tempEnvName() string {
    	switch runtime.GOOS {
    	case "windows":
    		return "TMP"
    	case "plan9":
    		return "TMPDIR" // actually plan 9 doesn't have one at all but this is fine
    	default:
    		return "TMPDIR"
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    . Create typed properties (via getter methods) for each of your task inputs and outputs
    . Add the appropriate annotation to each of those properties
    
    NOTE: Annotations must be placed on getters or on Groovy properties. Annotations placed on setters, or on a Java field without a corresponding annotated getter, are ignored.
    
    Gradle supports four main categories of inputs and outputs:
    
    * Simple values
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top