Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 645 for anotherOk (0.22 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummaryTest.kt

                subject.onProblem(buildLogicProblem("build.gradle.kts", "failure"), ProblemSeverity.Failure)
            )
            assertFalse(
                "overflow",
                subject.onProblem(buildLogicProblem("build.gradle", "another failure"), ProblemSeverity.Failure)
            )
            assertThat(
                subject.get().uniqueProblemCount,
                equalTo(2)
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconciler.go

    func (rc *reconciler) reconcile() {
    	readyToUnmount := rc.readyToUnmount()
    	if readyToUnmount {
    		// Unmounts are triggered before mounts so that a volume that was
    		// referenced by a pod that was deleted and is now referenced by another
    		// pod is unmounted from the first pod before being mounted to the new
    		// pod.
    		rc.unmountVolumes()
    	}
    
    	// Next we mount required volumes. This function could also trigger
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/security/first-steps.md

    # Security - First Steps
    
    Let's imagine that you have your **backend** API in some domain.
    
    And you have a **frontend** in another domain or in a different path of the same domain (or in a mobile application).
    
    And you want to have a way for the frontend to authenticate with the backend, using a **username** and **password**.
    
    We can use **OAuth2** to build that with **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    For example:
    
    * A task from one project directly resolves a configuration in another project in the task's action.
    * A task specifies a configuration from another project as an input file collection.
    * A build script for one project resolves a configuration in another project during evaluation.
    * Project configurations are resolved in the settings file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

        def "can run multiple GradleBuild tasks concurrently"() {
            barrier.start()
    
            given:
    
            /**
             * Setup a build where a `GradleBuild` task while another `GradleBuild` is currently running another build but has not yet finished running the settings file for that build.
             */
            createDirs("1", "2")
            settingsFile << """
                rootProject.name = 'root'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    	var waypointAddress *workloadapi.GatewayAddress
    	if w != nil {
    		waypointAddress = a.getWaypointAddress(w)
    	}
    
    	// TODO this is only checking one controller - we may be missing service vips for instances in another cluster
    	res := make([]*workloadapi.Service, 0, len(svc.Spec.Hosts))
    	for _, h := range svc.Spec.Hosts {
    		res = append(res, &workloadapi.Service{
    			Name:            svc.Name,
    			Namespace:       svc.Namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/testFixtures/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeFixture.groovy

                                System.out.println(extension);
                            });
                        });
                        AnotherSoftwareTypeExtension another = getAnotherSoftwareTypeExtension();
                        ${getAnotherSoftwareTypeExtensionConventions("another")}
                        target.getTasks().register("printAnotherSoftwareTypeExtensionConfiguration", DefaultTask.class, task -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:26 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderRegistry.java

     *
     * <p>Delegates to another {@link PayloadClassLoaderRegistry} to take care of managing the classes serialized from the daemon.
     */
    @ThreadSafe
    public class ClientSidePayloadClassLoaderRegistry implements PayloadClassLoaderRegistry {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. pkg/proxy/config/api_test.go

    	go sharedInformers.Start(stopCh)
    	go serviceConfig.Run(stopCh)
    
    	// Add the first service
    	fakeWatch.Add(service1v1)
    	handler.ValidateServices(t, []*v1.Service{service1v1})
    
    	// Add another service
    	fakeWatch.Add(service2)
    	handler.ValidateServices(t, []*v1.Service{service1v1, service2})
    
    	// Modify service1
    	fakeWatch.Modify(service1v2)
    	handler.ValidateServices(t, []*v1.Service{service1v2, service2})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                    }
                }
            """
    
            expect:
            fails(':application:testAggregateTestReport')
            result.assertHasErrorOutput("Could not configure suite: 'secondaryIntTest'. Another test suite: 'primaryIntTest' uses the type: 'integration-test' and has already been configured in project: 'transitive'.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top