Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for mreply (0.1 sec)

  1. src/crypto/tls/handshake_server_test.go

    			testFatal(t, err)
    		}
    		reply, err := cli.readHandshake(nil)
    		c.Close()
    		if err != nil {
    			replyChan <- err
    		} else {
    			replyChan <- reply
    		}
    	}()
    	config := testConfig.Clone()
    	config.CipherSuites = clientHello.cipherSuites
    	Server(s, config).Handshake()
    	s.Close()
    	reply := <-replyChan
    	if err, ok := reply.(error); ok {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. internal/s3select/select_test.go

    			if err != nil {
    				t.Error(err)
    				return
    			}
    			gotS := strings.TrimSpace(string(got))
    			if !reflect.DeepEqual(gotS, testCase.wantResult) {
    				t.Errorf("received response does not match with expected reply. Query: %s\ngot: %s\nwant:%s", testCase.query, gotS, testCase.wantResult)
    			}
    		})
    		t.Run("simd-"+testCase.name, func(t *testing.T) {
    			if !simdjson.SupportedCPU() {
    				t.Skip("No CPU support")
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  3. configure.py

          Nvidia GPUs".
        enabled_by_default: boolean for default behavior.
        question: optional string for how to ask for user input.
        yes_reply: optional string for reply when feature is enabled.
        no_reply: optional string for reply when feature is disabled.
    
      Returns:
        boolean value of the variable.
    
      Raises:
        UserInputError: if an environment variable is set, but it cannot be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    			if sizeS.failedCount > 0 {
    				res["repl-failed"] = fmt.Sprintf("%d versions, %d bytes", sizeS.failedCount, sizeS.failedSize)
    			}
    			if sizeS.pendingCount > 0 {
    				res["repl-pending"] = fmt.Sprintf("%d versions, %d bytes", sizeS.pendingCount, sizeS.pendingSize)
    			}
    			for tgt, st := range sizeS.replTargetStats {
    				res["repl-size-"+tgt] = strconv.FormatInt(st.replicatedSize, 10)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Sets.java

       * set of size {@code m x n x p}, its actual memory consumption is much smaller. When the
       * cartesian set is constructed, the input sets are merely copied. Only as the resulting set is
       * iterated are the individual lists created, and these are not retained after iteration.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  6. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/fits",
    				"application/font-tdpfr",
    				"application/h224",
    				"application/http",
    				"application/hyperstudio",
    				"application/ibe-key-request+xml",
    				"application/ibe-pkg-reply+xml",
    				"application/ibe-pp-data",
    				"application/iges",
    				"application/illustrator",
    				"application/im-iscomposing+xml",
    				"application/index",
    				"application/index.cmd",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Sets.java

       * set of size {@code m x n x p}, its actual memory consumption is much smaller. When the
       * cartesian set is constructed, the input sets are merely copied. Only as the resulting set is
       * iterated are the individual lists created, and these are not retained after iteration.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    	sumErrs := make([]error, len(r.buildList))
    	for i := range r.buildList {
    		i := i
    		m := r.buildList[i]
    		mActual := m
    		if mRepl := modload.Replacement(m); mRepl.Path != "" {
    			mActual = mRepl
    		}
    		old := module.Version{Path: m.Path, Version: r.initialVersion[m.Path]}
    		if old.Version == "" {
    			continue
    		}
    		oldActual := old
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    	// return errors if any during deletion
    	return reduceWriteQuorumErrs(ctx, g.Wait(), objectOpIgnoredErrs, writeQuorum)
    }
    
    // DeleteObject - deletes an object, this call doesn't necessary reply
    // any error as it is not necessary for the handler to reply back a
    // response to the client request.
    func (er erasureObjects) DeleteObject(ctx context.Context, bucket, object string, opts ObjectOptions) (objInfo ObjectInfo, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_test.go

    		client := Client(c, testConfig)
    		go func() {
    			<-startWrite
    			var request [1]byte
    			client.Write(request[:])
    		}()
    
    		go func() {
    			<-startRead
    			var reply [1]byte
    			if _, err := io.ReadFull(client, reply[:]); err != nil {
    				panic(err)
    			}
    			c.Close()
    			readDone <- struct{}{}
    		}()
    
    		if i&1 == 1 {
    			startWrite <- struct{}{}
    			startRead <- struct{}{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top