Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 873 for Parses (0.14 sec)

  1. src/go/build/read.go

    	// we are sure we don't change the errors that go/parser returns.
    	if r.err == errSyntax {
    		r.err = nil
    		for r.err == nil && !r.eof {
    			r.readByte()
    		}
    		info.header = r.buf
    	}
    	if r.err != nil {
    		return r.err
    	}
    
    	if info.fset == nil {
    		return nil
    	}
    
    	// Parse file header & record imports.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/features/features.go

    			pre = fmt.Sprintf("%s - ", v.PreRelease)
    		}
    		known = append(known, fmt.Sprintf("%s=true|false (%sdefault=%t)", k, pre, v.Default))
    	}
    	sort.Strings(known)
    	return known
    }
    
    // NewFeatureGate parses a string of the form "key1=value1,key2=value2,..." into a
    // map[string]bool of known keys or returns an error.
    func NewFeatureGate(f *FeatureList, value string) (map[string]bool, error) {
    	featureGate := map[string]bool{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/regexp/syntax/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Code generated by mksyntaxgo from the RE2 distribution. DO NOT EDIT.
    
    /*
    Package syntax parses regular expressions into parse trees and compiles
    parse trees into programs. Most clients of regular expressions will use the
    facilities of package [regexp] (such as [regexp.Compile] and [regexp.Match]) instead of this package.
    
    # Syntax
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. cmd/endpoint-ellipses.go

    		var totalSize uint64 = 1
    		for _, p := range argPattern {
    			totalSize *= uint64(len(p.Seq))
    		}
    		totalSizes = append(totalSizes, totalSize)
    	}
    	return totalSizes
    }
    
    // Parses all arguments and returns an endpointSet which is a collection
    // of endpoints following the ellipses pattern, this is what is used
    // by the object layer for initializing itself.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. src/runtime/pprof/vminfo_darwin_test.go

    		return 0, 0, false, fmt.Errorf("failed to parse vmmap output, vmmap did not report an error: %v", err)
    	}
    	return hi, lo, false, nil
    }
    
    // parseVmmap parses the output of vmmap and calls addMapping for the first r-x TEXT segment in the output.
    func parseVmmap(data []byte) (hi, lo uint64, err error) {
    	// vmmap 53799
    	// Process:         gopls [53799]
    	// Path:            /Users/USER/*/gopls
    	// Load Address:    0x1029a0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 19:59:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/helpers.go

    	if err != nil {
    		return nil, err
    	}
    	return &workloadapi.NetworkAddress{
    		Network: a.Network(vip, make(labels.Instance, 0)).String(),
    		Address: ip.AsSlice(),
    	}, nil
    }
    
    // parseCidrOrIP parses an IP or a CIDR of a exactly 1 IP (e.g. /32).
    // This is to support ServiceEntry which supports CIDRs, but we don't currently support more than 1 IP
    func parseCidrOrIP(ip string) (netip.Addr, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 22 20:35:23 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. src/crypto/tls/ech.go

    	PublicName    []byte
    	Extensions    []echExtension
    }
    
    var errMalformedECHConfig = errors.New("tls: malformed ECHConfigList")
    
    // parseECHConfigList parses a draft-ietf-tls-esni-18 ECHConfigList, returning a
    // slice of parsed ECHConfigs, in the same order they were parsed, or an error
    // if the list is malformed.
    func parseECHConfigList(data []byte) ([]echConfig, error) {
    	s := cryptobyte.String(data)
    	// Skip the length prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDetectorTest.groovy

                new AnnotationProcessorDeclaration("InDir", IncrementalAnnotationProcessorType.ISOLATING)
            ]
        }
    
        def "detects incremental processors and parses their type"() {
            given:
            def jar = tmpDir.file("classes.jar")
            jar << JarUtils.jarWithContents(
                (PROCESSOR_DECLARATION): "InJar",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

        private Map<String, GroupedTransformOutputFixture> transforms;
    
        public GroupedOutputFixture(LogContent output) {
            this.originalOutput = output;
            this.strippedOutput = parse(output);
        }
    
        private String parse(LogContent output) {
            tasks = new HashMap<>();
            transforms = new HashMap<>();
    
            String strippedOutput = output.ansiCharsToPlainText().withNormalizedEol();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. internal/bucket/lifecycle/lifecycle.go

    			return true
    		}
    		if !rule.Transition.IsNull() { // this allows for Transition.Days to be zero.
    			return true
    		}
    
    	}
    	return false
    }
    
    // ParseLifecycleConfigWithID - parses for a Lifecycle config and assigns
    // unique id to rules with empty ID.
    func ParseLifecycleConfigWithID(r io.Reader) (*Lifecycle, error) {
    	var lc Lifecycle
    	if err := xml.NewDecoder(r).Decode(&lc); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top