Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 122 for Missing (0.17 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            def e = thrown(MissingValueException)
            e.message == "Cannot query the value of ${displayName} because it has no value available."
        }
    
        def "reports the source of convention provider when value is missing and source is known"() {
            def provider = supplierWithNoValue(Describables.of("<source>"))
            def property = propertyWithNoValue()
    
            given:
            property.convention(provider)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                        ActivationFile target) {
                    final String path = target.getMissing();
                    final String xformed = transformPath(path, target, "missing");
                    return xformed != path ? (builder != null ? builder : creator.get()).missing(xformed) : builder;
                }
    
                @Override
                protected ActivationFile.Builder transformActivationFile_Exists(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/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[syntax.Expr]TypeAndValue)}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                    Supplier<? extends ActivationFile.Builder> creator,
                    ActivationFile.Builder builder,
                    ActivationFile target) {
                stk.push(nextFrame("missing"));
                try {
                    return super.transformActivationFile_Missing(creator, builder, target);
                } finally {
                    stk.pop();
                }
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    func (st *state) compactNumber() int {
    	if len(st.str) == 0 {
    		st.fail("missing index")
    	}
    	if st.str[0] == '_' {
    		st.advance(1)
    		return 0
    	} else if st.str[0] == 'n' {
    		st.fail("unexpected negative number")
    	}
    	n := st.number()
    	if len(st.str) == 0 || st.str[0] != '_' {
    		st.fail("missing underscore after number")
    	}
    	st.advance(1)
    	return n + 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    	},
    	ErrMissingContentMD5: {
    		Code:           "MissingContentMD5",
    		Description:    "Missing required header for this request: Content-Md5.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingSecurityHeader: {
    		Code:           "MissingSecurityHeader",
    		Description:    "Your request was missing a required header",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingRequestBodyError: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    	buildListVersion map[string]string // index of buildList (module path → version)
    
    	initialVersion map[string]string // index of the initial build list at the start of 'go get'
    
    	missing []pathSet // candidates for missing transitive dependencies
    
    	work *par.Queue
    
    	matchInModuleCache par.ErrCache[matchInModuleKey, []string]
    }
    
    type versionReason struct {
    	version string
    	reason  *query
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. 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)
  9. pkg/controller/statefulset/stateful_set_utils_test.go

    				},
    			},
    			// The missing UID is interpreted as an unexpected stale reference.
    			expectedRefs: []metav1.OwnerReference{},
    		},
    		{
    			name: "neither controller nor UID",
    			originalRefs: []metav1.OwnerReference{
    				{
    					APIVersion: "apps/v1",
    					Kind:       "StatefulSet",
    					Name:       "sts",
    				},
    			},
    			// The missing UID is interpreted as an unexpected stale reference.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    	// otherwise-missing test dependencies for packages in "all". For those test
    	// dependencies, we prefer to add roots for packages with shorter import
    	// stacks first, on the theory that the module requirements for those will
    	// tend to fill in the requirements for their transitive imports (which have
    	// deeper import stacks). So we add the missing dependencies for one depth at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top