Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 164 for strnames (0.21 sec)

  1. src/cmd/link/internal/ld/data.go

    		pkg = *flagPluginPath
    	}
    	pkg = objabi.PathToPrefix(pkg)
    	name := pkg + arg[dot:eq]
    	value := arg[eq+1:]
    	if _, ok := strdata[name]; !ok {
    		strnames = append(strnames, name)
    	}
    	strdata[name] = value
    }
    
    // addstrdata sets the initial value of the string variable name to value.
    func addstrdata(arch *sys.Arch, l *loader.Loader, name, value string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Streams.java

       */
      public static IntStream concat(IntStream... streams) {
        boolean isParallel = false;
        int characteristics = Spliterator.ORDERED | Spliterator.SIZED | Spliterator.NONNULL;
        long estimatedSize = 0L;
        ImmutableList.Builder<Spliterator.OfInt> splitrsBuilder =
            new ImmutableList.Builder<>(streams.length);
        for (IntStream stream : streams) {
          isParallel |= stream.isParallel();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  3. 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)
  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. 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)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

      internal var errorException: IOException? = null
    
      init {
        if (headers != null) {
          check(!isLocallyInitiated) { "locally-initiated streams shouldn't have headers yet" }
          headersQueue += headers
        } else {
          check(isLocallyInitiated) { "remotely-initiated streams should have headers" }
        }
      }
    
      /**
       * Returns true if this stream is open. A stream is open until either:
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. src/time/zoneinfo.go

    // parse succeeded.
    func tzset(s string, lastTxSec, sec int64) (name string, offset int, start, end int64, isDST, ok bool) {
    	var (
    		stdName, dstName     string
    		stdOffset, dstOffset int
    	)
    
    	stdName, s, ok = tzsetName(s)
    	if ok {
    		stdOffset, s, ok = tzsetOffset(s)
    	}
    	if !ok {
    		return "", 0, 0, 0, false, false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top