Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for findMin (0.12 sec)

  1. operator/pkg/translate/translate_common.go

    	}
    	valuePath := cnMap.ToHelmValuesTreeRoot
    	enabledPath := valuePath + ".enabled"
    	enableNodeI, found, err := tpath.Find(valueSpec, util.ToYAMLPath(enabledPath))
    	if err != nil {
    		return false, false, fmt.Errorf("error finding component enablement path: %s in helm value.yaml tree", enabledPath)
    	}
    	if !found {
    		// Some components do not specify enablement should be treated as enabled if the root node in the component subtree exists.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/net.go

    	s.ztunnelServer.Close()
    }
    
    func (s *NetServer) rescanPod(pod *corev1.Pod) error {
    	// this can happen if the pod was dynamically added to the mesh after it was created.
    	// in that case, try finding the netns using procfs.
    	filter := map[types.UID]*corev1.Pod{
    		pod.UID: pod,
    	}
    	return s.scanProcForPodsAndCache(filter)
    }
    
    func (s *NetServer) getOrOpenNetns(pod *corev1.Pod, netNs string) (Netns, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

            def toolchain = queryService.findMatchingToolchain(filter)
    
            then:
            toolchain.vendor.knownVendor == JvmVendor.KnownJvmVendor.BELLSOFT
        }
    
        def "ignores invalid toolchains when finding a matching one"() {
            given:
            def queryService = createQueryServiceWithInstallations(["8.0", "8.0.242.hs-adpt", "8.0.broken"])
    
            when:
            def filter = createSpec(JavaLanguageVersion.of(8))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientTest.groovy

            1 * connection.markSuspect()
            1 * connection.dispatch({ it instanceof CloseInput })
            1 * connection.stop()
            0 * connection._
        }
    
        def "does not loop forever finding usable daemons"() {
            given:
            connector.connect(compatibilitySpec) >> connection
            connector.startDaemon(compatibilitySpec) >> connection
            connection.daemon >> Stub(DaemonConnectDetails)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/internal/testenv/testenv.go

    		//
    		// Notably, this works even if we can't run 'go env GOROOT' as a
    		// subprocess.
    
    		cwd, err := os.Getwd()
    		if err != nil {
    			gorootErr = fmt.Errorf("finding GOROOT: %w", err)
    			return
    		}
    
    		dir := cwd
    		for {
    			parent := filepath.Dir(dir)
    			if parent == dir {
    				// dir is either "." or only a volume name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    Please see https://issuetracker.google.com/issues/115873051[this issue].
    
    == Lint
    
    Users of Android’s `Lint` task are well aware of the heavy performance penalty they pay for using it, but also know that it is indispensable for finding common issues in Android projects.
    Currently, this task is not cacheable.
    This task is planned to be cacheable with the release of Android Gradle Plugin 3.5.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. docs/sts/ldap.md

    - On finding the user's info, MinIO verifies the login credentials with the AD/LDAP server.
    - MinIO optionally queries the AD/LDAP server for a list of groups that the user is a member of.
    - MinIO then checks if there are any policies [explicitly associated](#managing-usergroup-access-policy) with the user or their groups.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

      //  functions. This value can't be represented using MLIR SymbolRefAttr and
      //  instead uses optional symbol ref attribute.
      //
      // TODO(b/182315488): Remove custom handling by finding a better
      // representation in MLIR for empty function names. One option could be to use
      // TensorFlow op defs to figure out function attributes that are missing in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	TypesSizes   types.Sizes    // function for computing sizes of types
    	TypeErrors   []types.Error  // type errors (only if Analyzer.RunDespiteErrors)
    
    	// Report reports a Diagnostic, a finding about a specific location
    	// in the analyzed source code such as a potential mistake.
    	// It may be called by the Run function.
    	Report func(Diagnostic)
    
    	// ResultOf provides the inputs to this analysis pass, which are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/runtime/error.go

    func panicwrap() {
    	pc := getcallerpc()
    	name := funcNameForPrint(funcname(findfunc(pc)))
    	// name is something like "main.(*T).F".
    	// We want to extract pkg ("main"), typ ("T"), and meth ("F").
    	// Do it by finding the parens.
    	i := bytealg.IndexByteString(name, '(')
    	if i < 0 {
    		throw("panicwrap: no ( in " + name)
    	}
    	pkg := name[:i-1]
    	if i+2 >= len(name) || name[i-1:i+2] != ".(*" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top