Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 165 for uncommon (0.24 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    // fairly space-inefficient way -- it might be better to instead look
    // up all attrs in a single large table, then store indices into the
    // table in the DIE. This would allow us to common up storage for
    // attributes that are shared by many DIEs (ex: byte size of N).
    func newattr(die *dwarf.DWDie, attr uint16, cls int, value int64, data interface{}) {
    	a := new(dwarf.DWAttr)
    	a.Link = die.Attr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			}),
    			newObj: st.MakeNode().Capacity(map[v1.ResourceName]string{
    				v1.ResourceMemory: "4",
    				extendedResourceA: "2",
    			}).Obj(),
    			expectedHint: framework.Queue,
    		},
    		// uncomment this case when the isSchedulableAfterNodeChange also check the
    		// original node's resources.
    		// "skip-queue-on-node-unrelated-changes": {
    		// 	pod:          &v1.Pod{},
    		// 	oldObj:       st.MakeNode().Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top