Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 165 for uncommon (0.36 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    #include "tensorflow/compiler/mlir/lite/utils/const_tensor_utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/convert_type.h"
    #include "tensorflow/compiler/mlir/lite/utils/size_utils.h"
    #include "tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_traits.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_attributes.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller.go

    	ref "k8s.io/client-go/tools/reference"
    	"k8s.io/client-go/util/workqueue"
    	volerr "k8s.io/cloud-provider/volume/errors"
    	storagehelpers "k8s.io/component-helpers/storage/volume"
    	"k8s.io/kubernetes/pkg/controller/volume/common"
    	"k8s.io/kubernetes/pkg/controller/volume/events"
    	"k8s.io/kubernetes/pkg/controller/volume/persistentvolume/metrics"
    	"k8s.io/kubernetes/pkg/util/goroutinemap"
    	"k8s.io/kubernetes/pkg/util/goroutinemap/exponentialbackoff"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  3. src/os/os_test.go

    			Getenv("SystemRoot") + "\\system32\\drivers\\etc",
    			[]string{
    				"networks",
    				"protocol",
    				"services",
    			},
    		}
    	case "plan9":
    		return &sysDir{
    			"/lib/ndb",
    			[]string{
    				"common",
    				"local",
    			},
    		}
    	case "wasip1":
    		// wasmtime has issues resolving symbolic links that are often present
    		// in directories like /etc/group below (e.g. private/etc/group on OSX).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    // top wrapper to prevent multiple inclusion (is this OK?)
    (function () { if(jQuery && jQuery.jstree) { return; }
    	var is_ie6 = false, is_ie7 = false, is_ff2 = false;
    
    /*
     * jsTree core
     */
    (function ($) {
    	// Common functions not related to jsTree
    	// decided to move them to a `vakata` "namespace"
    	$.vakata = {};
    	// CSS related functions
    	$.vakata.css = {
    		get_css : function(rule_name, delete_flag, sheet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    			pc.closeLocked(errServerClosedIdle)
    			return
    		} else {
    			log.Printf("Unsolicited response received on idle HTTP channel starting with %q; err=%v", buf, peekErr)
    		}
    	}
    	if peekErr == io.EOF {
    		// common case.
    		pc.closeLocked(errServerClosedIdle)
    	} else {
    		pc.closeLocked(fmt.Errorf("readLoopPeekFailLocked: %w", peekErr))
    	}
    }
    
    // is408Message reports whether buf has the prefix of an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    		Version: "v1",
    		Kind:    "ClusterScopedParamsConfig",
    	}
    
    	paramsGVK schema.GroupVersionKind = schema.GroupVersionKind{
    		Group:   "example.com",
    		Version: "v1",
    		Kind:    "ParamsConfig",
    	}
    
    	// Common objects
    	denyPolicy *admissionregistrationv1.ValidatingAdmissionPolicy = &admissionregistrationv1.ValidatingAdmissionPolicy{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            "denypolicy.example.com",
    			ResourceVersion: "1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        shard_output_types.push_back(shard_type);
        full_output_types.push_back(output.getType());
      }
    
      // Convert split sharded inputs to MANUAL sharded inputs.
      // common_split_sharding is the split sharding that is common to all inputs
      // and outputs.
      llvm::SmallVector<Value, 4> manual_inputs;
      manual_inputs.reserve(inputs.size());
      for (Value in : inputs) {
        Type shard_type;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  8. cmd/bucket-handlers.go

    		return
    	}
    
    	if maxUploads < 0 {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidMaxUploads), r.URL)
    		return
    	}
    
    	if keyMarker != "" {
    		// Marker not common with prefix is not implemented.
    		if !HasPrefix(keyMarker, prefix) {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrNotImplemented), r.URL)
    			return
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  9. src/net/netip/netip_test.go

    			TestAppendToMarshal(t, got)
    
    			// Check that MarshalText/UnmarshalText work similarly to
    			// ParseAddr/String (see TestIPMarshalUnmarshal for
    			// marshal-specific behavior that's not common with
    			// ParseAddr/String).
    			js := `"` + test.in + `"`
    			var jsgot Addr
    			if err := json.Unmarshal([]byte(js), &jsgot); err != nil {
    				t.Fatal(err)
    			}
    			if jsgot != got {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  10. src/time/format.go

    func appendInt(b []byte, x int, width int) []byte {
    	u := uint(x)
    	if x < 0 {
    		b = append(b, '-')
    		u = uint(-x)
    	}
    
    	// 2-digit and 4-digit fields are the most common in time formats.
    	utod := func(u uint) byte { return '0' + byte(u) }
    	switch {
    	case width == 2 && u < 1e2:
    		return append(b, utod(u/1e1), utod(u%1e1))
    	case width == 4 && u < 1e4:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top