Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 249 for Closest (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/strconv/ftoa.go

    	upper := new(decimal)
    	upper.Assign(mant*2 + 1)
    	upper.Shift(exp - int(flt.mantbits) - 1)
    
    	// d = mant << (exp - mantbits)
    	// Next lowest floating point number is mant-1 << exp-mantbits,
    	// unless mant-1 drops the significant bit and exp is not the minimum exp,
    	// in which case the next lowest is mant*2-1 << exp-mantbits-1.
    	// Either way, call it mantlo << explo-mantbits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

    };
    
    using Permutation = SmallVector<int64_t, 4>;
    
    void LayoutAssignmentPass::runOnOperation() {
      func::FuncOp func = getOperation();
    
      // Get runtime devices information from the closest parent module.
      RuntimeDevices devices;
      if (failed(::tensorflow::GetDevicesFromOp(func->getParentOfType<ModuleOp>(),
                                                &devices)))
        return signalPassFailure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/executor_island_coarsening.mlir

    // CHECK:            tf_executor.fetch %[[ISLAND_1]] : tensor<1xf32>
    
    
    // Test merging islands with control island operands and island results only if
    // they are the closest ones.
    // CHECK-LABEL: func @merge_islands_closest_control
    func.func @merge_islands_closest_control() {
      tf_executor.graph {
        %0 = tf_executor.island {
          tf_executor.yield
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  9. pkg/ledger/smt.go

    	retentionDuration time.Duration
    	// lock is for the whole struct
    	lock sync.RWMutex
    	// atomicUpdate, commit all the changes made by intermediate update calls
    	atomicUpdate bool
    }
    
    // this is the closest time.Duration comes to Forever, with a duration of ~145 years
    // we can'tree use int64 max because the duration gets added to Now(), and the ints
    // rollover, causing an immediate expiration (ironic, eh?)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    | link:{javadocPath}/org/gradle/api/NamedDomainObjectCollection.html#findByName-java.lang.String-[NamedDomainObjectCollection.findByName()]
    | Do not use. `named()` is the closest equivalent, but will fail if the task does not exist.
    
    | `iterator()` or implicit iteration over the `Task` collection
    | Avoid doing this as it requires creating and configuring all tasks.
    
    | `remove()`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top