Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 519 for Recognizes (0.2 sec)

  1. src/net/textproto/reader.go

    			c -= toLower
    		} else if !upper && 'A' <= c && c <= 'Z' {
    			c += toLower
    		}
    		a[i] = c
    		upper = c == '-' // for next time
    	}
    	commonHeaderOnce.Do(initCommonHeader)
    	// The compiler recognizes m[string(byteSlice)] as a special
    	// case, so a copy of a's bytes into a new string does not
    	// happen in this map lookup:
    	if v := commonHeader[string(a)]; v != "" {
    		return v, true
    	}
    	return string(a), true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. 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)
  3. src/net/http/httputil/reverseproxy.go

    	// response body.
    	// If zero, no periodic flushing is done.
    	// A negative value means to flush immediately
    	// after each write to the client.
    	// The FlushInterval is ignored when ReverseProxy
    	// recognizes a response as a streaming response, or
    	// if its ContentLength is -1; for such responses, writes
    	// are flushed to the client immediately.
    	FlushInterval time.Duration
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    	if t.gvk == nil {
    		return nil, false, t.err
    	}
    	return []schema.GroupVersionKind{*t.gvk}, false, t.err
    }
    
    func (t *mockTyper) Recognizes(_ schema.GroupVersionKind) bool {
    	return false
    }
    
    type testEncodableDuplicateTag struct {
    	metav1.TypeMeta `json:",inline"`
    
    	A1 int `json:"a"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    .Compatibility of variants
    --
    What if the consumer sets `org.gradle.jvm.version` to 7?
    
    Dependency resolution would _fail_ with an error message explaining that there's no suitable variant.
    Gradle recognizes that the consumer wants a Java 7 compatible library and the _minimal_ version of Java available on the producer is 8.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    For example, if Gradle understands that the output of the `compileJava` task serves as the input for the `jar` task, it will prioritize running `compileJava` first.
    2. They facilitate incremental building. +
    For example, suppose Gradle recognizes that the inputs and outputs of a task remain unchanged. In that case, it can leverage results from previous build runs or the build cache, avoiding rerunning the task action altogether.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/CharMatcher.java

       * on {@link Platform} so that we can have different behavior in GWT.
       *
       * <p>This implementation tries to be smart in a number of ways. It recognizes cases where the
       * negation is cheaper to precompute than the matcher itself; it tries to build small hash tables
       * for matchers that only match a few characters, and so on. In the worst-case scenario, it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  8. pkg/controller/certificates/approver/sarapprove.go

    	approver := &sarApprover{
    		client:      client,
    		recognizers: recognizers(),
    	}
    	return certificates.NewCertificateController(
    		ctx,
    		"csrapproving",
    		client,
    		csrInformer,
    		approver.handle,
    	)
    }
    
    func recognizers() []csrRecognizer {
    	recognizers := []csrRecognizer{
    		{
    			recognize:      isSelfNodeClientCert,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 16:03:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/CharMatcher.java

       * on {@link Platform} so that we can have different behavior in GWT.
       *
       * <p>This implementation tries to be smart in a number of ways. It recognizes cases where the
       * negation is cheaper to precompute than the matcher itself; it tries to build small hash tables
       * for matchers that only match a few characters, and so on. In the worst-case scenario, it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. pkg/controller/certificates/approver/sarapprove_test.go

    	cases := []struct {
    		allowed    bool
    		recognized bool
    		err        bool
    		verify     func(*testing.T, []testclient.Action)
    	}{
    		{
    			recognized: false,
    			allowed:    false,
    			verify: func(t *testing.T, as []testclient.Action) {
    				if len(as) != 0 {
    					t.Errorf("expected no client calls but got: %#v", as)
    				}
    			},
    		},
    		{
    			recognized: false,
    			allowed:    true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 7.7K bytes
    - Viewed (0)
Back to top