Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 933 for determin (0.6 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioVersionDeterminerTest.groovy

        def visualCppMetadataProvider = Mock(VisualCppMetadataProvider)
        def determiner = new VisualStudioVersionDeterminer(commandLineLocator, windowsRegistryLocator, visualCppMetadataProvider)
        List<VisualStudioInstallCandidate> vswhereInstalls = []
        List<VisualStudioInstallCandidate> windowsRegistryInstalls = []
    
        def "can determine a VS2017 version of an install from command line"() {
            def dir1 = tmpDir.createDir("dir1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/ScalaRuntime.java

        }
    
        /**
         * Determines the version of a Scala Jar file (scala-compiler, scala-library,
         * scala-jdbc, etc.). If the version cannot be determined, or the file is not a Scala
         * Jar file, {@code null} is returned.
         *
         * <p>Implementation note: The version is determined by parsing the file name, which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

                }
            }
    
            return false;
        }
    
        /**
         * Determines whether a type represented by a class object is
         * convertible to another type represented by a class object using a
         * method invocation conversion, without matching object and primitive
         * types. This method is used to determine the more specific type when
         * comparing signatures of methods.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NbtAddress.java

            /* Determine the InetAddress of the local interface
             * if one was not specified.
             */
            localInetAddress = CLIENT.laddr;
            if( localInetAddress == null ) {
                try {
                    localInetAddress = InetAddress.getLocalHost();
                } catch( UnknownHostException uhe ) {
                    /* Java cannot determine the localhost. This is basically a config
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  5. pkg/registry/flowcontrol/ensurer/strategy.go

    	//
    	// revised: the new object represents the new configuration to be stored in-cluster.
    	// ok: true if auto update is required, otherwise false
    	// err: err is set when the function runs into an error and can not
    	//      determine if auto update is needed.
    	ReviseIfNeeded(objectOps objectLocalOps[ObjectType], current, bootstrap ObjectType) (revised ObjectType, ok bool, err error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/certs.go

    			errs = append(errs, err)
    		}
    	}
    	if len(errs) != 0 {
    		return false, utilerrors.NewAggregate(errs)
    	}
    	return true, nil
    }
    
    // UsingExternalCA determines whether the user is relying on an external CA.  We currently implicitly determine this is the case
    // when the CA Cert is present but the CA Key is not.
    // This allows us to, e.g., skip generating certs or not start the csr signing controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  7. src/net/conf.go

    			return false
    		}
    	}
    
    	return c.netGo || r.preferGo()
    }
    
    // addrLookupOrder determines which strategy to use to resolve addresses.
    // The provided Resolver is optional. nil means to not consider its options.
    // It also returns dnsConfig when it was used to determine the lookup order.
    func (c *conf) addrLookupOrder(r *Resolver, addr string) (ret hostLookupOrder, dnsConf *dnsConfig) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. src/sort/sort.go

    	Less(i, j int) bool
    
    	// Swap swaps the elements with indexes i and j.
    	Swap(i, j int)
    }
    
    // Sort sorts data in ascending order as determined by the Less method.
    // It makes one call to data.Len to determine n and O(n*log(n)) calls to
    // data.Less and data.Swap. The sort is not guaranteed to be stable.
    //
    // Note: in many situations, the newer [slices.SortFunc] function is more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. src/net/http/cookiejar/jar.go

    		if i <= 0 || host[i-1] != '.' {
    			// The provided public suffix list psl is broken.
    			// Storing cookies under host is a safe stopgap.
    			return host
    		}
    		// Only len(suffix) is used to determine the jar key from
    		// here on, so it is okay if psl.PublicSuffix("www.buggy.psl")
    		// returns "com" as the jar key is generated from host.
    	}
    	prevDot := strings.LastIndex(host[:i-1], ".")
    	return host[prevDot+1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConfigurationBuildDependenciesIntegrationTest.groovy

            fails("useCompileConfiguration")
            failure.assertHasDescription("Could not determine the dependencies of task ':useCompileConfiguration'.")
            failure.assertHasCause('broken')
    
            fails("useCompileConfiguration")
            failure.assertHasDescription("Could not determine the dependencies of task ':useCompileConfiguration'.")
            failure.assertHasCause('broken')
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top