Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 188 for recognizers (0.39 sec)

  1. src/net/conf.go

    	switch c.goos {
    	case "windows", "plan9", "android", "ios":
    		return fallbackOrder, nil
    	}
    
    	// Try to figure out the order to use for searches.
    	// If we don't recognize something, use fallbackOrder.
    	// That will use cgo unless the Go resolver was explicitly requested.
    	// If we do figure out the order, return something other
    	// than fallbackOrder to use the Go resolver with that order.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    	// the object is unversioned, or an error if the object is not recognized
    	// (IsNotRegisteredError will return true).
    	ObjectKinds(Object) ([]schema.GroupVersionKind, bool, error)
    	// Recognizes returns true if the scheme is able to handle the provided version and kind,
    	// or more precisely that the provided version is a possible conversion or decoding
    	// target.
    	Recognizes(gvk schema.GroupVersionKind) bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/scanner.go

    func (s *scanner) errorAtf(offset int, format string, args ...interface{}) {
    	s.errh(s.line, s.col+uint(offset), fmt.Sprintf(format, args...))
    }
    
    // setLit sets the scanner state for a recognized _Literal token.
    func (s *scanner) setLit(kind LitKind, ok bool) {
    	s.nlsemi = true
    	s.tok = _Literal
    	s.lit = string(s.segment())
    	s.bad = !ok
    	s.kind = kind
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    			},
    		},
    		{
    			name: "compile with storage environment should recognize functions available only in the storage environment",
    			expressions: []string{
    				"test() == true",
    			},
    			envType: environment.StoredExpressions,
    		},
    		{
    			name: "compile with supported environment should not recognize functions available only in the storage environment",
    			errorExpressions: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    	"encoding/json"
    	"io"
    	"strconv"
    
    	kjson "sigs.k8s.io/json"
    	"sigs.k8s.io/yaml"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/runtime/serializer/recognizer"
    	"k8s.io/apimachinery/pkg/util/framer"
    	utilyaml "k8s.io/apimachinery/pkg/util/yaml"
    	"k8s.io/klog/v2"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/loopbce.go

    		min, nxt = ind.Args[1], n
    	} else if n := ind.Args[1]; (n.Op == OpAdd64 || n.Op == OpAdd32 || n.Op == OpAdd16 || n.Op == OpAdd8) && (n.Args[0] == ind || n.Args[1] == ind) {
    		min, nxt = ind.Args[0], n
    	} else {
    		// Not a recognized induction variable.
    		return
    	}
    
    	if nxt.Args[0] == ind { // nxt = ind + inc
    		inc = nxt.Args[1]
    	} else if nxt.Args[1] == ind { // nxt = inc + ind
    		inc = nxt.Args[0]
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/helper.go

    // Helper provides methods for retrieving or mutating a RESTful
    // resource.
    type Helper struct {
    	// The name of this resource as the server would recognize it
    	Resource string
    	// The name of the subresource as the server would recognize it
    	Subresource string
    	// A RESTClient capable of mutating this resource.
    	RESTClient RESTClient
    	// True if the resource type is scoped to namespaces
    	NamespaceScoped bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 03:45:13 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    			baseErr:          fmt.Errorf("plain error"),
    		},
    		{
    			name:             "decoding objects with unknown GVK fails and returns a bad-request error",
    			typer:            alwaysErrorTyper{},
    			decodedGVK:       nil,
    			decodeIntoObject: &testapigroupv1.Carp{}, // which client-go's scheme doesn't recognize
    			baseErr:          nil,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  9. src/runtime/stubs.go

    	return int(*(*uint8)(unsafe.Pointer(&x)))
    }
    
    // abort crashes the runtime in situations where even throw might not
    // work. In general it should do something a debugger will recognize
    // (e.g., an INT3 on x86). A crash in abort is recognized by the
    // signal handler, which will attempt to tear down the runtime
    // immediately.
    func abort()
    
    // Called from compiled code; declared for vet; do NOT call from Go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

              if (!isNumeric) {
                // Android doesn't recognize %interface as valid
                continue;
              }
              throw e;
            }
            Inet6Address platformValue;
            try {
              platformValue = (Inet6Address) InetAddress.getByName(withScopeId);
            } catch (UnknownHostException e) {
              // Android doesn't recognize %interface as valid
              if (!isNumeric) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top