Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for logical (0.12 sec)

  1. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       visible static factory method whose return type is {@code C} or {@code C}'s subtype.
       * </ul>
       *
       * <p>In all cases, if {@code C} needs custom logic for testing serialization, you can add an
       * explicit {@code testSerializable()} test in the corresponding {@code CTest} class, and {@code
       * C} will be excluded from automated serialization test performed by this method.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    	// initialize with empty config, leading to reconnected Envoys loosing
    	// configuration. This is an additional safety check inaddition to adding
    	// cachesSynced logic to readiness probe to handle cases where kube-proxy
    	// ip tables update latencies.
    	// See https://github.com/istio/istio/issues/25495.
    	if !s.IsServerReady() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/istio_ca.go

    	// requires a secret named "cacerts" with specific files inside.
    	LocalCertDir = env.Register("ROOT_CA_DIR", "./etc/cacerts",
    		"Location of a local or mounted CA root")
    
    	useRemoteCerts = env.Register("USE_REMOTE_CERTS", false,
    		"Whether to try to load CA certs from config Kubernetes cluster. Used for external Istiod.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

    import org.gradle.internal.buildtree.BuildTreeModelSideEffect
    import org.gradle.internal.buildtree.BuildTreeWorkGraph
    import org.gradle.internal.component.local.model.LocalComponentGraphResolveState
    import org.gradle.internal.component.local.model.LocalComponentGraphResolveStateFactory
    import org.gradle.internal.concurrent.CompositeStoppable
    import org.gradle.internal.concurrent.Stoppable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.groovy

            executer.withArguments(ENABLE_CLI)
            def models = runPhasedBuildAction(new FetchPartialCustomModelForEachProject(), new FetchCustomModelForEachProject()) {
                // Empty list means "run tasks defined by build logic or default tasks"
                forTasks([])
            }
    
            then:
            def messages = models.left
            messages.size() == 2
            messages[0] == "It works from project :"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptClassPathResolver.java

    import org.gradle.api.invocation.Gradle;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.classpath.TransformedClassPath;
    import org.gradle.internal.component.local.model.OpaqueComponentIdentifier;
    import org.gradle.internal.instrumentation.agent.AgentStatus;
    import org.gradle.internal.lazy.Lazy;
    import org.gradle.internal.logging.util.Log4jBannedVersion;
    import org.gradle.util.GradleVersion;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api.go

    	// containing the function declaration.
    	//
    	// The Scope of a function contains the declarations of any
    	// type parameters, parameters, and named results, plus any
    	// local declarations in the body block.
    	// It is coextensive with the complete extent of the
    	// function's syntax ([*ast.FuncDecl] or [*ast.FuncLit]).
    	// The Scopes mapping does not contain an entry for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. subprojects/core/build.gradle.kts

        api(projects.time)
        api(project(":base-services"))
        api(project(":base-services-groovy"))
        api(project(":build-cache"))
        api(project(":build-cache-base"))
        api(project(":build-cache-local"))
        api(project(":build-cache-packaging"))
        api(project(":build-cache-spi"))
        api(project(":build-operations"))
        api(project(":build-option"))
        api(project(":cli"))
        api(project(":core-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. cmd/bucket-lifecycle-handlers_test.go

    		if err != nil {
    			t.Fatalf("Test %d: %s: Failed to create HTTP request for GetBucketLocationHandler: <ERROR> %v", i+1, instanceType, err)
    		}
    		// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    		// Call the ServeHTTP to execute the handler.
    		apiRouter.ServeHTTP(rec, req)
    		if rec.Code != testCase.expectedRespStatus {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

            failure.assertHasCause("Credential values found in configuration for: repository repo-with-invalid-identity-name")
        }
    
        def "can publish maven publication metadata to local repository"() {
            settingsFile "rootProject.name = 'root'"
            buildFile buildFileConfiguration("""
                repositories {
                    maven { url "${mavenRepo.uri}" }
                }
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top