Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,885 for Parses (0.1 sec)

  1. istioctl/pkg/writer/compare/sds/util.go

    		if err != nil {
    			log.Debugf("failed to parse secret resource %s from source %s: %v",
    				s.name, s.source, err)
    			result.Valid = false
    			return result, nil
    		}
    		result.SecretMeta = meta
    		result.Valid = meta.Valid
    		return result, nil
    	}
    	result.Valid = false
    	return result, nil
    }
    
    // GetEnvoySecrets parses the secrets section of the config dump into []SecretItem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 06 15:14:48 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/credentials/resource.go

    		return name
    	}
    	// Otherwise, to kubernetes://
    	return KubernetesSecretTypeURI + name
    }
    
    // ParseResourceName parses a raw resourceName string.
    func ParseResourceName(resourceName string, proxyNamespace string, proxyCluster cluster.ID, configCluster cluster.ID) (SecretResource, error) {
    	sep := "/"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

    import static org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.PomDomParser.AddDTDFilterInputStream;
    import static org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.PomDomParser.getAllChilds;
    import static org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.PomDomParser.getFirstChildElement;
    import static org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.PomDomParser.getFirstChildText;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. src/net/nss.go

    				conf.sources = make(map[string][]nssSource)
    			}
    			conf.sources[db] = append(conf.sources[db], nssSource{
    				source:   src,
    				criteria: criteria,
    			})
    		}
    	}
    	return conf
    }
    
    // parses "foo=bar !foo=bar"
    func parseCriteria(x string) (c []nssCriterion, err error) {
    	err = foreachField(x, func(f string) error {
    		not := false
    		if len(f) > 0 && f[0] == '!' {
    			not = true
    			f = f[1:]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:15:51 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/doc/testdata/pkg.go

    	return true
    }
    
    type ExportedStructOneField struct {
    	OnlyField int // the only field
    }
    
    // Constants tied to ExportedType. (The type is a struct so this isn't valid Go,
    // but it parses and that's all we need.)
    const (
    	ExportedTypedConstant ExportedType = iota
    )
    
    // Comment about constructor for exported type.
    func ExportedTypeConstructor() *ExportedType {
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. internal/config/identity/openid/provider/keycloak.go

    	for _, opt := range opts {
    		opt(p)
    	}
    
    	if p.adminURL == "" {
    		return nil, errors.New("Admin URL cannot be empty")
    	}
    
    	_, err := url.Parse(p.adminURL)
    	if err != nil {
    		return nil, fmt.Errorf("Unable to parse the adminURL %s: %w", p.adminURL, err)
    	}
    
    	if p.client.Transport == nil {
    		p.client.Transport = http.DefaultTransport
    	}
    
    	if p.oeConfig.TokenEndpoint == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 29 01:27:09 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/cc/convert_asset_args_test.cc

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/OwningOpRef.h"  // from @llvm-project
    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/helpers.go

    			Quantity: &quantity,
    		},
    	}, nil
    }
    
    // parsePercentage parses a string representing a percentage value
    func parsePercentage(input string) (float32, error) {
    	value, err := strconv.ParseFloat(strings.TrimRight(input, "%"), 32)
    	if err != nil {
    		return 0, err
    	}
    	return float32(value) / 100, nil
    }
    
    // parseGracePeriods parses the grace period statements
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  9. src/internal/trace/raw/textreader.go

    	if trace != "Trace" {
    		return nil, fmt.Errorf("failed to parse header")
    	}
    	gover, line := readToken(line)
    	if !strings.HasPrefix(gover, "Go1.") {
    		return nil, fmt.Errorf("failed to parse header Go version")
    	}
    	rawv, err := strconv.ParseUint(gover[len("Go1."):], 10, 64)
    	if err != nil {
    		return nil, fmt.Errorf("failed to parse header Go version: %v", err)
    	}
    	v := version.Version(rawv)
    	if !v.Valid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    // Parser can now lookahead and consume the tokens
    func (p *Parser) scan() {
    	for {
    		token, literal := p.l.Lex()
    		p.scannedItems = append(p.scannedItems, ScannedItem{token, literal})
    		if token == EndOfStringToken {
    			break
    		}
    	}
    }
    
    // parse runs the left recursive descending algorithm
    // on input string. It returns a list of Requirement objects.
    func (p *Parser) parse() (internalSelector, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
Back to top