Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Handles (0.19 sec)

  1. pkg/kubelet/kubelet.go

    		if !kl.syncLoopIteration(ctx, updates, handler, syncTicker.C, housekeepingTicker.C, plegCh) {
    			break
    		}
    		kl.syncLoopMonitor.Store(kl.clock.Now())
    	}
    }
    
    // syncLoopIteration reads from various channels and dispatches pods to the
    // given handler.
    //
    // Arguments:
    // 1.  configCh:       a channel to read config events from
    // 2.  handler:        the SyncHandler to dispatch pods to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    			t.Fatalf("Test %d: %s: Failed to create HTTP request for Head Object: <ERROR> %v", i+1, instanceType, err)
    		}
    		// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    		// Call the ServeHTTP to execute the handler,`func (api objectAPIHandlers) GetObjectHandler`  handles the request.
    		apiRouter.ServeHTTP(rec, req)
    
    		// Assert the response code with the expected status.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

                           ResourceEffects::TPUExecute::get());
    
      // Conservatively mark resource handles as read and write, as without
      // analyzing TPUCompile, there is not sufficient information to determine
      // effects on resources. For the MLIR bridge, this op will never be
      // populated with resource handles and tf.TPUExecuteAndUpdateVariables is
      // used instead.
      for (Value value : getArgs()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        decomposition/lifting occurs with the unpartitioned resource variables,
        transforming the IR in such a manner will allow for subsequent passes to operate
        on individual resource variable handles per core/device.
    
        For example, the following:
    
        ```mlir
        func @cluster(%arg0: tensor<!tf_type.resource<tensor<i32>>>, %arg1: tensor<!tf_type.resource<tensor<i32>>>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. src/net/http/server.go

    // always refers to user code.
    
    // Handle registers the handler for the given pattern.
    // If the given pattern conflicts, with one that is already registered, Handle
    // panics.
    func (mux *ServeMux) Handle(pattern string, handler Handler) {
    	if use121 {
    		mux.mux121.handle(pattern, handler)
    	} else {
    		mux.register(pattern, handler)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        auto params_type = dyn_cast<RankedTensorType>(params_value.getType());
        auto indices_type = dyn_cast<RankedTensorType>(indices_value.getType());
    
        // Handle static shape cases only.
        if (!result_type || !params_type || !indices_type) return failure();
    
        // Handle i32 indices and f32 input only.
        if (indices_type.getElementType() != rewriter.getI32Type() ||
            params_type.getElementType() != rewriter.getF32Type()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    //			000000000000013d:  IMAGE_REL_AMD64_REL32	_errno
    //
    // The assembly below dispenses with the import symbol and just makes
    // a direct call to _errno.
    //
    // The code below handles indirect refs by redirecting the target of
    // the relocation from "__imp_XYZ" to "XYZ" (since the latter symbol
    // is what the Windows loader is expected to resolve). For direct refs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    		closec: make(chan bool, 1),
    	}
    	handled := 0
    	handler := HandlerFunc(func(rw ResponseWriter, r *Request) {
    		handled++
    		rw.Header().Set("Content-Type", "text/html; charset=utf-8")
    		rw.Write(res)
    	})
    	ln := &oneConnListener{conn: conn}
    	go Serve(ln, handler)
    	<-conn.closec
    	if b.N != handled {
    		b.Errorf("b.N=%d but handled %d", b.N, handled)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/dsync"
    	"github.com/minio/minio/internal/grid"
    	"github.com/minio/minio/internal/handlers"
    	xhttp "github.com/minio/minio/internal/http"
    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/kms"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/mux"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

            auto* node_context = shape_refiner_->GetContext(node);
            shape_inference::ShapeHandle handle;
            Status status =
                node_context->MakeShapeFromShapeProto(shape.value(), &handle);
            if (!status.ok()) {
              return EmitErrorWithLocationStr(*node, status);
            }
            node_context->set_output(shape.index(), handle);
          }
          return absl::OkStatus();
        };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top