Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 266 for respective (0.45 sec)

  1. guava/src/com/google/common/util/concurrent/Striped.java

       */
      public Iterable<L> bulkGet(Iterable<? extends Object> keys) {
        // Initially using the list to store the keys, then reusing it to store the respective L's
        List<Object> result = newArrayList(keys);
        if (result.isEmpty()) {
          return ImmutableList.of();
        }
        int[] stripes = new int[result.size()];
        for (int i = 0; i < result.size(); i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/Striped.java

       */
      public Iterable<L> bulkGet(Iterable<? extends Object> keys) {
        // Initially using the list to store the keys, then reusing it to store the respective L's
        List<Object> result = newArrayList(keys);
        if (result.isEmpty()) {
          return ImmutableList.of();
        }
        int[] stripes = new int[result.size()];
        for (int i = 0; i < result.size(); i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      // disabled (per-layer) float and quantized ops will be run from same input
      // (output of previous quantized layer). When enabled, float and quantized ops
      // will run with respective float and quantized output of previous ops.
      bool whole_model_verify = false;
    
      // Whether to use fake quant attributes to calculate quantization parameters.
      bool use_fake_quant_num_bits = false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

    #define GEN_PASS_DEF_LEGALIZETFCOMMUNICATIONPASS
    #include "tensorflow/compiler/mlir/tf2xla/transforms/tf_xla_passes.h.inc"
    
    // A pass that legalizes TF/XLA communication ops, propagate their respective
    // tokens (for ordering), and rewrite their respective functions and control
    // flow ops when necessary.
    // Note, this currently does not handle nested modules/functions or region based
    // ops other than certain control flow ops (`mhlo.if`, `mhlo.while`).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

            try {
                out = new BufferedOutputStream(new FileOutputStream(destination));
    
                // No proxy is passed here as proxies are set globally using the HTTP(S) proxy system properties. The respective protocol handler implementation then makes use of these properties.
                conn = safeUrl.openConnection();
    
                addBasicAuthentication(address, conn);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    // errors that can be converted to api.Status. It will invoke update validation with the provided existing
    // and updated objects.
    // It sets zero values only if the object does not have a zero value for the respective field.
    func BeforeUpdate(strategy RESTUpdateStrategy, ctx context.Context, obj, old runtime.Object) error {
    	objectMeta, kind, kerr := objectMetaAndKind(strategy, obj)
    	if kerr != nil {
    		return kerr
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  7. src/internal/fuzz/encoding.go

    		case []byte: // []uint8
    			fmt.Fprintf(b, "[]byte(%q)\n", t)
    		default:
    			panic(fmt.Sprintf("unsupported type: %T", t))
    		}
    	}
    	return b.Bytes()
    }
    
    // unmarshalCorpusFile decodes corpus bytes into their respective values.
    func unmarshalCorpusFile(b []byte) ([]any, error) {
    	if len(b) == 0 {
    		return nil, fmt.Errorf("cannot unmarshal empty string")
    	}
    	lines := bytes.Split(b, []byte("\n"))
    	if len(lines) < 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 16:39:12 UTC 2022
    - 11K bytes
    - Viewed (0)
  8. src/text/scanner/scanner.go

    //
    //	ScanIdents | ScanInts | SkipComments
    //
    // With the exceptions of comments, which are skipped if SkipComments is
    // set, unrecognized tokens are not ignored. Instead, the scanner simply
    // returns the respective individual characters (or possibly sub-tokens).
    // For instance, if the mode is ScanIdents (not ScanStrings), the string
    // "foo" is scanned as the token sequence '"' [Ident] '"'.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/go/doc/doc.go

    	Examples []*Example
    }
    
    // Func is the documentation for a func declaration.
    type Func struct {
    	Doc  string
    	Name string
    	Decl *ast.FuncDecl
    
    	// methods
    	// (for functions, these fields have the respective zero value)
    	Recv  string // actual   receiver "T" or "*T" possibly followed by type parameters [P1, ..., Pn]
    	Orig  string // original receiver "T" or "*T"
    	Level int    // embedding level; 0 means not embedded
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	// instantiate S with the type-parameters A and B, which are scoped to the
    	// respective methods. L4 and L5 each instantiate S with int. Each of these
    	// instantiations has its own method set, full of methods (and thus objects)
    	// with receivers whose types are the respective instantiations. In other
    	// words, we have
    	//
    	// S[A].Foo, S[A].Bar
    	// S[B].Foo, S[B].Bar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top