Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for Missing (0.26 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            ["1"]       | notDefined()  | _             | "append to missing"                               | { it.append("1") }
            null        | notDefined()  | ["0"]         | "add to missing w/ non-empty convention"          | { it.add("1") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. cmd/peer-rest-server.go

    	if objAPI == nil {
    		return np, grid.NewRemoteErr(errServerNotInitialized)
    	}
    
    	policyName := mss.Get(peerRESTPolicy)
    	if policyName == "" {
    		return np, grid.NewRemoteErr(errors.New("policyName is missing"))
    	}
    
    	if err := globalIAMSys.DeletePolicy(context.Background(), policyName, false); err != nil {
    		return np, grid.NewRemoteErr(err)
    	}
    
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    // identify any requested or imported packages that are still missing, and if
    // so, which modules we could add to the module graph in order to make the
    // missing packages available. We add those to the module graph and iterate,
    // until either all packages resolve successfully or we cannot identify any
    // module that would resolve any remaining missing package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            [k1: "1"]           | { it.set(notDefined()) }  | { it.insert("k1", "1") }                              | "insert to missing"
            null                | { }                       | { it.put("k1", notDefined()) }                        | "put missing"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/parser.go

    				// above and we wouldn't have an error. Since we are in a type
    				// parameter list, the missing types are constraints.
    				if named == typed {
    					errPos = end // position error at closing ]
    					msg = "missing type constraint"
    				} else {
    					msg = "missing type parameter name"
    					// go.dev/issue/60812
    					if len(list) == 1 {
    						msg += " or invalid array length"
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top