Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for closeDot (0.28 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                get() = ******@****.***
        }
    
        private
        fun executionEngineFor(scriptHost: KotlinScriptHost<*>): ExecutionEngine {
            // get the ExecutionEngine from the closest available service scope
            // for the global one has no support for the build cache
            return (scriptHost.target as? Project)?.serviceOf()
                ?: executionEngine
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/Quantiles.java

       * value returned by this method is the {@code i} in that range such that {@code allRequired[i]}
       * is as close as possible to the center of the range [{@code from}, {@code to}]. Choosing the
       * value closest to the center of the range first is the most efficient strategy because it
       * minimizes the size of the subranges from which the remaining selections must be done.
       */
      private static int chooseNextSelection(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    			continue
    		}
    		addVarSlot(inp.Name, inp.Type)
    		params = append(params, inp)
    	}
    	if needCloCtx {
    		addVarSlot(f.CloSlot, f.CloSlot.Type())
    		cloAssign := abi.ABIParamAssignment{
    			Type:      f.CloSlot.Type(),
    			Name:      f.CloSlot,
    			Registers: []abi.RegIndex{0}, // dummy
    		}
    		params = append(params, cloAssign)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. src/strconv/atof_test.go

    		}
    
    		if float64(float32(out)) == out {
    			out, err := ParseFloat(test.in, 32)
    			out32 := float32(out)
    			if float64(out32) != out {
    				t.Errorf("ParseFloat(%v, 32) = %v, not a float32 (closest is %v)", test.in, out, float64(out32))
    				continue
    			}
    			outs := FormatFloat(float64(out32), 'g', -1, 32)
    			if outs != test.out || !reflect.DeepEqual(err, test.err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top