Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for strnames (0.24 sec)

  1. releasenotes/notes/max-concurrent-streams.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 08 21:39:29 UTC 2024
    - 210 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/rest/streamer.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/registry/rest"
    )
    
    type CounterMetric interface {
    	Inc()
    }
    
    // LocationStreamer is a resource that streams the contents of a particular
    // location URL.
    type LocationStreamer struct {
    	Location        *url.URL
    	Transport       http.RoundTripper
    	ContentType     string
    	Flush           bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 16:43:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/rest/streamer_test.go

    		w.Write([]byte(resultString))
    	}))
    	defer s.Close()
    	u, err := url.Parse(s.URL)
    	if err != nil {
    		t.Errorf("Error parsing server URL: %v", err)
    		return
    	}
    	streamer := &LocationStreamer{
    		Location: u,
    	}
    	readCloser, _, _, err := streamer.InputStream(context.Background(), "", "")
    	if err != nil {
    		t.Errorf("Unexpected error when getting stream: %v", err)
    		return
    	}
    	defer readCloser.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 27 08:25:24 UTC 2021
    - 5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/cert_key.go

    type sniCertKeyContent struct {
    	certKeyContent
    	sniNames []string
    }
    
    func (c *sniCertKeyContent) Equal(rhs *sniCertKeyContent) bool {
    	if c == nil || rhs == nil {
    		return c == rhs
    	}
    
    	if len(c.sniNames) != len(rhs.sniNames) {
    		return false
    	}
    
    	for i := range c.sniNames {
    		if c.sniNames[i] != rhs.sniNames[i] {
    			return false
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  6. src/time/zoneinfo_windows.go

    			return false, err
    		}
    	}
    
    	if std != stdname {
    		return false, nil
    	}
    	if dlt != dstname && dstname != stdname {
    		return false, nil
    	}
    	return true, nil
    }
    
    // toEnglishName searches the registry for an English name of a time zone
    // whose zone names are stdname and dstname and returns the English name.
    func toEnglishName(stdname, dstname string) (string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. pilot/test/xdstest/grpc.go

    func SlowClientInterceptor(recv, send time.Duration) grpc.StreamClientInterceptor {
    	return func(ctx context.Context, desc *grpc.StreamDesc, cc *grpc.ClientConn,
    		method string, streamer grpc.Streamer, opts ...grpc.CallOption,
    	) (grpc.ClientStream, error) {
    		clientStream, err := streamer(ctx, desc, cc, method, opts...)
    		return &slowClientStream{clientStream, recv, send}, err
    	}
    }
    
    type slowServerStream struct {
    	grpc.ServerStream
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/files/fileCollections/groovy/build.gradle

    tasks.register('conventions') {
        def objects = objects
        doLast {
            // tag::conventions[]
            def files = objects.fileCollection().convention("src")
            files.from("src2")
            def dirNames = files*.name
            println("Source dirs: ${dirNames}") // [src, src2]
            // end::conventions[]
        }
    }
    
    tasks.register('usage') {
        ProjectLayout projectLayout = layout
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. .idea/dictionaries/4u7.xml

          <w>instrumentator</w>
          <w>jdks</w>
          <w>jsshell</w>
          <w>proguarded</w>
          <w>protobuf</w>
          <w>redirector</w>
          <w>remapper</w>
          <w>sonatype</w>
          <w>streamex</w>
          <w>unpresent</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 16 12:19:01 UTC 2023
    - 498 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/borrowing_test.go

    	} {
    		t.Run(testCase.name, func(t *testing.T) {
    			fsObjs := make([]*flowcontrol.FlowSchema, 2)
    			plcObjs := make([]*flowcontrol.PriorityLevelConfiguration, 2)
    			usernames := make([]string, 2)
    			cfgObjs := []runtime.Object{}
    			for flow := 0; flow < 2; flow++ {
    				usernames[flow] = fmt.Sprintf("test-user%d", flow)
    				plName := fmt.Sprintf("test-pl%d", flow)
    				fsObjs[flow] = &flowcontrol.FlowSchema{
    					ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top