Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for reserialized (0.17 sec)

  1. src/crypto/x509/x509_test.go

    			}
    		} else {
    			if err != nil {
    				t.Errorf("#%d: unexpected failure: %s", i, err)
    				continue
    			}
    			reserialized := MarshalPKCS1PublicKey(pub)
    			if !bytes.Equal(reserialized, test.derBytes) {
    				t.Errorf("#%d: failed to reserialize: got %x, expected %x", i, reserialized, test.derBytes)
    			}
    		}
    	}
    }
    
    type matchHostnamesTest struct {
    	pattern, host string
    	ok            bool
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  2. cmd/storage-datatypes_gen.go

    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z BaseOptions) Msgsize() (s int) {
    	s = 1
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *CheckPartsHandlerParams) DecodeMsg(dc *msgp.Reader) (err error) {
    	var field []byte
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  3. fastapi/applications.py

                        not include that field, the JSON sent to the client would not have
                        that `password`.
                    * Validation: whatever you return will be serialized with the
                        `response_model`, converting any data as necessary to generate the
                        corresponding JSON. But if the data in the object returned is not
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        : Pass<"tf-xla-call-module-deserialization", "ModuleOp"> {
      let summary = "Deserializes StableHLO functions embedded in `tf.XlaCallModule` to top level module";
    
      let description = [{
        This pass deserializes the StableHLO bytecodes embedded in tf.XlaCallModule,
        then outlines the functions in the deserialized StableHLO module to the top
        level MLIR module, with function renamings to avoid naming conflicts.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

      tensorflow::core::CppShapeInferenceResult::HandleData handle_data;
      if (!handle_data.ParseFromArray(proto, proto_len)) {
        status->status =
            absl::InvalidArgumentError("Couldn't deserialize HandleData proto");
        return;
      }
      DCHECK(handle_data.is_set());
    
      tensorflow::mutex_lock l(graph->mu);
      tensorflow::shape_inference::InferenceContext* ic =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. cmd/metrics-v2.go

    	wg.Add(2)
    	go publish(ReportMetrics(GlobalContext, c.metricsGroups))
    	go publish(globalNotificationSys.GetClusterMetrics(GlobalContext))
    	wg.Wait()
    }
    
    // ReportMetrics reports serialized metrics to the channel passed for the metrics generated.
    func ReportMetrics(ctx context.Context, metricsGroups []*MetricsGroupV2) <-chan MetricV2 {
    	ch := make(chan MetricV2)
    	go func() {
    		defer xioutil.SafeClose(ch)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // TODO(b/154065712): Remove propagate_caller_callee_constants once using
      // SCCP pass instead.
      bool propagate_caller_callee_constants_;
    
      // XlaCallModule loader, which is used to deserialize the StableHLO module in
      // each `XlaCallModule` op. Uses its own MLIRContext since the loader needs to
      // load additional dialects, which is not allowed for the main context since
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

       * opportunistically, just to simplify some locking and avoid separate construction.
       */
      @SuppressWarnings("serial") // This class is never serialized.
      static class Segment<K, V> extends ReentrantLock {
    
        /*
         * TODO(fry): Consider copying variables (like evictsBySize) from outer class into this class.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

       * opportunistically, just to simplify some locking and avoid separate construction.
       */
      @SuppressWarnings("serial") // This class is never serialized.
      static class Segment<K, V> extends ReentrantLock {
    
        /*
         * TODO(fry): Consider copying variables (like evictsBySize) from outer class into this class.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    			err = a.Actor.Act(b, ctx, a)
    			span.Done()
    		}
    		if a.json != nil {
    			a.json.TimeDone = time.Now()
    		}
    
    		// The actions run in parallel but all the updates to the
    		// shared work state are serialized through b.exec.
    		b.exec.Lock()
    		defer b.exec.Unlock()
    
    		if err != nil {
    			if b.AllowErrors && a.Package != nil {
    				if a.Package.Error == nil {
    					a.Package.Error = &load.PackageError{Err: err}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top