Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for conf1 (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    val conf by configurations.creating
    
    dependencies {
        conf("com.thing:foo:1.0")
        conf("org.example:bar:1.0")
    }
    
    tasks.register("filterDependencies") {
        val files: FileCollection = conf.incoming.artifactView {
            componentFilter {
                when(it) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

        void "generated ivy descriptor includes configuration exclusions"() {
            def exclusion = { name -> "$name-group:$name-module" }
            def exclusions = { conf -> javaLibrary.parsedIvy.exclusions.findAll { it.conf == conf }.collect { it.org + ":" + it.module } }
    
            given:
            createBuildScripts("""
                configurations {
                    api.exclude(group: "api-group", module: "api-module")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    			fmt.Fprintf(&gccgoInit, "\t%s = &%s;\n", n.Mangle, n.C)
    			fmt.Fprintf(fc, "\n")
    		}
    
    		fmt.Fprintf(fgo2, "var %s ", n.Mangle)
    		conf.Fprint(fgo2, fset, node)
    		if !*gccgo {
    			fmt.Fprintf(fgo2, " = (")
    			conf.Fprint(fgo2, fset, node)
    			fmt.Fprintf(fgo2, ")(unsafe.Pointer(&__cgo_%s))", n.C)
    		}
    		fmt.Fprintf(fgo2, "\n")
    	}
    	if *gccgo {
    		fmt.Fprintf(fc, "\n")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    // the configurations in "10-config.conf" will be applied first, and then the configurations in "20-config.conf" will be applied,
    // potentially overriding the previous values.
    func mergeKubeletConfigurations(kubeletConfig *kubeletconfiginternal.KubeletConfiguration, kubeletDropInConfigDir string) error {
    	const dropinFileExtension = ".conf"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/manager_test.go

    		allocatedDevices:  make(map[string]sets.Set[string]),
    		podDevices:        newPodDevices(),
    		checkpointManager: ckm,
    	}
    
    	testManager.podDevices.insert("pod1", "con1", resourceName1,
    		constructDevices([]string{"dev1", "dev2"}),
    		newContainerAllocateResponse(
    			withDevices(map[string]string{"/dev/r1dev1": "/dev/r1dev1", "/dev/r1dev2": "/dev/r1dev2"}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

        conf.incoming.afterResolve {
            // Fully qualify the reference.
            project.distributions {
                myDist {
                    contents {}
                }
            }
        }
    }
    ```
    
    ```groovy
    configurations {
        conf
    }
    
    // Extract the script-level closure to the script root scope.
    configurations.conf.incoming.afterResolve {
        distributions {
            myDist {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    		pr.Push = other.Push
    	}
    
    	// Do not merge when any one is empty
    	if len(pr.ConfigsUpdated) == 0 || len(other.ConfigsUpdated) == 0 {
    		pr.ConfigsUpdated = nil
    	} else {
    		for conf := range other.ConfigsUpdated {
    			pr.ConfigsUpdated.Insert(conf)
    		}
    	}
    
    	return pr
    }
    
    // CopyMerge two update requests together. Unlike Merge, this will not mutate either input.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    		if x.val.Kind() == constant.Unknown {
    			// nothing to do (and don't cause an error below in the overflow check)
    			return
    		}
    		var prec uint
    		if isUnsigned(x.typ) {
    			prec = uint(check.conf.sizeof(x.typ) * 8)
    		}
    		x.val = constant.UnaryOp(op2tok[op], x.val, prec)
    		x.expr = e
    		check.overflow(x, opPos(x.expr))
    		return
    	}
    
    	x.mode = value
    	// x.typ remains unchanged
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        public static final File DEFAULT_USER_TOOLCHAINS_FILE = new File(USER_MAVEN_CONFIGURATION_HOME, "toolchains.xml");
    
        public static final File DEFAULT_GLOBAL_TOOLCHAINS_FILE =
                new File(System.getProperty("maven.conf"), "toolchains.xml");
    
        private static final String EXT_CLASS_PATH = "maven.ext.class.path";
    
        private static final String EXTENSIONS_FILENAME = "extensions.xml";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    	sysctlExpireQuiescentTemplate = "net/ipv4/vs/expire_quiescent_template"
    	sysctlForward                 = "net/ipv4/ip_forward"
    	sysctlArpIgnore               = "net/ipv4/conf/all/arp_ignore"
    	sysctlArpAnnounce             = "net/ipv4/conf/all/arp_announce"
    )
    
    // NewDualStackProxier returns a new Proxier for dual-stack operation
    func NewDualStackProxier(
    	ctx context.Context,
    	ipt [2]utiliptables.Interface,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top