Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 335 for Enforce (0.3 sec)

  1. platforms/ide/problems-api/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = """A problems description API
        |
        |This project provides base classes to describe problems and their
        |solutions, in a way that enforces the creation of good error messages.
        |
        |It's a stripped down version of the original code available
        |at https://github.com/melix/jdoctor/
    """.trimMargin()
    
    gradlebuildJava.usedInWorkers()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/fipstls/tls.go

    	"internal/stringslite"
    	"sync/atomic"
    )
    
    var required atomic.Bool
    
    // Force forces crypto/tls to restrict TLS configurations to FIPS-approved settings.
    // By design, this call is impossible to undo (except in tests).
    //
    // Note that this call has an effect even in programs using
    // standard crypto (that is, even when Enabled = false).
    func Force() {
    	required.Store(true)
    }
    
    // Abandon allows non-FIPS-approved settings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/DefaultMavenImmutableAttributesFactory.java

                return result;
            });
        }
    
        @Override
        public ImmutableAttributes platformWithUsage(ImmutableAttributes original, String usage, boolean enforced) {
            String componentType = enforced ? Category.ENFORCED_PLATFORM : Category.REGULAR_PLATFORM;
            List<Object> key = ImmutableList.of(original, componentType, usage);
            return concatCache.computeIfAbsent(key, k -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/memcombine_test.go

    }
    
    func readUint16le(b []byte) uint64 {
    	y := uint64(binary.LittleEndian.Uint16(b))
    	nop() // force spill
    	return y
    }
    
    func readUint16be(b []byte) uint64 {
    	y := uint64(binary.BigEndian.Uint16(b))
    	nop() // force spill
    	return y
    }
    
    func readUint32le(b []byte) uint64 {
    	y := uint64(binary.LittleEndian.Uint32(b))
    	nop() // force spill
    	return y
    }
    
    func readUint32be(b []byte) uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 30 18:35:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. pkg/features/security.go

    		`If set, applies policy-specific restrictions over all existing TLS
    settings, including in-mesh mTLS and external TLS. Valid values are:
    
    * '' or unset places no additional restrictions.
    * 'fips-140-2' which enforces a version of the TLS protocol and a subset
    of cipher suites overriding any user preferences or defaults for all runtime
    components, including Envoy, gRPC Go SDK, and gRPC C++ SDK.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildToolingModelController.java

            if (builder != null) {
                return new BuildToolingScope(builder);
            }
    
            // Force configuration of the build and locate builder for default project
            ProjectState targetProject = buildController.withProjectsConfigured(gradle -> gradle.getDefaultProject().getOwner());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 17:25:08 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ProviderApiDependenciesIntegrationTest.groovy

    plugins {
        id 'java'
    }
    
    def version = objects.property(String)
    
    configurations.testImplementation.dependencies.addLater(version.map { project.dependencies.create("com.example:artifact:\${it}") })
    
    tasks.all {} // force realize all tasks
    
    version.set('5.6')
    
    assert configurations.testRuntimeClasspath.allDependencies.size() == 1 
            """
            expect:
            succeeds("help")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/scala/force/kotlin/settings.gradle.kts

    rootProject.name = "force"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-forceForDependency/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: deprecated 'force'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 118 bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PatchOptions.yaml

    apiVersion: v1
    dryRun:
    - dryRunValue
    fieldManager: fieldManagerValue
    fieldValidation: fieldValidationValue
    force: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 138 bytes
    - Viewed (0)
Back to top