Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 67 for setLinger (0.54 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    	}
    	ctx, span := tracing.Start(ctx, "Call mutating webhook",
    		attribute.String("configuration", configurationName),
    		attribute.String("webhook", h.Name),
    		attribute.Stringer("resource", attr.GetResource()),
    		attribute.String("subresource", attr.GetSubresource()),
    		attribute.String("operation", string(attr.GetOperation())),
    		attribute.String("UID", string(uid)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. operator/cmd/mesh/test-util_test.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test"
    )
    
    // PathValue is a path/value type.
    type PathValue struct {
    	path  string
    	value any
    }
    
    // String implements the Stringer interface.
    func (pv *PathValue) String() string {
    	return fmt.Sprintf("%s:%v", pv.path, pv.value)
    }
    
    // ObjectSet is a set of objects maintained both as a slice (for ordering) and map (for speed).
    type ObjectSet struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/issues_test.go

    }
    `
    		csrc = `
    package c
    
    import (
    	"a"
    	"fmt"
    	"html/template"
    )
    
    // go.dev/issue/46905: make sure template is not the first package qualified.
    var _ fmt.Stringer = 1 // ERRORx "cannot use 1.*as fmt\\.Stringer"
    
    // Packages should be fully qualified when there is ambiguity in reachable
    // packages. In this case both a (and for that matter html/template) import
    // text/template.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/log/slog/doc.go

    If you want to avoid eagerly paying the cost of the String call
    without causing the handler to potentially inspect the structure of the value,
    wrap the value in a fmt.Stringer implementation that hides its Marshal methods.
    
    You can also use the [LogValuer] interface to avoid unnecessary work in disabled log
    calls. Say you need to log some expensive value:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. operator/pkg/object/objects.go

    		return err.Error()
    	}
    	return string(y)
    }
    
    // K8sObjects holds a collection of k8s objects, so that we can filter / sequence them
    type K8sObjects []*K8sObject
    
    // String implements the Stringer interface.
    func (os K8sObjects) String() string {
    	var out []string
    	for _, oo := range os {
    		out = append(out, oo.YAMLDebugString())
    	}
    	return strings.Join(out, helm.YAMLSeparator)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (1)
  6. pkg/volume/util/operationexecutor/operation_executor.go

    	}
    	return struct {
    		VolumeName, UniqueName, NodeName string
    	}{
    		VolumeName: volumeSpecName,
    		UniqueName: string(volume.VolumeName),
    		NodeName:   string(volume.NodeName),
    	}
    }
    
    var _ fmt.Stringer = &VolumeToAttach{}
    var _ logr.Marshaler = &VolumeToAttach{}
    
    // VolumeToMount represents a volume that should be attached to this node and
    // mounted to the PodName.
    type VolumeToMount struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    	// A reference to name@GOT(SB) is a reference to the entry in the global offset
    	// table for 'name'.
    	NAME_GOTREF
    	// Indicates that this is a reference to a TOC anchor.
    	NAME_TOCREF
    )
    
    //go:generate stringer -type AddrType
    
    type AddrType uint8
    
    const (
    	TYPE_NONE AddrType = iota
    	TYPE_BRANCH
    	TYPE_TEXTSIZE
    	TYPE_MEM
    	TYPE_CONST
    	TYPE_FCONST
    	TYPE_SCONST
    	TYPE_REG
    	TYPE_ADDR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/config.go

    	Labels map[string]string
    	// Replicas of this deployment
    	Replicas int
    
    	// TODO: port more into workload config.
    }
    
    // String implements the Configuration interface (which implements fmt.Stringer)
    func (c Config) String() string {
    	return fmt.Sprint("{service: ", c.Service, ", version: ", c.Version, "}")
    }
    
    // ClusterLocalFQDN returns the fully qualified domain name for cluster-local host.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/cmd/internal/objabi/reloctype.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package objabi
    
    type RelocType int16
    
    //go:generate stringer -type=RelocType
    const (
    	R_ADDR RelocType = 1 + iota
    	// R_ADDRPOWER relocates a pair of "D-form" instructions (instructions with 16-bit
    	// immediates in the low half of the instruction word), usually addis followed by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. operator/pkg/tpath/tree.go

    	Parent *PathContext
    	// KeyToChild is the key required to reach the child.
    	KeyToChild any
    	// Node is the actual Node in the data tree.
    	Node any
    }
    
    // String implements the Stringer interface.
    func (nc *PathContext) String() string {
    	ret := "\n--------------- NodeContext ------------------\n"
    	if nc.Parent != nil {
    		ret += fmt.Sprintf("Parent.Node=\n%s\n", nc.Parent.Node)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top