Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 154 for oldR (0.4 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * equal, and the [equals()][Object.equals] method between them returns true:
     *
     *  * https://example.net/
     *
     *  * https://example.com/
     *
     * This is because those two hosts share the same IP address. This is an old, bad design decision
     * that makes `java.net.URL` unusable for many things. It shouldn't be used as a [Map] key or in a
     * [Set]. Doing so is both inefficient because equality may require a DNS lookup, and incorrect
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		//
    		// Storing serializations in memory would result in increased memory usage,
    		// but it would help for caching encodings for watches started from old
    		// versions. However, we still don't have a convincing data that the gain
    		// from it justifies increased memory usage, so for now we drop the cached
    		// serializations after dispatching this event.
    		//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      for (Value old_result : return_value_from_device)
        device_result_types.push_back(old_result.getType());
      return device_result_types;
    }
    
    // Move ops in old device cluster to new device cluster
    void MoveOldTpuClusterToNewTpuCluster(mlir::tf_device::ClusterOp device_cluster,
                                          Operation* after_op_r) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	// local name defined within a function.
    	NoEnclosingParams
    
    	// The NoClones option disables inclusion of clone suffixes.
    	// NoParams implies NoClones.
    	NoClones
    
    	// The NoRust option disables demangling of old-style Rust
    	// mangled names, which can be confused with C++ style mangled
    	// names. New style Rust mangled names are still recognized.
    	NoRust
    
    	// The Verbose option turns on more verbose demangling.
    	Verbose
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. src/main/webapp/css/font-awesome.min.css

    fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:b...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			}
    
    			if errString(err) != tt.wantErr {
    				t.Errorf("rotateDEKOnKeyIDChange() error = %v, wantErr %v", err, tt.wantErr)
    			}
    
    			// if the old or new state is valid, we should be able to use it
    			if _, stateErr := h.getCurrentState(); stateErr == nil || err == nil {
    				transformer := envelopekmsv2.NewEnvelopeTransformer(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  8. src/time/format.go

    		// and would represent e.g. "America/Los_Angeles" daylight saving time
    		// shifts inaccurately
    		// - use the pointer format, which is no worse than you'd get with the
    		// old fmt.Sprintf("%#v", t) format.
    		//
    		// Of these, Location(loc.name) is the least disruptive. This is an edge
    		// case we hope not to hit too often.
    		buf = append(buf, `time.Location(`...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	objectMeta.SetAnnotations(map[string]string{"A": "2"})
    
    	// Make sure a custom transform is called, and sees the expected updatedObject and oldObject
    	// This tests the mechanism used to pass the old and new object to admission
    	calledUpdatedObject := 0
    	noopTransform := func(_ context.Context, updatedObject runtime.Object, oldObject runtime.Object) (runtime.Object, error) {
    		if !reflect.DeepEqual(storedFoo, oldObject) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        auto converted = rewriter.create<TF::WhileRegionOp>(
            op.getLoc(), result_types, adaptor.getOperands(), op->getAttrs());
    
        // Inline the regions from the old while into the new one, and apply
        // signature conversion to inlined region.
        for (auto it : llvm::zip(op.getRegions(), converted.getRegions())) {
          Region &old_region = *std::get<0>(it);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top