Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for x1 (0.24 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            }
        }
    
        @Issue("GRADLE-2555")
        void "batched up conflicts with conflicted parent and child"() {
            /*
            Dependency tree:
    
            a->c1
            b->c2->x1
            d->x1
            f->x2
    
            Everything is resolvable but not x2
    
            Scenario:
             - We have batched up conflicts
             - root of one conflicted version is also conflicted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    		{`package p15
    
    		var y1 = f1()
    
    		func f1() int { return g1() }
    		func g1() int { f1(); return x1 }
    
    		var x1 = 0
    
    		var y2 = f2()
    
    		func f2() int { return g2() }
    		func g2() int { return x2 }
    
    		var x2 = 0`, []string{
    			"x1 = 0", "y1 = f1()", "x2 = 0", "y2 = f2()",
    		}},
    	}
    
    	for _, test := range tests {
    		info := Info{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    				changed = true
    			}
    		}
    		if changed {
    			r := *t
    			r.Fields = &fields
    			return &r
    		}
    	case *ast.StarExpr: // Pointer type.
    		x1 := p.rewriteUnsafe(t.X)
    		if x1 != t.X {
    			r := *t
    			r.X = x1
    			return &r
    		}
    	}
    	return t
    }
    
    // rewriteRef rewrites all the C.xxx references in f.AST to refer to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        try {
          closingFuture.catching(
              Exception.class,
              new ClosingFunction<Exception, String>() {
                @Override
                public String apply(DeferredCloser closer1, Exception x1) throws Exception {
                  return "value3";
                }
              },
              executor);
          fail();
        } catch (IllegalStateException expected3) {
        }
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        try {
          closingFuture.catching(
              Exception.class,
              new ClosingFunction<Exception, String>() {
                @Override
                public String apply(DeferredCloser closer1, Exception x1) throws Exception {
                  return "value3";
                }
              },
              executor);
          fail();
        } catch (IllegalStateException expected3) {
        }
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top