Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 871 for Cint (0.04 sec)

  1. pkg/kubelet/cm/topologymanager/policy_test.go

    )
    
    type policyMergeTestCase struct {
    	name     string
    	hp       []HintProvider
    	expected TopologyHint
    }
    
    func commonPolicyMergeTestCases(numaNodes []int) []policyMergeTestCase {
    	return []policyMergeTestCase{
    		{
    			name: "Two providers, 1 hint each, same mask, both preferred 1/2",
    			hp: []HintProvider{
    				&mockHintProvider{
    					map[string][]TopologyHint{
    						"resource1": {
    							{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 34.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    //
    // If the first token of the hint matches the first token of the
    // line, the new line is added at the end of the block containing hint,
    // extracting hint into a new block if it is not yet in one.
    //
    // If the hint is non-nil buts its first token does not match,
    // the new line is added after the block containing hint
    // (or hint itself, if not in a block).
    //
    // If no hint is provided, addLine appends the line to the end of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/topologymanager/policy_restricted.go

    	return &restrictedPolicy{bestEffortPolicy{numaInfo: numaInfo, opts: opts}}
    }
    
    func (p *restrictedPolicy) Name() string {
    	return PolicyRestricted
    }
    
    func (p *restrictedPolicy) canAdmitPodResult(hint *TopologyHint) bool {
    	return hint.Preferred
    }
    
    func (p *restrictedPolicy) Merge(providersHints []map[string][]TopologyHint) (TopologyHint, bool) {
    	filteredHints := filterProvidersHints(providersHints)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. hack/logcheck.conf

    # those calls is not required. That is changed on a per-file basis.
    #
    # Remember to clean the golangci-lint cache when changing the configuration and
    # running the verify-golangci-lint.sh script multiple times, otherwise
    # golangci-lint will report stale results:
    #    _output/local/bin/golangci-lint cache clean
    
    # At this point we don't enforce the usage structured logging calls except in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/runtime/mfinal_test.go

    		convert   func(*int) any
    		finalizer any
    	}{
    		{func(x *int) any { return x }, func(v *int) { finalize(v) }},
    		{func(x *int) any { return Tintptr(x) }, func(v Tintptr) { finalize(v) }},
    		{func(x *int) any { return Tintptr(x) }, func(v *int) { finalize(v) }},
    		{func(x *int) any { return (*Tint)(x) }, func(v *Tint) { finalize((*int)(v)) }},
    		{func(x *int) any { return (*Tint)(x) }, func(v Tinter) { finalize((*int)(v.(*Tint))) }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:58 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/utils/tf_type_utils.h

    FailureOr<mlir::DenseElementsAttr> GetDenseAttrFromTensorProtoAttr(
        llvm::StringRef mangled_tensor_proto, TensorType result_tensor_type);
    
    // Check if a type is TF qint type.
    bool IsTFQintType(Type type);
    
    // Convert qint type to the corresponding int type. Return original type if it
    // is not qint type.
    Type GetIntTypeFromTFQint(Type type);
    
    // Check if an op is TF UniformQuantized op.
    bool IsTFUniformQuantizedOp(Operation* op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/NebulaPluginsSmokeTest.groovy

        @Issue('https://plugins.gradle.org/plugin/nebula.lint')
        @ToBeFixedForConfigurationCache(because = "Invocation of 'Task.project' by task ':autoLintGradle' at execution time")
        def 'nebula lint plugin'() {
            given:
            buildFile << """
                buildscript {
                    ${mavenCentralRepository()}
                }
    
                plugins {
                    id "com.netflix.nebula.lint" version "${TestedVersions.nebulaLint}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. .github/workflows/test.yml

            if: steps.cache.outputs.cache-hit != 'true'
            run: pip install -r requirements-tests.txt
          - name: Install Pydantic v2
            run: pip install "pydantic>=2.0.2,<3.0.0"
          - name: Lint
            run: bash scripts/lint.sh
    
      test:
        runs-on: ubuntu-latest
        strategy:
          matrix:
            python-version:
              - "3.12"
              - "3.11"
              - "3.10"
              - "3.9"
              - "3.8"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. maven-builder-support/src/main/java/org/apache/maven/building/Source.java

         */
        InputStream getInputStream() throws IOException;
    
        /**
         * Provides a user-friendly hint about the location of the source. This could be a local file path, a URI or just an
         * empty string. The intention is to assist users during error reporting.
         *
         * @return A user-friendly hint about the location of the source, never {@code null}.
         */
        String getLocation();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/go/ast/ast_test.go

    var isDirectiveTests = []struct {
    	in string
    	ok bool
    }{
    	{"abc", false},
    	{"go:inline", true},
    	{"Go:inline", false},
    	{"go:Inline", false},
    	{":inline", false},
    	{"lint:ignore", true},
    	{"lint:1234", true},
    	{"1234:lint", true},
    	{"go: inline", false},
    	{"go:", false},
    	{"go:*", false},
    	{"go:x*", true},
    	{"export foo", true},
    	{"extern foo", true},
    	{"expert foo", false},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 22:03:44 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top