Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 145 for defeats (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/CacheResolveIntegrationTest.groovy

            // Our abused coordinates that will see a POM request
            def abusedCoordinates = mavenHttpRepo.module('org.spring', 'core', '1.0').publish()
            // Defeat the Gradle validation that will verify metadata content match requested coordinates
            abusedCoordinates.pom.file.replace('<groupId>org.spring</groupId>', '<groupId>org.spring/../../../../../</groupId>')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

                        artifact classifier: 'test-fixtures'
                    }
                }
            }
        }
    
        def "detects conflicts between component with a capability and a variant with the same capability"() {
            given:
            repository {
                'org:foo:1.0'()
                'org:bar:1.0' {
                    variant('api') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/additional/continuous_builds.adoc

    If file system watching does not work on your system, then continuous build won't work either.
    In particular, continuous build does not work when using `--no-daemon`.
    
    When Gradle detects a change to the inputs, it will not trigger the build immediately.
    Instead, it will wait until no additional changes are detected for a certain period of time - the quiet period.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/ValidatePlugins.java

         */
        @Input
        public abstract Property<Boolean> getIgnoreFailures();
    
        /**
         * Returns whether the build should break when the verifications performed by this task detects a warning.
         */
        @Input
        public abstract Property<Boolean> getFailOnWarning();
    
        /**
         * Enable the stricter validation for cacheable tasks for all tasks.
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/walk.go

    		// We need to append them directly.
    		// TODO(rsc): Clean this up.
    		n = walkExpr(n, init)
    	} else {
    		n = walkStmt(n)
    	}
    	init.Append(n)
    }
    
    // The max number of defers in a function using open-coded defers. We enforce this
    // limit because the deferBits bitmask is currently a single byte (to minimize code size)
    const maxOpenDefers = 8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_4x.md

        encapsulation enabled.
     *  Fix: Strictly verify hostnames used with OkHttp's `HostnameVerifier`. Programs that make direct
        manual calls to `HostnameVerifier` could be defeated if the hostnames they pass in are not
        strictly ASCII. This issue is tracked as [CVE-2021-0341].
    
    
    ## Version 4.9.1
    
    _2021-01-30_
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    		"Use 'enable-client-cert-rotation' instead")
    	return runKubeletFinalizeEnableClientCertRotation(c)
    }
    
    // runKubeletFinalizeEnableClientCertRotation detects if the kubelet certificate rotation is enabled
    // and updates the kubelet.conf file to point to a rotatable certificate and key for the
    // Node user.
    func runKubeletFinalizeEnableClientCertRotation(c workflow.RunData) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. cni/README.md

    - ISTIO_META_DNS_CAPTURE env variable on the proxy - enables dns redirect
    - INVALID_DROP env var on proxy - changes behavior from reset to drop in iptables
    - auto excluded inbound ports: 15020, 15021, 15090
    
    The code automatically detects the proxyUID and proxyGID from RunAsUser/RunAsGroup and exclude them from interception, defaulting to 1337
    
    ### Overview
    
    - [istio-cni Helm chart](../manifests/charts/istio-cni/templates)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug_test.go

    	useGdb  = flag.Bool("g", false, "use Gdb instead of Delve (dlv), use gdb reference files")
    	force   = flag.Bool("f", false, "force run under not linux-amd64; also do not use tempdir")
    	repeats = flag.Bool("r", false, "detect repeats in debug steps and don't ignore them")
    	inlines = flag.Bool("i", false, "do inlining for gdb (makes testing flaky till inlining info is correct)")
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testsanitizers/cc_test.go

    	return cmd, nil
    }
    
    type version struct {
    	name         string
    	major, minor int
    }
    
    var compiler struct {
    	sync.Once
    	version
    	err error
    }
    
    // compilerVersion detects the version of $(go env CC).
    //
    // It returns a non-nil error if the compiler matches a known version schema but
    // the version could not be parsed, or if $(go env CC) could not be determined.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top