Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for corerest (0.38 sec)

  1. tensorflow/compiler/mlir/lite/BUILD

        ],
    )
    
    tf_cc_test(
        name = "size_utils_test",
        size = "small",
        srcs = ["utils/size_utils_test.cc"],
        deps = [
            ":size_utils",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "@llvm-project//mlir:IR",
        ],
    )
    
    cc_library(
        name = "cost_estimators",
        hdrs = [
            "utils/arithmetic_count_util.h",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrBucketRemoteArnInvalid: {
    		Code:           "XMinioAdminRemoteArnInvalid",
    		Description:    "The bucket remote ARN does not have correct format",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrRemoteTargetNotVersionedError: {
    		Code:           "RemoteTargetNotVersionedError",
    		Description:    "The remote target does not have versioning enabled",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    			}
    
    			// short-circuit on help
    			help, err := cleanFlagSet.GetBool("help")
    			if err != nil {
    				return errors.New(`"help" flag is non-bool, programmer error, please correct`)
    			}
    			if help {
    				return cmd.Help()
    			}
    
    			// short-circuit on verflag
    			verflag.PrintAndExitIfRequested()
    
    			// set feature gates from initial flags-based config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    		// Verify if the dataDir is present or not when the data
    		// is not inlined to make sure we return correct errors
    		// during HeadObject().
    
    		// Healing must not come here and return error, since healing
    		// deals with dataDirs directly, let healing fix things automatically.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Since the artifact view was created before the attributes were added to the configuration, Gradle was not able to select the correct artifact.
    
    Some builds may have worked around this by also putting the additional attributes into the artifact view. This is no longer necessary.
    
    [[kotlin_1_9.0]]
    ==== Upgrade to Kotlin 1.9.0
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		watcherIdx:     0,
    		watchers: indexedWatchers{
    			allWatchers:   make(map[namespacedName]watchersMap),
    			valueWatchers: make(map[string]watchersMap),
    		},
    		// TODO: Figure out the correct value for the buffer size.
    		incoming:              make(chan watchCacheEvent, 100),
    		dispatchTimeoutBudget: newTimeBudget(),
    		// We need to (potentially) stop both:
    		// - wait.Until go-routine
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. cmd/bucket-handlers.go

    		n, err := io.Copy(io.MultiWriter(buf, md5w), ioutil.HardLimitReader(pReader, maxFanOutSize))
    		if err != nil {
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    
    		// Set the correct hex md5sum for the fan-out stream.
    		fanOutOpts.MD5Hex = hex.EncodeToString(md5w.Sum(nil))
    
    		concurrentSize := 100
    		if runtime.GOMAXPROCS(0) < concurrentSize {
    			concurrentSize = runtime.GOMAXPROCS(0)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  8. src/time/format.go

    }
    
    // parseTimeZone parses a time zone string and returns its length. Time zones
    // are human-generated and unpredictable. We can't do precise error checking.
    // On the other hand, for a correct parse there must be a time zone at the
    // beginning of the string, so it's almost always true that there's one
    // there. We look at the beginning of the string for a run of upper-case letters.
    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. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        // Change all DT_VARIANT result types in function results to unranked tensor
        // type with element type derived from the corresponding input operand. This
        // is correct because while body's inputs and results have the same type.
        SmallVector<Type, 8> updated_result_types;
        updated_result_types.reserve(num_results);
        if (func_index == 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package core_test
    
    import (
    	"encoding/json"
    	"fmt"
    	"reflect"
    	"sort"
    	"strings"
    	"testing"
    
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top