Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for rewrite (0.56 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    Placeholder program key (compilation cache key) of a XLA `program`.
      }];
    
      let description = [{
    This op can be used when certain rewrite passes materialize ops that require a
    program key but the _TPUCompileMlir or _XlaCompile op has not been added yet.
    Subsequent rewrite passes must replace this op with `program` output.
      }];
    
      let arguments = (ins);
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. cmd/sts-handlers_test.go

    	}
    
    	gotBuckets := set.NewStringSet()
    	for _, b := range accInfo.Buckets {
    		gotBuckets.Add(b.Name)
    		if !(b.Access.Read && b.Access.Write) {
    			c.Fatalf("root user should have read and write access to bucket: %v", b.Name)
    		}
    	}
    	shouldHaveBuckets := set.CreateStringSet(bucket2, bucket)
    	if !gotBuckets.Equals(shouldHaveBuckets) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/net.go

    	s.currentPodSnapshot.Ensure(string(pod.UID))
    	openNetns, err := s.getOrOpenNetns(pod, netNs)
    	if err != nil {
    		return err
    	}
    
    	// Handle node healthcheck probe rewrites
    	_, err = addPodToHostNSIpset(pod, podIPs, &s.hostsideProbeIPSet)
    	if err != nil {
    		log.Errorf("failed to add pod to ipset: %s/%s %v", pod.Namespace, pod.Name, err)
    		return err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

          /*add_fold_broadcast_pass=*/pass_config.enable_stablehlo_quantizer);
    
      // Undo the MHLO::BroadcastInDimOp folding pattern on splat constants. This
      // pass must be added right before the legalization because pattern rewriter
      // driver applies folding by default.
      // TODO: b/295966255 - Remove this pass after moving MHLO folders to a
      // separate pass.
      pass_manager.addPass(mlir::odml::CreateUnfoldSplatConstantPass());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server.go

    func writeJSONResponse(response *restful.Response, data []byte) {
    	if data == nil {
    		response.WriteHeader(http.StatusOK)
    		// do not write a nil representation
    		return
    	}
    	response.Header().Set(restful.HEADER_ContentType, restful.MIME_JSON)
    	response.WriteHeader(http.StatusOK)
    	if _, err := response.Write(data); err != nil {
    		klog.ErrorS(err, "Error writing response")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	MCAST_MSFILTER                              = 0x30
    	MCAST_UNBLOCK_SOURCE                        = 0x2c
    	MEMGETREGIONINFO                            = 0xc0104d08
    	MEMREADOOB64                                = 0xc0184d16
    	MEMWRITE                                    = 0xc0304d18
    	MEMWRITEOOB64                               = 0xc0184d15
    	MFD_ALLOW_SEALING                           = 0x2
    	MFD_CLOEXEC                                 = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
Back to top