Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for strnames (0.23 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiStreamingBuildActionIntegrationTest.groovy

        def setup() {
            file("settings.gradle") << 'rootProject.name="hello-world"'
        }
    
        def "models are streamed on build action cache hit"() {
            def listener1 = new TestStreamedValueListener()
            def listener2 = new TestStreamedValueListener()
    
            when:
            withIsolatedProjects()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top