Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,905 for Consumes (0.21 sec)

  1. common-protos/k8s.io/apimachinery/pkg/util/intstr/generated.proto

    option go_package = "k8s.io/apimachinery/pkg/util/intstr";
    
    // IntOrString is a type that can hold an int32 or a string.  When used in
    // JSON or YAML marshalling and unmarshalling, it produces or consumes the
    // inner type.  This allows you to have, for example, a JSON field that can
    // accept a name or number.
    // TODO: Rename to Int32OrString
    //
    // +protobuf=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/loader.h

      virtual const protobuf::Map<string, SignatureDef>& GetSignatures() const = 0;
    };
    
    /// SavedModel representation once the SavedModel is loaded from storage.
    ///
    /// NOTE: Prefer to use SavedModelBundleLite in new code, as it consumes less
    /// RAM.
    struct SavedModelBundle : public SavedModelBundleInterface {
      /// A TensorFlow Session does not Close itself on destruction. To avoid
      /// resource leaks, we explicitly call Close on Sessions that we create.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/routes/version.go

    	versionWS.Doc("git code version from which this is built")
    	versionWS.Route(
    		versionWS.GET("/").To(v.handleVersion).
    			Doc("get the code version").
    			Operation("getCodeVersion").
    			Produces(restful.MIME_JSON).
    			Consumes(restful.MIME_JSON).
    			Writes(version.Info{}))
    
    	c.Add(versionWS)
    }
    
    // handleVersion writes the server's version information.
    func (v Version) handleVersion(req *restful.Request, resp *restful.Response) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 09 18:11:41 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    type Interface interface {
    	// Stop tells the producer that the consumer is done watching, so the
    	// producer should stop sending events and close the result channel. The
    	// consumer should keep watching for events until the result channel is
    	// closed.
    	//
    	// Because some implementations may create channels when constructed, Stop
    	// must always be called, even if the consumer has not yet called
    	// ResultChan().
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/interface.go

    	"k8s.io/apiserver/pkg/util/flowcontrol/request"
    )
    
    // QueueSetFactory is used to create QueueSet objects.  Creation, like
    // config update, is done in two phases: the first phase consumes the
    // QueuingConfig and the second consumes the DispatchingConfig.  They
    // are separated so that errors from the first phase can be found
    // before committing to a concurrency allotment for the second.
    type QueueSetFactory interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/version.go

    	mediaTypes, _ := negotiation.MediaTypesForSerializer(s.serializer)
    	ws.Route(ws.GET("/").To(s.handle).
    		Doc("get available resources").
    		Operation("getAPIResources").
    		Produces(mediaTypes...).
    		Consumes(mediaTypes...).
    		Writes(metav1.APIResourceList{}))
    }
    
    // handle returns a handler which will return the api.VersionAndVersion of the group.
    func (s *APIVersionHandler) handle(req *restful.Request, resp *restful.Response) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 20:38:08 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-distribution/README.adoc

    The project in this example contains three projects: `application`, `list` and `utilities`.  All three projects apply the `java` plugin, and `application` consumes both `list` and `utilities` on its implementation configuration.  The `application` subproject is the final distribution of this software project, and applies `test-report-aggregation` to perform the test result aggregation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/group.go

    	ws.Path(APIGroupPrefix + "/" + s.group.Name)
    	ws.Doc("get information of a group")
    	ws.Route(ws.GET("/").To(s.handle).
    		Doc("get information of a group").
    		Operation("getAPIGroup").
    		Produces(mediaTypes...).
    		Consumes(mediaTypes...).
    		Writes(metav1.APIGroup{}))
    	return ws
    }
    
    // handle returns a handler which will return the api.GroupAndVersion of the group.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 20:38:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/per_function_aggregate_analysis.h

      // avoid stack overflow.
      llvm::DenseMap<func::FuncOp, InfoT> info_map_;
    };
    
    }  // namespace detail
    
    // Base CRTP class to help write passes that are consumes a per-function
    // aggregate analysis and operate on all non-extern functions (similar to a
    // OperationPass<func::FuncOp>, but with no concurrency between functions). The
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/legacy.go

    	ws.Path(s.apiPrefix)
    	ws.Doc("get available API versions")
    	ws.Route(ws.GET("/").To(s.restfulHandle).
    		Doc("get available API versions").
    		Operation("getAPIVersions").
    		Produces(mediaTypes...).
    		Consumes(mediaTypes...).
    		Writes(metav1.APIVersions{}))
    	return ws
    }
    
    func (s *legacyRootAPIHandler) restfulHandle(req *restful.Request, resp *restful.Response) {
    	s.ServeHTTP(resp.ResponseWriter, req.Request)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 22:44:49 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top