Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 378 for JSpecify (0.36 sec)

  1. src/net/lookup.go

    	}
    	return &r.lookupGroup
    }
    
    // LookupHost looks up the given host using the local resolver.
    // It returns a slice of that host's addresses.
    //
    // LookupHost uses [context.Background] internally; to specify the context, use
    // [Resolver.LookupHost].
    func LookupHost(host string) (addrs []string, err error) {
    	return DefaultResolver.LookupHost(context.Background(), host)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/connection/BuildLogLevelMixIn.java

            List<String> arguments = parameters.getArguments();
            ParsedCommandLine parsedCommandLine = parser.parse(arguments == null ? Collections.emptyList() : arguments);
    
            //configure verbosely only if arguments do not specify any log level.
            return getLogLevelFromCommandLineOptions(loggingBuildOptions, parsedCommandLine)
                .orElseGet(() ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpModule.groovy

            return new MavenHttpArtifact(server, repoRoot, backingModule, backingModule.getArtifact(relativePath))
        }
    
        /**
         * Adds an additional artifact to this module.
         * @param options Can specify any of: type or classifier
         */
        HttpArtifact artifact(Map<String, ?> options = [:]) {
            backingModule.artifact(options)
            return getArtifact(options)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    #include "tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.pb.h"
    
    namespace stablehlo::quantization {
    
    // Returns a copy of `user_provided_config` with default values populated where
    // the user did not explicitly specify.
    QuantizationConfig PopulateDefaults(
        const QuantizationConfig& user_provided_config);
    
    // Returns a copy of `QuantizationConfig` where presets are expanded and
    // transformed into other fields in `QuantizationConfig`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelResolver.java

                    // Message below is checked for in the MNG-2199 core IT.
                    throw new ModelResolverException(
                            String.format("The requested version range '%s' does not specify an upper bound", version),
                            groupId,
                            artifactId,
                            version);
                }
                List<Version> versions = session.resolveVersionRange(coord);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. security/pkg/nodeagent/caclient/providers/mock/mockcaclient.go

    	certLifetime    time.Duration
    	GeneratedCerts  [][]string // Cache the generated certificates for verification purpose.
    	mockTrustAnchor bool
    }
    
    // NewMockCAClient creates an instance of CAClient. errors is used to specify the number of errors
    // before CSRSign returns a valid response. certLifetime specifies the TTL for the newly issued workload cert.
    func NewMockCAClient(certLifetime time.Duration, mockTrustAnchor bool) (*CAClient, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r23/StandardStreamsCrossVersionSpec.groovy

                error.toString().contains("error logging")
            }
    
            and:
            !stdOutAndErr.stdOut.contains("logging")
            !stdOutAndErr.stdErr.contains("logging")
        }
    
        def "can specify color output when output is being ignored"() {
            file("build.gradle") << """
    task log {
        outputs.upToDateWhen { true }
    }
    """
    
            when:
            withConnection { ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. pkg/kubelet/util/util_windows.go

    	// So we just construct the path from scratch.
    	// Format: \\ServerName\pipe\PipeName
    	// Where where ServerName is either the name of a remote computer or a period, to specify the local computer.
    	// We only consider PipeName as regular windows path, while the pipe path components are fixed, hence we use constants.
    	serverPart := `\\.`
    	pipePart := "pipe"
    	pipeName := "kubelet-" + podResourcesDir
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ToolingModelContract.java

     * Basically polymorphism isn't supported by default in TAPI client-side model instances.
     * This is what this annotation can be used to fix. We can use it to mark the base model
     * interface ({@code Animal} in the above example) and specify which of its subtypes
     * should be polymorpically handled on the TAPI client-side.
     * <p>
     * Let's say we define the {@code Animal} model interface like this:
     * <pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 08:48:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.h

    // CustomOpInfo contains info of its corresponding CustomOp registered in the
    // CustomOpMap. 'quantizable_input_indices' is used to determine which indices
    // of the CustomOp are quantizable. 'is_weight_only' is used specify whether the
    // custom op is quantized only for storage and dequantized at runtime.
    // 'no_side_effect' is used to determine whether the op can be pruned if
    // considered as trivially dead.
    struct CustomOpInfo {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top