Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 114 for isAttr (0.35 sec)

  1. callbacks/associations.go

    					var (
    						rValLen   = db.Statement.ReflectValue.Len()
    						objs      = make([]reflect.Value, 0, rValLen)
    						fieldType = rel.Field.FieldType
    						isPtr     = fieldType.Kind() == reflect.Ptr
    					)
    
    					if !isPtr {
    						fieldType = reflect.PtrTo(fieldType)
    					}
    
    					elems := reflect.MakeSlice(reflect.SliceOf(fieldType), 0, 10)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 03:06:13 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. pkg/config/protocol/instance.go

    // IsHTTPOrSniffed is true for protocols that use HTTP as transport protocol, or *can* use it if sniffed to be HTTP
    func (i Instance) IsHTTPOrSniffed() bool {
    	return i.IsHTTP() || i.IsUnsupported()
    }
    
    // IsHTTP is true for protocols that use HTTP as transport protocol
    func (i Instance) IsHTTP() bool {
    	switch i {
    	case HTTP, HTTP2, HTTP_PROXY, GRPC, GRPCWeb:
    		return true
    	default:
    		return false
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 02:46:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/subr.go

    	}
    
    	// Conversions from regular to not-in-heap are not allowed
    	// (unless it's unsafe.Pointer). These are runtime-specific
    	// rules.
    	// (a) Disallow (*T) to (*U) where T is not-in-heap but U isn't.
    	if src.IsPtr() && dst.IsPtr() && dst.Elem().NotInHeap() && !src.Elem().NotInHeap() {
    		why := fmt.Sprintf(":\n\t%v is incomplete (or unallocatable), but %v is not", dst.Elem(), src.Elem())
    		return ir.OXXX, why
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  4. pkg/volume/util/fsquota/common/quota_common_linux_impl.go

    	cmd := exec.Command(lsattrCmd, "-pd", path)
    	data, err := cmd.Output()
    	if err != nil {
    		return BadQuotaID, fmt.Errorf("cannot run lsattr: %v", err)
    	}
    	match := lsattrParseRegexp.FindStringSubmatch(string(data))
    	if match == nil {
    		return BadQuotaID, fmt.Errorf("unable to parse lsattr -pd %s output %s", path, string(data))
    	}
    	if match[2] != path {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. istioctl/pkg/util/formatting/formatter.go

    // limitations under the License.
    
    package formatting
    
    import (
    	"encoding/json"
    	"fmt"
    	"io"
    	"os"
    	"strings"
    
    	"github.com/mattn/go-isatty"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/env"
    )
    
    // Formatting options for Messages
    const (
    	LogFormat  = "log"
    	JSONFormat = "json"
    	YAMLFormat = "yaml"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 02:41:45 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. docs/debugging/inspect/go.mod

    	github.com/tinylib/msgp v1.1.9
    )
    
    require (
    	github.com/cespare/xxhash/v2 v2.3.0 // indirect
    	github.com/fatih/color v1.17.0 // indirect
    	github.com/mattn/go-colorable v0.1.13 // indirect
    	github.com/mattn/go-isatty v0.0.20 // indirect
    	github.com/minio/pkg/v3 v3.0.1 // indirect
    	github.com/philhofer/fwd v1.1.2 // indirect
    	golang.org/x/crypto v0.23.0 // indirect
    	golang.org/x/sys v0.20.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 09:27:44 UTC 2024
    - 668 bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/AnsiConsoleUtil.java

    import java.io.IOException;
    import java.io.OutputStream;
    import java.io.PrintStream;
    
    import static org.fusesource.jansi.internal.CLibrary.STDOUT_FILENO;
    import static org.fusesource.jansi.internal.CLibrary.isatty;
    import static org.fusesource.jansi.internal.Kernel32.GetConsoleMode;
    import static org.fusesource.jansi.internal.Kernel32.GetStdHandle;
    import static org.fusesource.jansi.internal.Kernel32.INVALID_HANDLE_VALUE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. src/go/types/methodset.go

    	}
    
    	// method set up to the current depth, allocated lazily
    	var base methodSet
    
    	typ, isPtr := deref(T)
    
    	// *typ where typ is an interface has no methods.
    	if isPtr && IsInterface(typ) {
    		return &emptyMethodSet
    	}
    
    	// Start with typ as single entry at shallowest depth.
    	current := []embeddedType{{typ, nil, isPtr, false}}
    
    	// seen tracks named types that we have seen already, allocated lazily.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_waypoint.go

    			}
    			if port.Protocol.IsUnsupported() || port.Protocol.IsTCP() {
    				clusters = append(clusters, cb.buildWaypointInboundVIPCluster(proxy, svc, *port, "tcp").build())
    			}
    			if port.Protocol.IsUnsupported() || port.Protocol.IsHTTP() {
    				clusters = append(clusters, cb.buildWaypointInboundVIPCluster(proxy, svc, *port, "http").build())
    			}
    			cfg := cb.sidecarScope.DestinationRule(model.TrafficDirectionInbound, proxy, svc.Hostname).GetRule()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/typecheck.go

    				n.X = typecheck(star, ctxType|ctxExpr)
    			} else if tt.IsPtr() && tt.Elem().IsPtr() && types.Identical(derefall(tt), derefall(rcvr)) {
    				base.Errorf("calling method %v with receiver %L requires explicit dereference", n.Sel, n.X)
    				for tt.IsPtr() {
    					// Stop one level early for method with pointer receiver.
    					if rcvr.IsPtr() && !tt.Elem().IsPtr() {
    						break
    					}
    					star := ir.NewStarExpr(base.Pos, n.X)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top