Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,387 for xoring (0.14 sec)

  1. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

            able to discuss the full details of what you're working on.
    
    
            But Guava aims to provide features that are useful across boundaries of projects, companies,
            or even industries — utilities useful for a sizable proportion of all Java programmers
            everywhere. If you can give enough detail such that any of us can imagine coming across
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/go/types/unify.go

    	return u.nify(x, y, mode, nil)
    }
    
    func (u *unifier) tracef(format string, args ...interface{}) {
    	fmt.Println(strings.Repeat(".  ", u.depth) + sprintf(nil, nil, true, format, args...))
    }
    
    // String returns a string representation of the current mapping
    // from type parameters to types.
    func (u *unifier) String() string {
    	// sort type parameters for reproducible strings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerExportIntegrationTest.groovy

    import org.gradle.util.internal.VersionNumber
    
    class SwiftPackageManagerExportIntegrationTest extends AbstractSwiftPackageManagerExportIntegrationTest {
    
        @ToBeFixedForConfigurationCache(because = "Task.getProject() during execution")
        def "produces manifest for build with no native components"() {
            given:
            createDirs("lib1", "lib2")
            settingsFile << "include 'lib1', 'lib2'"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/toolchain/switch.go

    func pathToolchains(ctx context.Context) ([]string, error) {
    	have := make(map[string]bool)
    	var list []string
    	for _, dir := range pathDirs() {
    		if dir == "" || !filepath.IsAbs(dir) {
    			// Refuse to use local directories in $PATH (hard-coding exec.ErrDot).
    			continue
    		}
    		entries, err := os.ReadDir(dir)
    		if err != nil {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/context.go

    }
    
    // lookup returns an existing instantiation of orig with targs, if it exists.
    // Otherwise, it returns nil.
    func (ctxt *Context) lookup(h string, orig Type, targs []Type) Type {
    	ctxt.mu.Lock()
    	defer ctxt.mu.Unlock()
    
    	for _, e := range ctxt.typeMap[h] {
    		if identicalInstance(orig, targs, e.orig, e.targs) {
    			return e.instance
    		}
    		if debug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/internal/cov/covcmd/cmddefs.go

    	// eliminates redundant counters).
    	Strategy string
    
    	// Prefix assigned to the names of counter variables generated
    	// during instrumentation by cmd/cover.
    	CounterPrefix string
    
    	// Name chosen for the package ID variable generated during
    	// instrumentation.
    	PkgIdVar string
    
    	// Counter mode (e.g. set/count/atomic)
    	CounterMode string
    
    	// Counter granularity (perblock or perfunc).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 16:13:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    )
    
    // volumeCount is a map of maps used as a counter.
    type volumeCount map[string]map[string]int64
    
    func (v volumeCount) add(state, plugin string) {
    	count, ok := v[state]
    	if !ok {
    		count = map[string]int64{}
    	}
    	count[plugin]++
    	v[state] = count
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 06 16:48:59 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/memorymanager/memory_manager.go

    	activeContainers := make(map[string]map[string]struct{})
    	for _, pod := range activeAndAdmittedPods {
    		activeContainers[string(pod.UID)] = make(map[string]struct{})
    		for _, container := range append(pod.Spec.InitContainers, pod.Spec.Containers...) {
    			activeContainers[string(pod.UID)][container.Name] = struct{}{}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (1)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockState.java

        /**
         * Registers a resource lock that has been unlocked during the transform so that the coordination service can
         * notify threads waiting on a lock.
         */
        void registerUnlocked(ResourceLock resourceLock);
    
        /**
         * Release any locks that have been acquired during the transform.
         */
        void releaseLocks();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    tasks.register("task3"){
        println("REGISTER TASK3: This is executed during the configuration phase")
    }
    
    tasks.named("task3"){
        println("NAMED TASK3: This is executed during the configuration phase")
        doFirst {
            println("NAMED TASK3 - doFirst: This is executed during the execution phase")
        }
        doLast {
            println("NAMED TASK3 - doLast: This is executed during the execution phase")
        }
    }
    ----
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top