Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 591 for Missing (0.33 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		m := p.Mapping[0]
    		if execName != "" {
    			// Explicitly do not update KernelRelocationSymbol --
    			// the source override is most likely missing it.
    			m.File = execName
    		}
    		// Only apply the build ID override if the build ID in the main mapping is
    		// missing. Overwriting the build ID in case it's present is very likely a
    		// wrong thing to do so we refuse to do that.
    		if buildID != "" && m.BuildID == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSoakTest.groovy

                    .withToolchainDownloadEnabled()
        }
    
        def cleanup() {
            executer.gradleUserHomeDir.file("jdks").deleteDir()
        }
    
        def "can download missing jdk automatically"() {
            when:
            result = executer
                    .withTasks("compileJava")
                    .run()
    
            then:
            javaClassFile("Foo.class").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 16:13:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    	if !expect.Equal(result) {
    		// expected fields missing from result
    		missing := expect.Difference(result)
    		// unexpected fields in result but not specified in expect
    		unexpected := result.Difference(expect)
    		if len(missing) > 0 {
    			t.Errorf("the following fields were expected, but missing from the result. "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/decls0.go

    const _, init /* ERROR "cannot declare init" */ , _ = 0, 1, 2
    type init /* ERROR "cannot declare init" */ struct{}
    var _, init /* ERROR "cannot declare init" */ int
    
    func init() {}
    func init /* ERROR "missing function body" */ ()
    
    func _() { const init = 0 }
    func _() { type init int }
    func _() { var init int; _ = init }
    
    // invalid array types
    type (
    	iA0 [... /* ERROR "invalid use of [...] array" */ ]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    		{`package m5; func f() {}`, `f`, `<missing>`},
    		{`package m6; func _(x int) {}`, `x`, `<missing>`},
    		{`package m6; func _()(x int) { return }`, `x`, `<missing>`},
    		{`package m6; type T int; func (x T) _() {}`, `x`, `<missing>`},
    	}
    
    	for _, test := range tests {
    		info := Info{Types: make(map[ast.Expr]TypeAndValue)}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/iimport.go

    		return pkg
    	}
    	path := p.stringAt(off)
    	errorf("missing package %q in %q", path, p.ipath)
    	return nil
    }
    
    func (p *iimporter) typAt(off uint64, base *types.Named) types.Type {
    	if t, ok := p.typCache[off]; ok && canReuse(base, t) {
    		return t
    	}
    
    	if off < predeclReserved {
    		errorf("predeclared type missing from cache: %v", off)
    	}
    
    	r := &importReader{p: p}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. src/cmd/covdata/covdata.go

    	textfmtMode   = "textfmt"
    	debugDumpMode = "debugdump"
    )
    
    func main() {
    	telemetry.Start()
    
    	// First argument should be mode/subcommand.
    	if len(os.Args) < 2 {
    		usage("missing command selector")
    	}
    
    	// Select mode
    	var op covOperation
    	cmd := os.Args[1]
    	switch cmd {
    	case mergeMode:
    		op = makeMergeOp()
    	case debugDumpMode:
    		op = makeDumpOp(debugDumpMode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/features/features.go

    	featureGate := map[string]bool{}
    	for _, s := range strings.Split(value, ",") {
    		if len(s) == 0 {
    			continue
    		}
    
    		arr := strings.SplitN(s, "=", 2)
    		if len(arr) != 2 {
    			return nil, errors.Errorf("missing bool value for feature-gate key:%s", s)
    		}
    
    		k := strings.TrimSpace(arr[0])
    		v := strings.TrimSpace(arr[1])
    
    		featureSpec, ok := (*f)[k]
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

                // the delegate. So, only treat references to `Project` properties as a problem and throw 'missing property' exception for anything unknown so that the closure can continue
                // with the delegate
                if (targetMetadata.hasProperty(null, propertyName) == null) {
                    if (propertyName == "class") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Gradle is able to understand the common case where a single attribute is missing that would have removed the ambiguity.
    In this case, rather than listing information about all attributes on all available variants, Gradle helpfully lists only possible values for that attribute along with the variants each value would select.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top