Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 198 for Missing (1.18 sec)

  1. src/cmd/go/go_test.go

    	tg.grepStdout(`^bytes.test$`, "missing test main")
    	tg.grepStdout(`^bytes$`, "missing real bytes")
    	tg.grepStdout(`^bytes \[bytes.test\]$`, "missing test copy of bytes")
    	tg.grepStdout(`^testing \[bytes.test\]$`, "missing test copy of testing")
    	tg.grepStdoutNot(`^testing$`, "unexpected real copy of testing")
    
    	tg.run("list", "-test", "bytes")
    	tg.grepStdout(`^bytes.test$`, "missing test main")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    			oldObj:      scheduling,
    			newObj:      "not-a-scheduling-context",
    			expectedErr: true,
    		},
    		"skip-missing-claim": {
    			pod:          podWithClaimTemplate,
    			oldObj:       scheduling,
    			newObj:       schedulingInfo,
    			expectedHint: framework.QueueSkip,
    		},
    		"skip-missing-infos": {
    			pod:          podWithClaimTemplateInStatus,
    			claims:       []*resourcev1alpha2.ResourceClaim{pendingDelayedClaim},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/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: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_attacher_test.go

    			attachID:   getAttachmentName("vol02", "driver02", "node02"),
    			spec:       volume.NewSpecFromVolume(makeTestVol("pv01", "driver02")),
    			shouldFail: true, // csi not enabled
    		},
    		{
    			name:       "missing spec",
    			nodeName:   "node000",
    			driverName: "driver000",
    			volumeName: "vol02",
    			attachID:   getAttachmentName("vol02", "driver02", "node02"),
    			shouldFail: true, // csi not enabled
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                        ActivationFile target) {
                    String path = target.getMissing();
                    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: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top