Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for strnames (0.14 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/util/proxy/doc.go

    // streaming connections.
    //
    // The stream translator proxy is used for the RemoteCommand
    // subprotocol (e.g. kubectl exec, cp, and attach), and it connects
    // the output streams of a WebSocket connection (e.g. STDIN, STDOUT,
    // STDERR, TTY resize, and error streams) to the input streams of a
    // SPDY connection.
    //
    // The stream tunnel proxy tunnels SPDY frames through a WebSocket
    // connection, and it is used for the PortForward subprotocol (e.g.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 17:56:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/os/zero_copy_linux.go

    	pfd, _ := getPollFDAndNetwork(r)
    	// TODO(panjf2000): run some tests to see if we should unlock the non-streams for splice.
    	// Streams benefit the most from the splice(2), non-streams are not even supported in old kernels
    	// where splice(2) will just return EINVAL; newer kernels support non-streams like UDP, but I really
    	// doubt that splice(2) could help non-streams, cuz they usually send small frames respectively
    	// and one splice call would result in one frame.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/network_test.go

    			t.Helper()
    			if c.networkFromSystemNamespace().String() != network {
    				return fmt.Errorf("no network system notify")
    			}
    			podNames := sets.New[string]("pod1", "pod2")
    			svcNames := sets.New[string]("svc1")
    			addresses := c.ambientIndex.All()
    			for _, addr := range addresses {
    				wl := addr.GetWorkload()
    				if wl != nil {
    					if !podNames.Contains(wl.Name) {
    						continue
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top