Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for M4 (0.16 sec)

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

                blockingServer.get(m4.pom.path).sendFile(m4.pom.file))
            blockingServer.expectConcurrent(
                blockingServer.get(m1.artifact.path).sendFile(m1.artifact.file),
                blockingServer.get(m2.artifact.path).sendFile(m2.artifact.file),
                blockingServer.get(m3.artifact.path).sendFile(m3.artifact.file),
                blockingServer.get(m4.artifact.path).sendFile(m4.artifact.file))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                    }
                }
            """
    
            m1.allowAll()
            m2.allowAll()
            m3.pom.expectGetUnauthorized()
            m4.pom.expectGet()
            m4.artifact.expectGetUnauthorized()
    
            expect:
            //TODO: fix dependency resolution results usage in this test and remove this flag
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. src/go/types/issues_test.go

    import "b"
    type I4 interface {
    	M4(_ struct { *string })
    }
    var _ I4 = b.S{}
    `,
    			`package b
    type S struct{}
    func (S) M4(struct { *string }) {}
    `,
    			`6:12: cannot use b[.]S{} [(]value of type b[.]S[)] as I4 value in variable declaration: b[.]S does not implement I4 [(]wrong type for method M4[)]
    .*have M4[(]struct{[*]string /[*] package b [*]/ }[)]
    .*want M4[(]struct{[*]string /[*] package main [*]/ }[)]`},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/issues_test.go

    import "b"
    type I4 interface {
    	M4(_ struct { *string })
    }
    var _ I4 = b.S{}
    `,
    			`package b
    type S struct{}
    func (S) M4(struct { *string }) {}
    `,
    			`6:12: cannot use b[.]S{} [(]value of type b[.]S[)] as I4 value in variable declaration: b[.]S does not implement I4 [(]wrong type for method M4[)]
    .*have M4[(]struct{[*]string /[*] package b [*]/ }[)]
    .*want M4[(]struct{[*]string /[*] package main [*]/ }[)]`},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            def m2 = mavenHttpRepo.module('org.foo', 'unknown')
            def m3 = mavenHttpRepo.module('org.foo', 'broken')
            def m4 = mavenHttpRepo.module('org.foo', 'rock').dependsOn(m3).publish()
    
            m1.allowAll()
            m2.allowAll()
            m3.pom.expectGetBroken()
            m4.allowAll()
    
            when:
            fails "checkDeps"
    
            then:
            failedResolve.assertFailurePresent(failure)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      public static final Integer nine = 9;
      public static final Integer m1 = -1;
      public static final Integer m2 = -2;
      public static final Integer m3 = -3;
      public static final Integer m4 = -4;
      public static final Integer m5 = -5;
      public static final Integer m6 = -6;
      public static final Integer m10 = -10;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/liveness/plive.go

    			// D:
    			//    ... some write barrier disabled code ...
    			//    goto B
    			// B:
    			//    m1 = Phi mem_C mem_D
    			//    m2 = store operation ... m1
    			//    m3 = store operation ... m2
    			//    m4 = WBend m3
    
    			// Find first memory op in the block, which should be a Phi.
    			m := v
    			for {
    				m = m.MemoryArg()
    				if m.Block != b {
    					lv.f.Fatalf("can't find Phi before write barrier end mark %v", v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top