Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 213 for experts (0.15 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/BuildPhaseOperationEventCrossVersionTest.groovy

    @ToolingApiVersion('>=7.6')
    @TargetGradleVersion('>=7.6')
    class BuildPhaseOperationEventCrossVersionTest extends ToolingApiSpecification {
    
        def "generates build phase events for task #taskName and expects #expectedReportedTasksCount run tasks"() {
            setupProject()
    
            when:
            def events = ProgressEvents.create()
            withConnection {
                it.newBuild().forTasks(taskName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 10:41:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

        /**
         * Expects the given deprecation warning, allowing to pass documentation url with /current/ version and asserting against the actual current version instead.
         */
        default GradleExecuter expectDocumentedDeprecationWarning(String warning) {
            return expectDeprecationWarning(normalizeDocumentationLink(warning));
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. schema/relationship_test.go

    		t.Fatalf("expects 1 relations, but got %v", len(userSchema.Relationships.Relations))
    	}
    
    	if createdByRel, ok := userSchema.Relationships.Relations["CreatedBy"]; ok {
    		if createdByRel.FieldSchema != userSchema {
    			t.Fatalf("expects same field schema, but got new %p, old %p", createdByRel.FieldSchema, userSchema)
    		}
    	} else {
    		t.Fatalf("expects created by relations, but not found")
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            when:
            run()
            then:
            !output.contains("Configuration on demand is incubating")
        }
    
        @ToBeFixedForConfigurationCache(because = "test expects configuration phase")
        def "follows java project dependencies"() {
            createDirs("api", "impl", "util")
            settingsFile << "include 'api', 'impl', 'util'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    			}
    
    			// The first argument to function passed to (*testing.F).Fuzz is (*testing.T).
    			if len(call.Args) != params.Len()-1 {
    				pass.ReportRangef(call, "wrong number of values in call to (*testing.F).Add: %d, fuzz target expects %d", len(call.Args), params.Len()-1)
    				return true
    			}
    			var mismatched []int
    			for i, expr := range call.Args {
    				if pass.TypesInfo.Types[expr].Type == nil {
    					return true
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. cmd/signature-v4.go

    		return ErrRequestNotReadyYet
    	}
    
    	if UTCNow().Sub(pSignValues.Date) > pSignValues.Expires {
    		return ErrExpiredPresignRequest
    	}
    
    	// Save the date and expires.
    	t := pSignValues.Date
    	expireSeconds := int(pSignValues.Expires / time.Second)
    
    	// Construct new query.
    	query := make(url.Values)
    	clntHashedPayload := req.Form.Get(xhttp.AmzContentSha256)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    	// The latest Job may have a different UID, but it's fine because the checks will be run again.
    	fresh, err := tc.client.BatchV1().Jobs(namespace).Get(ctx, name, metav1.GetOptions{})
    	if errors.IsNotFound(err) {
    		return nil
    	}
    	if err != nil {
    		return err
    	}
    	// Use the latest Job TTL to see if the TTL truly expires.
    	expiredAt, err := tc.processTTL(logger, fresh)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug_test.go

    	return s.tagg
    }
    
    func (s *delveState) stepnext(ss string) bool {
    	x := s.ioState.writeReadExpect(ss+"\n", "[(]dlv[)] ")
    	excerpts := s.atLineRe.FindStringSubmatch(x.o)
    	locations := s.funcFileLinePCre.FindStringSubmatch(x.o)
    	excerpt := ""
    	if len(excerpts) > 1 {
    		excerpt = excerpts[1]
    	}
    	if len(locations) > 0 {
    		fn := canonFileName(locations[2])
    		if *verbose {
    			if s.file != fn {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        }
        javaLauncher = launcher
        if (jvmVersionForTest().canCompileOrRun(9)) {
            // Required by JdkTools and JdkJavaCompiler
            jvmArgs(listOf("--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED"))
            jvmArgs(listOf("--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED"))
    
            if (isUnitTest() || usesEmbeddedExecuter()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

                "package c; public class C {}"
            file("src/main/${language.name}/module-info.${language.name}").text = """
                module impl {
                    exports a;
                    exports b;
                    exports c;
                }
            """
            succeeds language.compileTaskName
            outputs.recompiledClasses("A", "B", "C", "module-info")
    
            when:
            outputs.snapshot {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top