Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 680 for forced (0.1 sec)

  1. src/cmd/fix/main.go

    	exitCode = 0
    )
    
    var allowedRewrites = flag.String("r", "",
    	"restrict the rewrites to this comma-separated list")
    
    var forceRewrites = flag.String("force", "",
    	"force these fixes to run even if the code looks updated")
    
    var allowed, force map[string]bool
    
    var (
    	doDiff    = flag.Bool("diff", false, "display diffs instead of rewriting files")
    	goVersion = flag.String("go", "", "go language version for files")
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MinimalScalaCompileOptions.java

        }
    
        public void setEncoding(@Nullable String encoding) {
            this.encoding = encoding;
        }
    
        public boolean isForce() {
            return force;
        }
    
        public void setForce(boolean force) {
            this.force = force;
        }
    
        @Nullable
        public List<String> getAdditionalParameters() {
            return additionalParameters;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/scala/force/kotlin/build.gradle.kts

    dependencies {
        implementation("commons-collections:commons-collections:3.2.2")
        testImplementation("junit:junit:4.13")
    }
    
    // tag::force-compilation[]
    tasks.withType<ScalaCompile>().configureEach {
        scalaCompileOptions.apply {
            isForce = true
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 432 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-forceForDependency/kotlin/build.gradle.kts

    plugins {
        `java-library`
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::force-using-strictly[]
    dependencies {
        implementation("org.apache.httpcomponents:httpclient:4.5.4")
        implementation("commons-codec:commons-codec") {
            version {
                strictly("1.9")
            }
        }
    }
    // end::force-using-strictly[]
    
    tasks.register<Copy>("copyLibs") {
        from(configurations.compileClasspath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 451 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-forceForDependency/groovy/build.gradle

    plugins {
        id 'java-library'
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::force-using-strictly[]
    dependencies {
        implementation 'org.apache.httpcomponents:httpclient:4.5.4'
        implementation('commons-codec:commons-codec') {
            version {
                strictly '1.9'
            }
        }
    }
    // end::force-using-strictly[]
    
    tasks.register('copyLibs', Copy) {
        from configurations.compileClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 450 bytes
    - Viewed (0)
  6. operator/cmd/mesh/operator-remove.go

    	// skipConfirmation determines whether the user is prompted for confirmation.
    	// If set to true, the user is not prompted and a Yes response is assumed in all cases.
    	skipConfirmation bool
    	// force proceeds even if there are validation errors
    	force bool
    	// operatorNamespace is the namespace the operator controller is installed into.
    	operatorNamespace string
    	// revision is the Istio control plane revision the command targets.
    	revision string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. src/crypto/rsa/example_test.go

    // avoid disclosing whether the received RSA message was well-formed
    // (that is, whether the result of decrypting is a correctly padded
    // message) because this leaks secret information.
    // DecryptPKCS1v15SessionKey is designed for this situation and copies
    // the decrypted, symmetric key (if well-formed) in constant-time over
    // a buffer that contains a random key. Thus, if the RSA result isn't
    // well-formed, the implementation uses a random key in constant time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:52:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. pilot/pkg/leaderelection/k8sleaderelection/README.md

    election gets upstreamed in the near future ([KEP](https://github.com/kubernetes/enhancements/pull/2836)), and hopefully what gets merged isn't too far from what we have forked here (if it is, we'd have to potentially maintain migration code in our fork for a few releases before abandoning). Once merged we can abandon this forked code and use upstream again....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 935 bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/BaseScalaCompileOptions.java

        }
    
        /**
         * Whether to force the compilation of all files.
         * Legal values:
         * - false (only compile modified files)
         * - true (always recompile all files)
         */
        @Input
        public boolean isForce() {
            return force;
        }
    
        public void setForce(boolean force) {
            this.force = force;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/LazyToRealisedModuleComponentResolveMetadataHelper.java

            boolean force = PlatformSupport.hasForcedDependencies(variant);
            List<? extends ModuleDependencyMetadata> dependencies = variantMetadataRules.applyDependencyMetadataRules(variant, convertDependencies(variant.getDependencies(), variant.getDependencyConstraints(), force));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top