Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for closeDot (0.16 sec)

  1. maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderTest.java

         *   - a BOM import to the junit BOM which manages the dep to 0.2
         * This <i>currently</i> results in 0.1 (first wins, unexpected as this is not the closest) and a warning
         */
        @Test
        void testManagedDependencyDistance() throws Exception {
            ModelBuilder builder = new DefaultModelBuilderFactory().newInstance();
            assertNotNull(builder);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/typeregistration/BaseInstanceFactoryTest.groovy

            IllegalArgumentException e = thrown()
            e.message == "No factory registered to create an instance of implementation class '${fullyQualifiedNameOf(DefaultThingSpec)}'."
        }
    
        def "factory for closest superclass to create implementation for a public type"() {
            def thingMock = Mock(ThingSpec)
            def nodeMock = Mock(MutableModelNode)
            instanceFactory.registerFactory(BaseThingSpec, factoryMock)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

        public val implicitReceivers: List<KaImplicitReceiver> by validityAsserted(implicitReceivers)
    
        /**
         * Scopes for position, sorted according to their indexes in scope tower, i.e. the first scope is the closest one to position.
         */
        public val scopes: List<KaScopeWithKind> by validityAsserted(scopes)
    }
    
    public typealias KtScopeContext = KaScopeContext
    
    public class KaImplicitReceiver(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. schema/schema.go

    	if field, ok := schema.FieldsByDBName[name]; ok {
    		return field
    	}
    	if field, ok := schema.FieldsByName[name]; ok {
    		return field
    	}
    	return nil
    }
    
    // LookUpFieldByBindName looks for the closest field in the embedded struct.
    //
    //	type Struct struct {
    //		Embedded struct {
    //			ID string // is selected by LookUpFieldByBindName([]string{"Embedded", "ID"}, "ID")
    //		}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. cluster/images/etcd/Makefile

    IMAGE_SUFFIX.linux = $(OS)-$(ARCH)
    IMAGE_SUFFIX.windows = $(OS)-$(ARCH)-$(OSVERSION)
    IMAGE_SUFFIX := ${IMAGE_SUFFIX.${OS}}
    
    # Image should be pulled from registry.k8s.io, which will auto-detect
    # region (us, eu, asia, ...) and pull from the closest.
    REGISTRY?=registry.k8s.io
    # Images should be pushed to staging-k8s.gcr.io.
    PUSH_REGISTRY?=staging-k8s.gcr.io
    
    MANIFEST_IMAGE := $(PUSH_REGISTRY)/etcd
    
    # Install binaries matching base distro permissions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/policy.go

    			return current
    		}
    
    		// Otherwise compare the hints, based on the policy options provided
    		var best bitmask.BitMask
    		if (policyName != PolicySingleNumaNode) && opts.PreferClosestNUMA {
    			best = numaInfo.Closest(current.NUMANodeAffinity, candidate.NUMANodeAffinity)
    		} else {
    			best = numaInfo.Narrowest(current.NUMANodeAffinity, candidate.NUMANodeAffinity)
    		}
    		if best.IsEqual(current.NUMANodeAffinity) {
    			return current
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

    };
    
    void ExtractHeadTailOutsideCompilationPass::runOnOperation() {
      auto& side_effect_analysis = getAnalysis<mlir::TF::SideEffectAnalysis>();
      // Get runtime devices information from the closest parent module.
      auto module = getOperation();
      mlir::TF::RuntimeDevices devices;
      if (failed(tensorflow::GetDevicesFromOp(module, &devices)))
        return signalPassFailure();
    
      OpBuilder builder(&getContext());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

                        // Filter out lines that need more edits than half the length of the line
                        .filter(pair -> pair.getDistance() < pair.getLine().length() / 2)
                        // Find the closest match
                        .min(Comparator.comparingInt(LineWithDistance::getDistance))
                        .map(LineWithDistance::getLine)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/stackcheck.go

    	target loader.Sym // 0 for stack growth without a call
    }
    
    // stackCheckCycle is a sentinel stored in the height map to detect if
    // we've found a cycle. This is effectively an "infinite" stack
    // height, so we use the closest value to infinity that we can.
    const stackCheckCycle int16 = 1<<15 - 1
    
    // stackCheckIndirect is a sentinel Sym value used to represent the
    // target of an indirect/closure call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/func.go

    	RegArgs []Spill
    	// OwnAux describes parameters and results for this function.
    	OwnAux *AuxCall
    	// CloSlot holds the compiler-synthesized name (".closureptr")
    	// where we spill the closure pointer for range func bodies.
    	CloSlot *ir.Name
    
    	freeValues *Value // free Values linked by argstorage[0].  All other fields except ID are 0/nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top