Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 280 for respective (0.26 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. pkg/kubemark/controller.go

    	rcSynced  cache.InformerSynced
    	podLister listersv1.PodLister
    	podSynced cache.InformerSynced
    	client    kubeclient.Interface
    }
    
    // kubemarkCluster is used to delete nodes from kubemark cluster once their
    // respective replication controllers have been deleted and the nodes have
    // become unready. This is to cover for the fact that there is no proper cloud
    // provider for kubemark that would care for deleting the nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 23:02:17 UTC 2020
    - 14.1K bytes
    - Viewed (0)
  9. 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)
  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