Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for Warningf (0.41 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            expectedGenericDeprecationWarnings = count;
            return this;
        }
    
        @Override
        public GradleExecuter expectDeprecationWarning(ExpectedDeprecationWarning warning) {
            expectedDeprecationWarnings.add(warning);
            return this;
        }
    
        @Override
        public GradleExecuter noDeprecationChecks() {
            checkDeprecations = false;
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

        if (device.has_type && device.type == "CPU" && device.id == 0) {
          if (!host_device->empty()) {
            // TODO(hanxiongwang): Remove this warning when TF API to bridge
            // interface is understood.
            LOG(WARNING) << "Found multiple CPU:0 host devices";
            if (device.job == "chief")
              *host_device =
                  tensorflow::DeviceNameUtils::ParsedNameToString(device);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

    - google.golang.org/genproto/googleapis/bytestream: e85fd2c
    - google.golang.org/grpc/cmd/protoc-gen-go-grpc: v1.1.0
    - gopkg.in/gcfg.v1: v1.2.3
    - gopkg.in/warnings.v0: v0.1.2
    - rsc.io/quote/v3: v3.1.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    	options.AddKubeletConfigFlags(fs, kc)
    	// Remember original feature gates, so we can merge with flag gates later
    	original := kc.FeatureGates
    	// avoid duplicate printing the flag deprecation warnings during re-parsing
    	fs.SetOutput(io.Discard)
    	// re-parse flags
    	if err := fs.Parse(args); err != nil {
    		return err
    	}
    	// Add back feature gates that were set in the original kc, but not in flags
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. pilot/pkg/features/pilot.go

    	InformerWatchNamespace = env.Register("ISTIO_WATCH_NAMESPACE", "",
    		"If set, limit Kubernetes watches to a single namespace. "+
    			"Warning: only a single namespace can be set.").Get()
    
    	// This is a feature flag, can be removed if protobuf proves universally better.
    	KubernetesClientContentType = env.Register("ISTIO_KUBE_CLIENT_CONTENT_TYPE", "protobuf",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	if len(out) > 0 {
    		// Filter out useless linker warnings caused by bugs outside Go.
    		// See also cmd/link/internal/ld's hostlink method.
    		var save [][]byte
    		var skipLines int
    		for _, line := range bytes.SplitAfter(out, []byte("\n")) {
    			// golang.org/issue/26073 - Apple Xcode bug
    			if bytes.Contains(line, []byte("ld: warning: text-based stub file")) {
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

    import java.util.concurrent.Callable;
    
    import static org.gradle.api.internal.lambdas.SerializableLambdas.spec;
    
    /**
     * A plugin for building java gradle plugins. Automatically generates plugin descriptors. Emits warnings for common error conditions. <p> Provides a direct integration with TestKit by declaring the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

                    if (firDefaultStatement.resolvedType.isUnit) {
                        return null
                    }
                }
            }
    
            @Suppress("USELESS_IS_CHECK") // K2 warning suppression, TODO: KT-62472
            require(firDefaultStatement is FirExpression)
    
            val defaultStatementFromFir = firDefaultStatement.psi as? KtExpression ?: return null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/requirements.txt

        --hash=sha256:e96ac6b3169940a8cd57b4f2b8edcad8f5213b60efcd197d59fbe52f0accd66e \
        --hash=sha256:fbf649bc77510ef2521cf797700b96167bb77838c40780da7ea3edd8b78044d1
        # via gevent
    
    # WARNING: The following packages were not pinned, but pip requires them to be
    # pinned when the requirements file includes hashes and the requirement is not
    # satisfied by a package already installed. Consider using the --allow-unsafe flag.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 45.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                    }
    
                    @TaskAction
                    void run() {
                    }
                }
    
                // ensure there are multiple warnings for the same properties
                task a(type: SomeTask)
                task b(type: SomeTask)
                task c(dependsOn: [a, b])
            """
    
            when:
            configurationCacheRunLenient "c"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top