Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 75 for Grappler (0.2 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch.go

    	}
    
    	return patch, nil
    }
    
    // keepOrDeleteNullInJsonPatch takes a json-encoded byte array and a boolean.
    // It returns a filtered object and its corresponding json-encoded byte array.
    // It is a wrapper of func keepOrDeleteNullInObj
    func keepOrDeleteNullInJsonPatch(patch []byte, keepNull bool) ([]byte, map[string]interface{}, error) {
    	var patchMap map[string]interface{}
    	err := json.Unmarshal(patch, &patchMap)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/default_storage_factory_builder.go

    	c.DefaultStorageMediaType = etcdOptions.DefaultStorageMediaType
    	c.EtcdServersOverrides = etcdOptions.EtcdServersOverrides
    	return &completedStorageFactoryConfig{c}
    }
    
    // completedStorageFactoryConfig is a wrapper around StorageFactoryConfig completed with etcd options.
    //
    // Note: this struct is intentionally unexported so that it can only be constructed via a StorageFactoryConfig.Complete
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[gradle_optimizations]]
    = Gradle Incremental Builds and Build Caching
    
    ++++
    <div class="badge-wrapper">
        <a class="badge" href="https://dpeuniversity.gradle.com/app/courses/ec69d0b8-9171-4969-ac3e-82dea16f87b0/" target="_blank">
            <span class="badge-type button--blue">LEARN</span>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[part5_gradle_inc_builds]]
    = Part 5: Exploring Incremental Builds
    
    ++++
    <div class="badge-wrapper">
        <a class="badge" href="https://dpeuniversity.gradle.com/app/courses/ec69d0b8-9171-4969-ac3e-82dea16f87b0/" target="_blank">
            <span class="badge-type button--blue">LEARN</span>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/mime/multipart/writer.go

    	return p, nil
    }
    
    var quoteEscaper = strings.NewReplacer("\\", "\\\\", `"`, "\\\"")
    
    func escapeQuotes(s string) string {
    	return quoteEscaper.Replace(s)
    }
    
    // CreateFormFile is a convenience wrapper around [Writer.CreatePart]. It creates
    // a new form-data header with the provided field name and file name.
    func (w *Writer) CreateFormFile(fieldname, filename string) (io.Writer, error) {
    	h := make(textproto.MIMEHeader)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. pkg/controller/nodeipam/node_ipam_controller.go

    		go nc.legacyIPAM.Run(ctx)
    	} else {
    		go nc.cidrAllocator.Run(ctx)
    	}
    
    	<-ctx.Done()
    }
    
    // RunWithMetrics is a wrapper for Run that also tracks starting and stopping of the nodeipam controller with additional metric
    func (nc *Controller) RunWithMetrics(ctx context.Context, controllerManagerMetrics *controllersmetrics.ControllerManagerMetrics) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/BUILD

        ],
        deps = [
            ":mlir_graph_optimization_pass",
            "//tensorflow/core:core_cpu",
        ],
        alwayslink = 1,
    )
    
    # This should just be a wrapper around tf_mlir_opt_main. Don't add
    # direct dependencies to this binary.
    tf_cc_binary(
        name = "tf-opt",
        testonly = True,
        deps = [
            ":tf_mlir_opt_main",
        ],
    )
    
    tf_cc_binary(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/cmd/trace/jsontrace.go

    		c := traceviewer.ViewerDataTraceConsumer(w, start, end)
    		if err := generateTrace(parsed, opts, c); err != nil {
    			log.Printf("failed to generate trace: %v", err)
    		}
    	})
    }
    
    // traceContext is a wrapper around a traceviewer.Emitter with some additional
    // information that's useful to most parts of trace viewer JSON emission.
    type traceContext struct {
    	*traceviewer.Emitter
    	startTime trace.Time
    	endTime   trace.Time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	"encoding/json"
    	"time"
    
    	cbor "k8s.io/apimachinery/pkg/runtime/serializer/cbor/direct"
    )
    
    // Time is a wrapper around time.Time which supports correct
    // marshaling to YAML and JSON.  Wrappers are provided for many
    // of the factory methods that the time package offers.
    //
    // +protobuf.options.marshal=false
    // +protobuf.as=Timestamp
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

              "Environment variable TF_QUANT_MLIR_DUMP_PREFIX=sponge but "
              "TEST_UNDECLARED_OUTPUT_DIRS not set.");
        }
      }
    
      return dump_dir;
    }
    
    // A simple wrapper of tsl::WritableFile so that mlir Pass infra can use it.
    class WritableFileWrapper : public llvm::raw_ostream {
     public:
      ~WritableFileWrapper() override { flush(); }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:38:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top