Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 585 for respective (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/sync/pool.go

    	// It may not be changed concurrently with calls to Get.
    	New func() any
    }
    
    // Local per-P Pool appendix.
    type poolLocalInternal struct {
    	private any       // Can be used only by the respective P.
    	shared  poolChain // Local P can pushHead/popHead; any P can popTail.
    }
    
    type poolLocal struct {
    	poolLocalInternal
    
    	// Prevents false sharing on widespread platforms with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/go/types/mono.go

    // are allowed because static instantiation will reach a fixed point.
    
    type monoGraph struct {
    	vertices []monoVertex
    	edges    []monoEdge
    
    	// canon maps method receiver type parameters to their respective
    	// receiver type's type parameters.
    	canon map[*TypeParam]*TypeParam
    
    	// nameIdx maps a defined type or (canonical) type parameter to its
    	// vertex index.
    	nameIdx map[*TypeName]int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/mono.go

    // are allowed because static instantiation will reach a fixed point.
    
    type monoGraph struct {
    	vertices []monoVertex
    	edges    []monoEdge
    
    	// canon maps method receiver type parameters to their respective
    	// receiver type's type parameters.
    	canon map[*TypeParam]*TypeParam
    
    	// nameIdx maps a defined type or (canonical) type parameter to its
    	// vertex index.
    	nameIdx map[*TypeName]int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. 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)
  10. src/go/printer/testdata/comments.golden

    	i++ /* comment before opening curly brace */ {
    	}
    }
    
    // If there is no newline following punctuation, commas move before the punctuation.
    // This way, commas interspersed in lists stay with the respective expression.
    func f(x /* comment */, y int, z int /* comment */, u, v, w int /* comment */) {
    	f(x /* comment */, y)
    	f(x,	/* comment */
    		y)
    	f(
    		x,	/* comment */
    	)
    }
    
    func g(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
Back to top