Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 149 for logical (0.11 sec)

  1. src/go/types/unify.go

    	// unification failure.
    	panicAtUnificationDepthLimit = true
    
    	// If enableCoreTypeUnification is set, unification will consider
    	// the core types, if any, of non-local (unbound) type parameters.
    	enableCoreTypeUnification = true
    
    	// If traceInference is set, unification will print a trace of its operation.
    	// Interpretation of trace:
    	//   x ≡ y    attempt to unify types x and y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // accesses outside all control flow statements.
    LogicalResult ResourceLiftingForFunctionalControlFlow(func::FuncOp function);
    
    // Converts stack ops into operations on local variables, which can later be
    // removed by resource lifting. Requires known maximum sizes of stacks and
    // known element shapes of push ops.
    std::unique_ptr<OperationPass<ModuleOp>> CreateStackOpsDecompositionPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

                            mavenUserHome.resolve("settings.xml"))
                    .getEffectiveSettings();
    
            settings.getProfiles();
    
            // local repository
            String localRepository = settings.getLocalRepository() != null
                    ? settings.getLocalRepository()
                    : mavenUserHome.resolve("repository").toString();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                if ("local".equals(repository.getId())) {
                    addViolation(
                            problems,
                            errOn31,
                            Version.V20,
                            prefix + "id",
                            null,
                            "must not be 'local'" + ", this identifier is reserved for the local repository"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Kube-controller-manager removes deprecated command flags: --volume-host-cidr-denylist and --volume-host-allow-local-loopback ([#124017](https://github.com/kubernetes/kubernetes/pull/124017), [@carlory](https://github.com/carlory)) [SIG API Machinery, Apps, Cloud Provider and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/unify.go

    	// unification failure.
    	panicAtUnificationDepthLimit = true
    
    	// If enableCoreTypeUnification is set, unification will consider
    	// the core types, if any, of non-local (unbound) type parameters.
    	enableCoreTypeUnification = true
    
    	// If traceInference is set, unification will print a trace of its operation.
    	// Interpretation of trace:
    	//   x ≡ y    attempt to unify types x and y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. pilot/pkg/features/pilot.go

    		"If enabled, Istio agent will intercept ECDS resource update, downloads Wasm module, "+
    			"and replaces Wasm module remote load with downloaded local module file.").Get()
    
    	PilotJwtPubKeyRefreshInterval = env.Register(
    		"PILOT_JWT_PUB_KEY_REFRESH_INTERVAL",
    		20*time.Minute,
    		"The interval for istiod to fetch the jwks_uri for the jwks public key.",
    	).Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

            configurationCacheRun 'assemble'
    
            then:
            compositeBuildWorkGraphLoaded()
        }
    
        def "emits relevant build operations when configuration cache is used - included build logic"() {
            given:
            withLibBuild(true)
            file('settings.gradle') << """
                pluginManagement {
                    includeBuild 'lib'
                }
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            classFile.isFile()
            jarFile.isFile()
        }
    
        def "jar manifest honours build logic inputs"() {
            given:
            buildFile << """
                plugins {
                    id 'java'
                }
    
                jar {
                    manifest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. internal/kms/config.go

    // environment and returns a:
    //
    //   - connection to MinIO KMS if the "MINIO_KMS_SERVER" variable is present.
    //   - connection to MinIO KES if the "MINIO_KMS_KES_ENDPOINT" is present.
    //   - connection to a "local" KMS implementation using a static key if the
    //     "MINIO_KMS_SECRET_KEY" or "MINIO_KMS_SECRET_KEY_FILE" is present.
    //
    // It returns an error if connecting to the KMS implementation fails,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top