Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for findMin (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    You usually don't get the achievable performance gains on the first try, see <<build_cache_debugging.adoc#finding_problems,finding problems with task output caching>>.
    As your build logic is evolving and changing it is also important to make sure that the cache effectiveness is not regressing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainQueryServiceTest.groovy

            then:
            toolchain.isPresent()
            toolchain.get().metadata.vendor.knownVendor == JvmVendor.KnownJvmVendor.IBM
            toolchain.get().vendor == "IBM"
        }
    
        def "ignores invalid toolchains when finding a matching one"() {
            given:
            def queryService = setupInstallations(["8.0", "8.0.242.hs-adpt", "8.0.broken"])
    
            when:
            def filter = createSpec()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/options/options.go

    			completed.GenericServerRunOptions.ExternalHost = completed.GenericServerRunOptions.AdvertiseAddress.String()
    		} else {
    			hostname, err := os.Hostname()
    			if err != nil {
    				return CompletedOptions{}, fmt.Errorf("error finding host name: %v", err)
    			}
    			completed.GenericServerRunOptions.ExternalHost = hostname
    		}
    		klog.Infof("external host was not specified, using %v", completed.GenericServerRunOptions.ExternalHost)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/provision_test.go

    			expectedEvents:  noevents,
    			errors:          noerrors,
    			test:            wrapTestWithProvisionCalls([]provisionCall{}, testSyncClaim),
    		},
    		{
    			// volume provision for PVC scheduled
    			"11-23 - skip finding PV and provision for PVC annotated with AnnSelectedNode",
    			newVolumeArray("volume11-23", "1Gi", "", "", v1.VolumeAvailable, v1.PersistentVolumeReclaimDelete, classCopper),
    			[]*v1.PersistentVolume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/deployment/builder.go

    	}
    	templates, err := b.injectionTemplates()
    	if err != nil {
    		// deal with this when we call Build() to avoid making the New signature unwieldy
    		b.errs = multierror.Append(b.errs, fmt.Errorf("failed finding injection templates on clusters %v", err))
    	}
    	b.templates = templates
    
    	return b.WithClusters(clusters...)
    }
    
    type builder struct {
    	ctx resource.Context
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. pkg/api/pod/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPodSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. src/runtime/mpallocbits.go

    		if start == notSetYet {
    			start = cur
    		}
    		most = max(most, cur)
    		// Final region that might span to next uint64
    		cur = l
    	}
    	if start == notSetYet {
    		// Made it all the way through without finding a single 1 bit.
    		const n = uint(64 * len(b))
    		return packPallocSum(n, n, n)
    	}
    	most = max(most, cur)
    
    	if most >= 64-2 {
    		// There is no way an internal run of zeros could beat max.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

                mlir::dyn_cast_or_null<StringAttr>(attribute.getValue());
            string_attr != nullptr &&
            string_attr.getValue() == kNullAttributeValue) {
          continue;
        }
    
        if (std::find_if(
                attr_to_op_map.begin(), attr_to_op_map.end(), [&](auto attr_op) {
                  return std::get<0>(attr_op).getName() == attribute.getName();
                }) == attr_to_op_map.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. cmd/import-boss/main.go

    		// a distinct Package.
    		return nil
    	}
    
    	restrictionFiles, err := recursiveRead(filepath.Join(pkgDir, rulesFileName))
    	if err != nil {
    		return []error{fmt.Errorf("error finding rules file: %w", err)}
    	}
    	if len(restrictionFiles) == 0 {
    		return nil
    	}
    
    	klog.V(2).Infof("verifying pkg %q (%s)", pkg.PkgPath, pkgDir)
    	var errs []error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller.go

    		volume, err := ctrl.volumes.findBestMatchForClaim(claim, delayBinding)
    		if err != nil {
    			logger.V(2).Info("Synchronizing unbound PersistentVolumeClaim, Error finding PV for claim", "PVC", klog.KObj(claim), "err", err)
    			return fmt.Errorf("error finding PV for claim %q: %w", claimToClaimKey(claim), err)
    		}
    		if volume == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top