Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 159 for Uncommon (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // NT APIs that work over the NTUnicodeString type. Note that most Windows APIs
    // do not use NTUnicodeString, and instead UTF16PtrFromString should be used for
    // the more common *uint16 string type.
    func NewNTUnicodeString(s string) (*NTUnicodeString, error) {
    	var u NTUnicodeString
    	s16, err := UTF16PtrFromString(s)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ====
    
    The fixed code above, however, is not exactly equivalent to the original as only an explicit list of variables is supported.
    Prefix-based filtering is a common scenario, so there are provider-based APIs to access
    link:{groovyDslPath}/org.gradle.api.provider.ProviderFactory.html#org.gradle.api.provider.ProviderFactory:systemPropertiesPrefixedBy(java.lang.String)[system properties] and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

    #include "tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.h"
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    #include "tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h"
    #include "tensorflow/compiler/mlir/quantization/tensorflow/cc/run_passes.h"
    #include "tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_op_quant_spec.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

    # limitations under the License.
    
    <#
    .SYNOPSIS
      Library for configuring Windows nodes and joining them to the cluster.
    
    .NOTES
      This module depends on common.psm1.
    
      Some portions copied / adapted from
      https://github.com/Microsoft/SDN/blob/master/Kubernetes/windows/start-kubelet.ps1.
    
    .EXAMPLE
      Suggested usage for dev/test:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. hack/local-up-cluster.sh

    mkdir -p "${CERT_DIR}" &>/dev/null || sudo mkdir -p "${CERT_DIR}"
    CONTROLPLANE_SUDO=$(test -w "${CERT_DIR}" || echo "sudo -E")
    
    function test_apiserver_off {
        # For the common local scenario, fail fast if server is already running.
        # this can happen if you run local-up-cluster.sh twice and kill etcd in between.
        if [[ "${API_PORT}" -gt "0" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      // replaced with calls to the new functions.
      Status BuildOutputGraph(Graph* graph_out, FunctionLibraryDefinition* library);
    
     private:
      // A subgraph of the input, all marked with a common 'group_attribute'
      // value.
      //
      // In the following simple example, A, B, ..., E are nodes in the original
      // graph. The group attributes g are each shown as either 0 or empty.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            configuration.incoming.files.buildDependencies.getDependencies(targetTask) == requiredTasks
        }
    
        def "task dependency from project dependency without common configuration"() {
            // This test exists because a NullPointerException was thrown by getTaskDependencyFromProjectDependency()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            val typeParameter = partiallyAppliedSymbol.symbol.typeParameters.singleOrNull() ?: return emptyMap()
            return mapOf(typeParameter to elementType)
        }
    
        // TODO: Refactor common code with FirElement.toKtCallInfo() when other FirResolvables are handled
        private fun FirElement.collectCallCandidates(
            psi: KtElement,
            resolveCalleeExpressionOfFunctionCall: Boolean,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

    import static org.apache.maven.cli.CLIManager.FORCE_INTERACTIVE;
    import static org.apache.maven.cli.CLIManager.NON_INTERACTIVE;
    import static org.apache.maven.cli.ResolveFile.resolveFile;
    
    // TODO push all common bits back to plexus cli and prepare for transition to Guice. We don't need 50 ways to make CLIs
    
    /**
     */
    public class MavenCli {
        public static final String LOCAL_REPO_PROPERTY = "maven.repo.local";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.provider
    
    import com.google.common.collect.ImmutableMap
    import org.gradle.api.Task
    import org.gradle.api.Transformer
    import org.gradle.api.provider.MapProperty
    import org.gradle.api.provider.Property
    import org.gradle.api.provider.Provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
Back to top