Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 591 for Missing (0.2 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/config/analysis/msg/messages.yaml

          - name: namespace
            type: string
          - name: namespace2
            type: string
    
      - name: "PodMissingProxy"
        code: IST0103
        level: Warning
        description: "A pod is missing the Istio proxy."
        template: "The pod %s is missing the Istio proxy. This can often be resolved by restarting or redeploying the workload."
        args:
          - name: podName
            type: string
    
      # IST0104 RETIRED
      # IST0105 RETIRED
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

              op->emitOpError()
                  << "is missing attribute '" << kTfBackendConfigAttrName << "'";
              return WalkResult::interrupt();
            }
    
            auto called_index_attr = mlir::dyn_cast_or_null<IntegerAttr>(
                backend_config.get(kCalledIndexAttrName));
            if (!called_index_attr) {
              op->emitOpError()
                  << "is missing attribute '" << kCalledIndexAttrName << "'";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. 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)
  5. src/internal/trace/testdata/cmd/gotraceeventstats/main.go

    		fmt.Fprintf(flag.CommandLine.Output(), "\n")
    		flag.PrintDefaults()
    	}
    	log.SetFlags(0)
    }
    
    func main() {
    	log.SetPrefix("")
    	flag.Parse()
    
    	if flag.NArg() != 1 {
    		log.Print("missing mode argument")
    		flag.Usage()
    		os.Exit(1)
    	}
    	var err error
    	switch mode := flag.Arg(0); mode {
    	case "size":
    		err = printSizeStats(os.Stdin)
    	default:
    		log.Printf("unknown mode %q", mode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentResolveMetadata.java

         * Returns the schema used by this component.
         */
        AttributesSchemaInternal getAttributesSchema();
    
        /**
         * Returns true when this metadata represents the default metadata provided for components with missing metadata files.
         */
        boolean isMissing();
    
        boolean isChanging();
    
        @Nullable
        String getStatus();
    
        @Nullable
        List<String> getStatusScheme();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 3.5K 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. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/ManifestUtilTest.groovy

            then:
            ManifestUtil.createManifestClasspath(jarFile, classpathFiles) == "jar%20one.jar nested%20dir/jar%20two.jar";
        }
    
        def "returns empty classpath list for missing file or directory"() {
            when:
            def nonexistent = new File("does no exist");
            def directory = tmpDir.createDir("new_directory");
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

        }
    
        public synchronized static ServiceRegistry getGlobalServices() {
            if (globalServices == null) {
                globalServices = createGlobalServices();
                // Inject missing interfaces to support the usage of plugins compiled with older Gradle versions.
                // A normal gradle build does this by adding the MixInLegacyTypesClassLoader to the class loader hierarchy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. 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)
Back to top