Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 747 for mreply (0.11 sec)

  1. test/fixedbugs/issue33355.go

    				}
    			}
    			if len(queues) == 0 {
    				continue
    			}
    		}
    		if checkReply {
    			checkReply = false
    			mreply = reply
    		}
    		mh := c.msgb[:10]
    		mh = append(mh, subject...)
    		if len(queues) > 0 {
    			mh = append(mh, mreply...)
    			mh = append(mh, queues...)
    		}
    		sub.client = gwc
    	}
    	subPool.Put(sub)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 01 02:15:18 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/tooling/internal/provider/serialization/PayloadSerializerTest.groovy

            def reply = originator.deserialize(receiver.serialize(received))
    
            then:
            received.class.classLoader.loadClass(PayloadInterface.name) == received.payload.class.classLoader.loadClass(PayloadInterface.name)
            reply instanceof PayloadInterface
            reply.value instanceof PayloadInterface
            reply.class == wrapperClass
            reply.payload.class == payloadClass
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/net/rpc/jsonrpc/all_test.go

    	if args.B == 0 {
    		return errors.New("divide by zero")
    	}
    	reply.C = args.A / args.B
    	return nil
    }
    
    func (t *Arith) Error(args *Args, reply *Reply) error {
    	panic("ERROR")
    }
    
    type BuiltinTypes struct{}
    
    func (BuiltinTypes) Map(i int, reply *map[int]int) error {
    	(*reply)[i] = i
    	return nil
    }
    
    func (BuiltinTypes) Slice(i int, reply *[]int) error {
    	*reply = append(*reply, i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:09:53 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  4. src/net/rpc/server_test.go

    	if args.B == 0 {
    		return errors.New("divide by zero")
    	}
    	reply.C = args.A / args.B
    	return nil
    }
    
    func (t *Arith) String(args *Args, reply *string) error {
    	*reply = fmt.Sprintf("%d+%d=%d", args.A, args.B, args.A+args.B)
    	return nil
    }
    
    func (t *Arith) Scan(args string, reply *Reply) (err error) {
    	_, err = fmt.Sscan(args, &reply.C)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 05:23:29 UTC 2023
    - 19K bytes
    - Viewed (0)
  5. src/net/rpc/server.go

    		log.Fatal("dialing:", err)
    	}
    
    Then it can make a remote call:
    
    	// Synchronous call
    	args := &server.Args{7,8}
    	var reply int
    	err = client.Call("Arith.Multiply", args, &reply)
    	if err != nil {
    		log.Fatal("arith error:", err)
    	}
    	fmt.Printf("Arith: %d*%d=%d", args.A, args.B, reply)
    
    or
    
    	// Asynchronous call
    	quotient := new(Quotient)
    	divCall := client.Go("Arith.Divide", args, quotient, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/artifacts/deeply-nested.yaml

    Maciej Szulik <******@****.***> 1534848399 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 15:08:30 UTC 2018
    - 314 bytes
    - Viewed (0)
  7. src/math/rand/example_test.go

    		"It is decidedly so",
    		"Without a doubt",
    		"Yes definitely",
    		"You may rely on it",
    		"As I see it yes",
    		"Most likely",
    		"Outlook good",
    		"Yes",
    		"Signs point to yes",
    		"Reply hazy try again",
    		"Ask again later",
    		"Better not tell you now",
    		"Cannot predict now",
    		"Concentrate and ask again",
    		"Don't count on it",
    		"My reply is no",
    		"My sources say no",
    		"Outlook not so good",
    		"Very doubtful",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/InspectableConfigurationFixture.groovy

         */
        String dump(Configuration configuration) {
            StringBuilder reply = new StringBuilder()
    
            reply.append("\nConfiguration:")
            reply.append("  class='").append(configuration.getClass()).append("'")
            reply.append("  name='").append(configuration.getName()).append("'")
            reply.append("  hashcode='").append(configuration.hashCode()).append("'")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/math/rand/v2/example_test.go

    		"It is decidedly so",
    		"Without a doubt",
    		"Yes definitely",
    		"You may rely on it",
    		"As I see it yes",
    		"Most likely",
    		"Outlook good",
    		"Yes",
    		"Signs point to yes",
    		"Reply hazy try again",
    		"Ask again later",
    		"Better not tell you now",
    		"Cannot predict now",
    		"Concentrate and ask again",
    		"Don't count on it",
    		"My reply is no",
    		"My sources say no",
    		"Outlook not so good",
    		"Very doubtful",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. internal/dsync/dsync-server_test.go

    func (l *lockServer) Lock(args *LockArgs) (reply bool, err error) {
    	if d := atomic.LoadInt64(&l.responseDelay); d != 0 {
    		time.Sleep(time.Duration(d))
    	}
    
    	l.mutex.Lock()
    	defer l.mutex.Unlock()
    	if _, reply = l.lockMap[args.Resources[0]]; !reply {
    		l.lockMap[args.Resources[0]] = WriteLock // No locks held on the given name, so claim write lock
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 23 16:46:37 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top