Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for elide (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		in := &metav1.UpdateOptions{}
    		f.Fuzz(in)
    		in.TypeMeta.SetGroupVersionKind(metav1.SchemeGroupVersion.WithKind("CreateOptions"))
    
    		out := newCreateOptionsFromUpdateOptions(in)
    
    		// This sequence is intending to elide type information, but produce an
    		// intermediate structure (map) that can be manually patched up to make
    		// the comparison work as needed.
    
    		// Convert both structs to maps of primitives.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // absorb InvertFlags into boolean values
    ((Equal|NotEqual|LessThan|GreaterThan|LessEqual|GreaterEqual) (InvertFlags x)) => ((Equal|NotEqual|GreaterThan|LessThan|GreaterEqual|LessEqual) x)
    
    
    // Elide compares of bit tests
    ((EQ|NE|LT|LE|GT|GE) (CMPconst [0] z:(AND x y)) yes no) && z.Uses == 1 => ((EQ|NE|LT|LE|GT|GE) (Select1 <types.TypeFlags> (ANDCC x y)) yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    func (b *Builder) ccompile(a *Action, outfile string, flags []string, file string, compiler []string) error {
    	p := a.Package
    	sh := b.Shell(a)
    	file = mkAbs(p.Dir, file)
    	outfile = mkAbs(p.Dir, outfile)
    
    	// Elide source directory paths if -trimpath is set.
    	// This is needed for source files (e.g., a .c file in a package directory).
    	// TODO(golang.org/issue/36072): cgo also generates files with #line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.proto

      // Name represents the name for the workload.
      // For Kubernetes, this is the pod name.
      // This is just for debugging and may be elided as an optimization.
      string name = 1;
      // Namespace represents the namespace for the workload.
      // This is just for debugging and may be elided as an optimization.
      string namespace = 2;
    
      // Address represents the IPv4/IPv6 address for the workload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.pb.go

    	// For Kubernetes, this is the pod name.
    	// This is just for debugging and may be elided as an optimization.
    	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
    	// Namespace represents the namespace for the workload.
    	// This is just for debugging and may be elided as an optimization.
    	Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //
    //	go doc
    //
    // it prints the package documentation for the package in the current directory.
    // If the package is a command (package main), the exported symbols of the package
    // are elided from the presentation unless the -cmd flag is provided.
    //
    // When run with one argument, the argument is treated as a Go-syntax-like
    // representation of the item to be documented. What the argument selects depends
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"service3", "LoadBalancer", "1.4.5.6", "2.3.4.5", "80/TCP,8090/UDP,8000/TCP", "<unknown>"}}},
    		},
    		// Long external IP's list gets elided.
    		{
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "service4"},
    				Spec: api.ServiceSpec{
    					ClusterIPs: []string{"1.5.6.7"},
    					Type:       "LoadBalancer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    		if n.Type().IsComplex() {
    			// TODO this is not executed because the front-end substitutes a runtime call.
    			// That probably ought to change; with modest optimization the widen/narrow
    			// conversions could all be elided in larger expression trees.
    			mulop := ssa.OpMul64F
    			addop := ssa.OpAdd64F
    			subop := ssa.OpSub64F
    			divop := ssa.OpDiv64F
    			pt := types.FloatForComplex(n.Type()) // Could be Float32 or Float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top