Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for needMin (0.1 sec)

  1. src/runtime/mpagealloc_64bit.go

    	haveMin := s.min.Load()
    	haveMax := s.max.Load()
    	needMin := alignDown(uintptr(chunkIndex(base)), physPageSize/scSize)
    	needMax := alignUp(uintptr(chunkIndex(limit)), physPageSize/scSize)
    
    	// We need a contiguous range, so extend the range if there's no overlap.
    	if needMax < haveMin {
    		needMax = haveMin
    	}
    	if haveMax != 0 && needMin > haveMax {
    		needMin = haveMax
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. src/runtime/race/race.go

    // Calls to the runtime are done directly from src/runtime/race.go.
    
    // On darwin we always use system DLLs to create threads,
    // so we use race_darwin_$GOARCH.go to provide the syso-derived
    // symbol information without needing to invoke cgo.
    // This allows -race to be used on Mac systems without a C toolchain.
    
    // void __race_unused_func(void);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 21:38:55 UTC 2022
    - 868 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/stackalloc.go

    			}
    			if v.Op == OpStoreReg {
    				s.values[v.Args[0].ID].spill = v
    			}
    		}
    	}
    
    	// Compute liveness info for values needing a slot.
    	s.computeLive(spillLive)
    
    	// Build interference graph among values needing a slot.
    	s.buildInterferenceGraph()
    }
    
    func (s *stackAllocState) stackalloc() {
    	f := s.f
    
    	// Build map from values to their names, if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. platforms/software/test-suites-base/build.gradle.kts

    }
    
    description = """Base for test suites.
    
    This project is a implementation dependency of many other testing-related subprojects in the Gradle build.
    
    This project is separate from testing-base to avoid needing to be Java 6 compatible.
    """
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":base-services"))
        api(project(":core-api"))
        api(project(":model-core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 950 bytes
    - Viewed (0)
  5. test/alg.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file tests that required algs are generated,
    // even when similar types have been marked elsewhere
    // as not needing algs. See CLs 19769 and 19770.
    
    package main
    
    import "fmt"
    
    //go:noinline
    func f(m map[[8]string]int) int {
    	var k [8]string
    	return m[k]
    }
    
    //go:noinline
    func g(m map[[8]interface{}]int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 24 21:36:52 UTC 2016
    - 822 bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/FluidDependenciesResolveTest.java

    import java.lang.annotation.Inherited;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Marks a test class as needing to run twice, with and without fluid dependencies enabled.
     * <p>
     * When fluid dependencies are enabled, any configuration that is a task input is resolved when constructing the task graph.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_errors.txt

    cmp go.mod.orig go.mod
    
    cd importsyntax
    
    
    # A syntax error in a dependency prevents the compiler from needing that
    # dependency's imports, so 'go get' should not report an error when those
    # imports cannot be resolved: it has all of the dependencies that the compiler
    # needs, and the user did not request to run the compiler.
    
    go get
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CredentialsProviderIntegrationTest.groovy

                }
            """
    
            then:
            succeeds 'firstTask'
        }
    
        def "missing credentials will fail the build at configuration time when the task needing them is executed directly"() {
            given:
            buildFile << """
                def firstTask = tasks.register('firstTask') {
                }
    
                tasks.register('taskWithCredentials', TaskWithCredentials) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. src/internal/pkgbits/doc.go

    // separate element to describe its function body. This allows readers
    // some flexibility in efficiently seeking or re-reading data (e.g.,
    // inlining requires re-reading the function body for each inlined
    // call, without needing to re-read the object-level details).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 20 19:01:40 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. istioctl/pkg/multicluster/options.go

    	Context    string
    	Namespace  string
    }
    
    // Inherit the common kubernetes flags defined in the root package. This is a bit of a hack,
    // but it allows us to directly get the final values for each of these flags without needing
    // to pass pointers-to-flags through all of the (sub)commands.
    func (o *KubeOptions) prepare(ctx cli.Context) {
    	o.Namespace = ctx.Namespace()
    	if o.Namespace == "" {
    		o.Namespace = ctx.IstioNamespace()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 23:59:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top