Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for strnames (0.24 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. maven-model-builder/src/test/resources/dag.txt

    	quarkus/extensions/arc/deployment/pom.xml
    quarkus/extensions/reactive-streams-operators/smallrye-reactive-streams-operators/deployment/pom.xml
    	quarkus/core/deployment/pom.xml
    	quarkus/extensions/smallrye-context-propagation/deployment/pom.xml
    	quarkus/extensions/reactive-streams-operators/smallrye-reactive-streams-operators/runtime/pom.xml
    	quarkus/test-framework/junit5-internal/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    	var rmvEndpoints []string
    	siteNames := rreq.SiteNames
    	updatedPeers := make(map[string]madmin.PeerInfo)
    
    	for _, pi := range info.Sites {
    		updatedPeers[pi.DeploymentID] = pi
    		peerMap[pi.Name] = pi
    		if rreq.RemoveAll {
    			siteNames = append(siteNames, pi.Name)
    		}
    	}
    	for _, s := range siteNames {
    		pinfo, ok := peerMap[s]
    		if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

                ),
              )
            assertContent("B", response)
            break
          } catch (socketException: IOException) {
            // If there's a socket exception, this must have a streamed request body.
            assertThat(j).isEqualTo(0)
            assertThat(transferKind).isIn(TransferKind.CHUNKED, TransferKind.FIXED_LENGTH)
          }
        }
        val requestA = server.takeRequest()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    			errs = appendErrors(errs, fmt.Errorf("use client protocol must not be true when H2UpgradePolicy is UPGRADE"))
    		}
    		if httpSettings.MaxConcurrentStreams < 0 {
    			errs = appendErrors(errs, fmt.Errorf("max concurrent streams must be non-negative"))
    		}
    	}
    
    	if tcp := settings.Tcp; tcp != nil {
    		if tcp.MaxConnections < 0 {
    			errs = appendErrors(errs, fmt.Errorf("max connections must be non-negative"))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

            "properties": {
              "name": {
                "default": "",
                "description": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
                "type": "string"
              }
            },
            "required": [
              "name"
            ],
            "type": "object"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

            "properties": {
              "name": {
                "default": "",
                "description": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
                "type": "string"
              }
            },
            "required": [
              "name"
            ],
            "type": "object"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    				Http: &networking.ConnectionPoolSettings_HTTPSettings{IdleTimeout: &durationpb.Duration{Seconds: 30, Nanos: 5}},
    			},
    			valid: false,
    		},
    
    		{
    			name: "invalid connection pool, bad max concurrent streams", in: &networking.ConnectionPoolSettings{
    				Http: &networking.ConnectionPoolSettings_HTTPSettings{MaxConcurrentStreams: -1},
    			},
    			valid: false,
    		},
    	}
    
    	for _, c := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    		// let the foo response finish so we can use its connection for /bar.
    
    		if mode == http2Mode {
    			// In HTTP/2 mode, the second Dial won't happen because the protocol
    			// multiplexes the streams by default. Just sleep for an arbitrary time;
    			// the test should pass regardless of how far the bar request gets by this
    			// point.
    			select {
    			case <-dialing:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top