Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 311 for strnames (0.18 sec)

  1. pkg/test/framework/components/echo/echotest/filters_test.go

    							if testTopology[srcKey] == nil {
    								testTopology[srcKey] = map[string]int{}
    							}
    							var dstnames []string
    							for _, dst := range dsts {
    								dstnames = append(dstnames, dst.Config().ClusterLocalFQDN())
    							}
    							dstKey := strings.Join(dstnames, "_")
    							testTopology[srcKey][dstKey]++
    						})
    				},
    				expect: map[string]map[string]int{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

        *ss_ << value;
      }
    #endif  // GTEST_OS_SYMBIAN
    
      // We'll hold the text streamed to this object here.
      const internal::scoped_ptr< ::std::stringstream> ss_;
    
      // We declare (but don't implement) this to prevent the compiler
      // from implementing the assignment operator.
      void operator=(const Message&);
    };
    
    // Streams a Message to an ostream.
    inline std::ostream& operator <<(std::ostream& os, const Message& sb) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. internal/grid/handlers.go

    		if err != nil {
    			return err
    		}
    		return next(resp)
    	})
    }
    
    // Streamer creates a stream.
    type Streamer interface {
    	NewStream(ctx context.Context, h HandlerID, payload []byte) (st *Stream, err error)
    }
    
    // Call the remove with the request and
    func (h *StreamTypeHandler[Payload, Req, Resp]) Call(ctx context.Context, c Streamer, payload Payload) (st *TypedStream[Req, Resp], err error) {
    	if c == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. pkg/auth/nodeidentifier/default.go

    func NewDefaultNodeIdentifier() NodeIdentifier {
    	return defaultNodeIdentifier{}
    }
    
    // defaultNodeIdentifier implements NodeIdentifier
    type defaultNodeIdentifier struct{}
    
    // nodeUserNamePrefix is the prefix for usernames in the form `system:node:<nodeName>`
    const nodeUserNamePrefix = "system:node:"
    
    // NodeIdentity returns isNode=true if the user groups contain the system:nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 15 09:32:31 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/jacoco-quickstart/kotlin/src/main/java/org/gradle/Person.java

    package org.gradle;
    
    import java.lang.String;
    
    public class Person{
        String surname;
        int age;
    
        public String getSurname() {
            return surname;
        }
    
        public void setSurname(String surname) {
            this.surname = surname;
        }
    
        public int getAge() {
            return age;
        }
    
        public void setAge(int age) {
            this.age = age;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 369 bytes
    - Viewed (0)
  6. internal/grid/README.md

    It uses a single two-way connection to send and receive messages between servers.
    
    It includes built in muxing of concurrent requests as well as congestion handling for streams.
    
    Requests can be "Single Payload" or "Streamed".
    
    Use the MinIO Grid for:
    
    * Small, frequent requests with low latency requirements.
    * Long-running requests with small/medium payloads.
    
    Do *not* use the MinIO Grid for:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/deployment/services.go

    		protMap := portMap[port]
    		if len(protMap) > 1 {
    			// Collect names from both protocols
    			svcNames := make(ServiceNames, 0)
    			for protocol := range protMap {
    				svcNames = append(svcNames, protMap[protocol]...)
    			}
    			sort.Strings(svcNames)
    			m := msg.NewDeploymentAssociatedToMultipleServices(r, r.Metadata.FullName.Name.String(), port, svcNames)
    
    			if line, ok := util.ErrorLine(r, fmt.Sprintf(util.MetadataName)); ok {
    				m.Line = line
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

    }
    
    // TODO(chky): Consider adding this op to tensorflow core ops.
    def TF_PwStreamResultsOp : TF_Op<"PwStreamResults"> {
      let summary = "Streams results back to the controller";
    
      let description = [{
        This op is a TensorFlow op that represents "streamed outputs", where
        intermediate results can be returned immediately without waiting for the
        entire signature computation to complete.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. src/testing/match.go

    	base := parent + "/" + subname
    
    	for {
    		n := m.subNames[base]
    		if n < 0 {
    			panic("subtest count overflow")
    		}
    		m.subNames[base] = n + 1
    
    		if n == 0 && subname != "" {
    			prefix, nn := parseSubtestNumber(base)
    			if len(prefix) < len(base) && nn < m.subNames[prefix] {
    				// This test is explicitly named like "parent/subname#NN",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/proxy/websocket.go

    	}
    	if err != nil {
    		conn.Close()
    		return nil, fmt.Errorf("write error during websocket server creation: %v", err)
    	}
    
    	ctx := &conns{
    		conn:         conn,
    		stdinStream:  streams[constants.StreamStdIn],
    		stdoutStream: streams[constants.StreamStdOut],
    		stderrStream: streams[constants.StreamStdErr],
    		tty:          opts.Tty,
    		resizeStream: streams[constants.StreamResize],
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top