Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for SplitV (0.11 sec)

  1. pilot/pkg/features/pilot.go

    				"Support values: all authProviders (`gcp`, `azure`, `exec`, `openstack`), "+
    				"`clientKey`, `clientCertificate`, `tokenFile`, and `exec`.").Get()
    		return sets.New(strings.Split(v, ",")...)
    	}()
    
    	CanonicalServiceForMeshExternalServiceEntry = env.Register("LABEL_CANONICAL_SERVICES_FOR_MESH_EXTERNAL_SERVICE_ENTRIES", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiBuildActionIntegrationTest.groovy

            buildFile << """
                plugins.apply(my.MyPlugin)
            """
            file("a/build.gradle") << """
                plugins.apply(my.MyPlugin)
            """
            // Intentionally don't apply to project b. Should split this case (some projects don't have the model available) out into a separate test
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model = runBuildAction(new FetchCustomModelForEachProject())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. cmd/handler-utils.go

    func trimAwsChunkedContentEncoding(contentEnc string) (trimmedContentEnc string) {
    	if contentEnc == "" {
    		return contentEnc
    	}
    	var newEncs []string
    	for _, enc := range strings.Split(contentEnc, ",") {
    		if enc != streamingContentEncoding {
    			newEncs = append(newEncs, enc)
    		}
    	}
    	return strings.Join(newEncs, ",")
    }
    
    func collectInternodeStats(f http.HandlerFunc) http.HandlerFunc {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. internal/kms/config.go

    		}
    		return true, nil
    	}
    }
    
    func expandEndpoints(s string) ([]string, error) {
    	var endpoints []string
    	for _, endpoint := range strings.Split(s, ",") {
    		endpoint = strings.TrimSpace(endpoint)
    		if endpoint == "" {
    			continue
    		}
    		if !ellipses.HasEllipses(endpoint) {
    			endpoints = append(endpoints, endpoint)
    			continue
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. cmd/object-api-options.go

    			valid = false
    			return
    		}
    	}
    
    	return
    }
    
    func parseObjectAttributes(h http.Header) (attributes map[string]struct{}) {
    	attributes = make(map[string]struct{})
    	for _, v := range strings.Split(strings.TrimSpace(h.Get(xhttp.AmzObjectAttributes)), ",") {
    		if v != "" {
    			attributes[v] = struct{}{}
    		}
    	}
    
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            return intermediateModels.loadOrCreateIntermediateModel(identityPath, modelName, parameter, creator)
        }
    
        // TODO:configuration - split the component state, such that information for dependency resolution does not have to go through the store
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    func validateGatewayNames(gatewayNames []string, gatewaySemantics bool) (errs Validation) {
    	for _, gatewayName := range gatewayNames {
    		parts := strings.SplitN(gatewayName, "/", 2)
    		if len(parts) != 2 {
    			if strings.Contains(gatewayName, ".") {
    				// Legacy FQDN style
    				parts := strings.Split(gatewayName, ".")
    				recommended := fmt.Sprintf("%s/%s", parts[1], parts[0])
    				errs = AppendValidation(errs, WrapWarning(fmt.Errorf(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_inbound.go

    	chains := make([]*listener.FilterChain, 0, len(opts))
    	for _, opt := range opts {
    		switch opt.Protocol {
    		// Switch on the protocol. Note: we do not need to handle Auto protocol as it will already be split into a TCP and HTTP option.
    		case istionetworking.ListenerProtocolHTTP:
    			chains = append(chains, &listener.FilterChain{
    				FilterChainMatch: cc.ToFilterChainMatch(opt),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

            }
    
            private static Set<String> parsePackageMatcher(String packageList) {
                return Arrays.stream(packageList.split(":"))
                    .map(include -> include.replace("**/", "..").replace("/**", "..").replace("/*", "").replace("/", "."))
                    .collect(toSet());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/func.go

    	lenType := types.Types[types.TINT]
    	// Split this string up into two separate variables.
    	p := f.SplitSlot(name, ".ptr", 0, ptrType)
    	l := f.SplitSlot(name, ".len", ptrType.Size(), lenType)
    	return p, l
    }
    
    func (f *Func) SplitInterface(name *LocalSlot) (*LocalSlot, *LocalSlot) {
    	n := name.N
    	u := types.Types[types.TUINTPTR]
    	t := types.NewPtr(types.Types[types.TUINT8])
    	// Split this interface up into two separate variables.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top