Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for facility (0.19 sec)

  1. src/net/http/client_test.go

    	if e, g := `Get "/?n=10": stopped after 10 redirects`, fmt.Sprintf("%v", err); e != g {
    		t.Errorf("with default client Get, expected error %q, got %q", e, g)
    	}
    
    	// HEAD request should also have the ability to follow redirects.
    	_, err = c.Head(ts.URL)
    	if e, g := `Head "/?n=10": stopped after 10 redirects`, fmt.Sprintf("%v", err); e != g {
    		t.Errorf("with default client Head, expected error %q, got %q", e, g)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// no rule matches, all traffic is sent to the default backend.
    	// +optional
    	// +listType=atomic
    	Rules []IngressRule `json:"rules,omitempty" protobuf:"bytes,3,rep,name=rules"`
    	// TODO: Add the ability to specify load-balancer IP through claims
    }
    
    // IngressTLS describes the transport layer security associated with an Ingress.
    type IngressTLS struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // ---
      // Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be
      // useful (see .node.status.conditions), the ability to deconflict is important.
      // The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
      // +required
      // +kubebuilder:validation:Required
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // ---
      // Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be
      // useful (see .node.status.conditions), the ability to deconflict is important.
      // The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)
      // +required
      // +kubebuilder:validation:Required
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	"k8s.io/apimachinery/pkg/util/json"
    	"k8s.io/apimachinery/pkg/util/mergepatch"
    )
    
    // An alternate implementation of JSON Merge Patch
    // (https://tools.ietf.org/html/rfc7386) which supports the ability to annotate
    // certain fields with metadata that indicates whether the elements of JSON
    // lists should be merged or replaced.
    //
    // For more information, see the PATCH section of docs/devel/api-conventions.md.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * its capacity threshold.
       *
       * The Least Recently Used page replacement algorithm was chosen due to its simplicity, high hit
       * rate, and ability to be implemented with O(1) time complexity. The initial LRU implementation
       * operates per-segment rather than globally for increased implementation simplicity. We expect
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    // * We do not provide TF_OK since it is not strictly necessary and we
    //   are not optimizing for convenience.
    // * We make assumption that one session has one graph.  This should be
    //   fine since we have the ability to run sub-graphs.
    // * We could allow NULL for some arguments (e.g., NULL options arg).
    //   However since convenience is not a primary goal, we don't do this.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * its capacity threshold.
       *
       * The Least Recently Used page replacement algorithm was chosen due to its simplicity, high hit
       * rate, and ability to be implemented with O(1) time complexity. The initial LRU implementation
       * operates per-segment rather than globally for increased implementation simplicity. We expect
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[incremental_build]]
    = Incremental build
    
    An important part of any build tool is the ability to avoid doing work that has already been done.
    Consider the process of compilation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.3.md

    ### Action Required
    
    * Disabling swagger ui by default on apiserver. Adding a flag that can enable it ([#23025](https://github.com/kubernetes/kubernetes/pull/23025), [@nikhiljindal](https://github.com/nikhiljindal))
    * restore ability to run against secured etcd ([#21535](https://github.com/kubernetes/kubernetes/pull/21535), [@AdoHe](https://github.com/AdoHe))
    
    ### Other notable changes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top