Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for uninfers (0.16 sec)

  1. src/cmd/go/testdata/script/mod_gomodcache.txt

    [GOOS:windows] env USERPROFILE=$WORK/home # Ensure USERPROFILE is a valid path (rather than /no-home/ so we don't run into the logic that "uninfers" GOPATH in cmd/go/main.go
    [GOOS:plan9] env home=$WORK/home
    [!GOOS:windows] [!GOOS:plan9] env HOME=$WORK/home
    env GOMODCACHE=
    env GOPATH=
    go env GOMODCACHE
    stdout $HOME[/\\]go[/\\]pkg[/\\]mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/graceful_termination.go

    func (q *graceTerminateRSList) add(rs *listItem) bool {
    	q.lock.Lock()
    	defer q.lock.Unlock()
    
    	uniqueRS := rs.String()
    	if _, ok := q.list[uniqueRS]; ok {
    		return false
    	}
    
    	klog.V(5).InfoS("Adding real server to graceful delete real server list", "realServer", rs)
    	q.list[uniqueRS] = rs
    	return true
    }
    
    // remove remove an element from the rsList
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

                }
    
                configurations {
                    conf.resolutionStrategy.force("org:databind:2.7.9")
                }
            """
    
            and:
            "a rule which infers module set from group and version"()
    
            when:
            expectAlignment {
                module('core') tries('2.9.4') alignsTo('2.7.9') byVirtualPlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  4. src/runtime/textflag.h

    #define NOFRAME 512
    // Function can call reflect.Type.Method or reflect.Type.MethodByName.
    #define REFLECTMETHOD 1024
    // Function is the outermost frame of the call stack. Call stack unwinders
    // should stop at this function.
    #define TOPFRAME 2048
    // Function is an ABI wrapper.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 17:28:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingUsingStrictlyPlatformAlignmentTest.groovy

                    conf("org:databind") {
                        version { strictly '2.7.9' }
                    }
                    conf("org:kotlin:2.9.4.1")
                }
            """
    
            and:
            "a rule which infers module set from group and version"()
    
            when:
            expectAlignment {
                module('core') tries('2.9.4') alignsTo('2.7.9') byVirtualPlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/textflag.go

    	NOFRAME = 512
    
    	// Function can call reflect.Type.Method or reflect.Type.MethodByName.
    	REFLECTMETHOD = 1024
    
    	// Function is the outermost frame of the call stack. Call stack unwinders
    	// should stop at this function.
    	TOPFRAME = 2048
    
    	// Function is an ABI wrapper.
    	ABIWRAPPER = 4096
    
    	// Function is a compiler-generated package init function.
    	PKGINIT = 8192
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:25:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestReportTest.groovy

    import org.gradle.util.TestUtil
    
    class TestReportTest extends AbstractProjectBuilderSpec {
        def reportTask = TestUtil.create(temporaryFolder).task(TestReport)
    
        def "infers dependencies and results dirs from input tests"() {
            def test1 = test("test1")
            def test2 = test("test2")
            def test3 = test("test3")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

            given:
            buildFile << """
                dependencies {
                    conf 'org:xml:1.0'
                    conf 'org:json:1.1'
                }
            """
            and:
            "a rule which infers module set from group and version"()
    
            when:
            expectAlignment {
                module('core') tries('1.0') alignsTo('1.1') byVirtualPlatform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/FileNameDerivingClassNameConverter.java

    import org.apache.commons.lang.StringUtils;
    
    import java.util.Collections;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    /**
     * A converter which infers the class names from the file name.
     */
    public class FileNameDerivingClassNameConverter implements SourceFileClassNameConverter {
        private final SourceFileClassNameConverter delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      bool InferShapeForIf(IfOp op);
    
      // Infers the shape IfRegion outputs based on the shapes of the then and else
      // yields.
      bool InferShapeForIfRegion(IfRegionOp op);
    
      // Infers the shape CaseOp outputs based on the shapes of branch function
      // result types.
      bool InferShapeForCase(CaseOp op);
    
      // Infers the shape CaseRegion outputs based on the shapes of the branch
      // yields.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top