Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for xform (0.13 sec)

  1. pkg/proxy/nftables/proxier.go

    				// source IP in most cases.
    
    				if proxier.localDetector.IsImplemented() {
    					// Treat all locally-originated pod -> external destination
    					// traffic as a special-case.  It is subject to neither
    					// form of traffic policy, which simulates going up-and-out
    					// to an external load-balancer and coming back in.
    					tx.Add(&knftables.Rule{
    						Chain: externalTrafficChain,
    						Rule: knftables.Concat(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    //
    // The environment values may be either a complete URL or a
    // "host[:port]", in which case the "http" scheme is assumed.
    // An error is returned if the value is a different form.
    //
    // A nil URL and nil error are returned if no proxy is defined in the
    // environment, or a proxy should not be used for the given request,
    // as defined by NO_PROXY.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		r = &EnableIf{Type: r, Args: enableIfArgs}
    	}
    
    	if constraint != nil {
    		r = &Constraint{Name: r, Requires: constraint}
    	}
    
    	return r
    }
    
    // hasReturnType returns whether the mangled form of a will have a
    // return type.
    func hasReturnType(a AST) bool {
    	switch a := a.(type) {
    	case *Qualified:
    		if a.LocalName {
    			return hasReturnType(a.Name)
    		}
    		return false
    	case *Template:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    		}
    	}
    }
    
    func TestScopesInfo(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	var tests = []struct {
    		src    string
    		scopes []string // list of scope descriptors of the form kind:varlist
    	}{
    		{`package p0`, []string{
    			"file:",
    		}},
    		{`package p1; import ( "fmt"; m "math"; _ "os" ); var ( _ = fmt.Println; _ = m.Pi )`, []string{
    			"file:fmt m",
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        return false;
      }
      // Check there is only one subtype contained in the variant type. Note that
      // when `subtypes.size() == 1` does not always mean the type is actually
      // a tensorlist. We probably need some form of data flow analysis.
      if (variant_ty.getSubtypes().size() == 1) {
        return true;
      }
      // If subtype info is not available, check if the value is used by any of
      // the following TensorList operations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    	"go/internal/typeparams"
    	"go/token"
    	. "internal/types/errors"
    	"strings"
    )
    
    /*
    Basic algorithm:
    
    Expressions are checked recursively, top down. Expression checker functions
    are generally of the form:
    
      func f(x *operand, e *ast.Expr, ...)
    
    where e is the expression to be checked, and x is the result of the check.
    The check performed by f may fail in which case x.mode == invalid, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier.go

    				// source IP in most cases.
    
    				if proxier.localDetector.IsImplemented() {
    					// Treat all locally-originated pod -> external destination
    					// traffic as a special-case.  It is subject to neither
    					// form of traffic policy, which simulates going up-and-out
    					// to an external load-balancer and coming back in.
    					natRules.Write(
    						"-A", string(externalTrafficChain),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

    }
    
    // GlobalLoggingConfig specifies the global logging level settings for the Istio control plane components.
    message GlobalLoggingConfig {
      // Comma-separated minimum per-scope logging level of messages to output, in the form of <scope>:<level>,<scope>:<level>
      // The control plane has different scopes depending on component, but can configure default log level across all components
      // If empty, default scope and level will be used as configured in code
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. cmd/iam.go

    // given map may not correspond to LDAP DNs - these keys are ignored.
    //
    // For validated mappings, it updates the key in the given map to be in
    // normalized form.
    func (sys *IAMSys) NormalizeLDAPMappingImport(ctx context.Context, isGroup bool,
    	policyMap map[string]MappedPolicy,
    ) error {
    	conn, err := sys.LDAPConfig.LDAP.Connect()
    	if err != nil {
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/expr.go

    	"fmt"
    	"go/constant"
    	"go/token"
    	. "internal/types/errors"
    	"strings"
    )
    
    /*
    Basic algorithm:
    
    Expressions are checked recursively, top down. Expression checker functions
    are generally of the form:
    
      func f(x *operand, e *syntax.Expr, ...)
    
    where e is the expression to be checked, and x is the result of the check.
    The check performed by f may fail in which case x.mode == invalid, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top