Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for outlier (0.1 sec)

  1. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    // but if a file exists but has old content or isn't a kubeconfig file, this function returns an error.
    func createKubeConfigFileIfNotExists(outDir, filename string, config *clientcmdapi.Config) error {
    	kubeConfigFilePath := filepath.Join(outDir, filename)
    
    	err := validateKubeConfig(outDir, filename, config)
    	if err != nil {
    		// Check if the file exist, and if it doesn't, just write it to disk
    		if !os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    		name                     string
    		createKubeConfigFunction func(outDir string, cfg *kubeadmapi.InitConfiguration) error
    		expectedFiles            []string
    		expectedError            bool
    	}{
    		{ // Test createKubeConfigFiles fails for unknown kubeconfig is requested
    			name: "createKubeConfigFiles",
    			createKubeConfigFunction: func(outDir string, cfg *kubeadmapi.InitConfiguration) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

            configurationCacheRun ":b:some"
    
            then:
            result.groupedOutput.task(":b:some").assertOutputContains("FIRST").assertOutputContains("LAST")
        }
    
        def "each task receives its own copy of outer Groovy closure state"() {
            given:
            buildFile << """
                def values1 = new ${CopyOnWriteArrayList.name}()
                tasks.register("one") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

        llvm::function_ref<bool(tf_device::ClusterOp, ElementsAttr)> filter = {});
    
    // Creates a pass that outlines regions of tf_device.cluster operations.
    std::unique_ptr<OperationPass<ModuleOp>> CreateClusterOutliningPass();
    
    // Creates a pass that outlines regions of tf_device.launch operations.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLaunchOutliningPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

         *
         * Such substitute overrides happen because of inheritance.
         *
         * If the declaration references only its own type parameters, or parameters from the outer declarations, then
         * we consider that it's signature will not be changed by the SUBSTITUTION_OVERRIDE, so the wrapper can be unwrapped.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/EncryptionService.kt

            if (shouldEncryptStreams(stateType))
                safeWrap(input, this::decryptingInputStream)
            else
                input.invoke()
    
        /**
         * Wraps an inner closeable into an outer closeable, while ensuring that
         * if the wrapper function fails, the inner closeable is closed before
         * the exception is thrown.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/deadcode.go

    			d.pkginits = append(d.pkginits, symIdx)
    		}
    		// Some host object symbols have an outer object, which acts like a
    		// "carrier" symbol, or it holds all the symbols for a particular
    		// section. We need to mark all "referenced" symbols from that carrier,
    		// so we make sure we're pulling in all outer symbols, and their sub
    		// symbols. This is not ideal, and these carrier/section symbols could
    		// be removed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/analyzers_test.go

    	// Verify that the collections actually accessed during testing actually match
    	// the collections declared as inputs for each of the analyzers
    	t.Run("CheckMetadataInputs", func(t *testing.T) {
    		g := NewWithT(t)
    	outer:
    		for _, a := range All() {
    			var isMultiClusterAnalyzer bool
    			for _, mc := range AllMultiCluster() {
    				if a.Metadata().Name == mc.Metadata().Name {
    					isMultiClusterAnalyzer = true
    					break
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                        // `outerClassId`.
                        if (receiverExpression == expression) {
                            // If there is still an outer class, then return symbol of that class
                            outerClassId?.let { return listOfNotNull(it.toTargetPsi(session, symbolBuilder)) }
                            // Otherwise, it should be a package, so we return that
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  10. pkg/kubelet/container/runtime.go

    	// Whether the volume permission is set to read-only or not
    	// This value is passed from volume.spec
    	ReadOnly bool
    	// Inner volume spec name, which is the PV name if used, otherwise
    	// it is the same as the outer volume spec name.
    	InnerVolumeSpecName string
    }
    
    // VolumeMap represents the map of volumes.
    type VolumeMap map[string]VolumeInfo
    
    // RuntimeConditionType is the types of required runtime conditions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top