Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 152 for forall (0.95 sec)

  1. VULNERABILITY_REPORT.md

    # Vulnerability Management Policy
    
    This document formally describes the process of addressing and managing a
    reported vulnerability that has been found in the MinIO server code base,
    any directly connected ecosystem component or a direct / indirect dependency
    of the code base.
    
    ## Scope
    
    The vulnerability management policy described in this document covers the
    process of investigating, assessing and resolving a vulnerability report
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/util/internal/ClosureBackedAction.java

                        copy.call(delegate);
                    }
                }
            } catch (groovy.lang.MissingMethodException e) {
                if (Objects.equal(e.getType(), closure.getClass()) && Objects.equal(e.getMethod(), "doCall")) {
                    throw new InvalidActionClosureException(closure, delegate);
                }
                // https://github.com/apache/groovy/commit/75c068207ba24648ea2d698c520601c6fcf0a45b
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/apt.conf

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 19:00:37 UTC 2023
    - 699 bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingClosure.kt

    ) : Closure<T>(
        trackingProjectAccess(crossProjectModelAccess, referrerProject, delegate.owner),
        trackingProjectAccess(crossProjectModelAccess, referrerProject, delegate.thisObject)
    ) {
        @Suppress("unused")
        fun doCall(vararg args: Any) {
            val numClosureArgs = delegate.maximumNumberOfParameters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/MixInClosurePropertiesAsMethodsDynamicObject.java

                    closure.setResolveStrategy(Closure.DELEGATE_FIRST);
                    BeanDynamicObject dynamicObject = new BeanDynamicObject(closure);
                    result = dynamicObject.tryInvokeMethod("doCall", arguments);
                    if (!result.isFound() && !(closure instanceof GeneratedClosure)) {
                        return DynamicInvokeResult.found(closure.call(arguments));
                    }
                    return result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:19:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_coverprofile_multipkg.txt

    module M
    
    go 1.21
    -- it/it.go --
    package it
    
    type Ctr interface {
    	Count() int
    }
    
    type Conc struct {
    	X int
    }
    
    func (c *Conc) Count() int {
    	return c.X
    }
    
    func DoCall(c *Conc) {
    	c2 := Callee(c)
    	println(c2.Count())
    }
    
    func Callee(ii Ctr) Ctr {
    	q := ii.Count()
    	return &Conc{X: q}
    }
    -- main/main.go --
    package main
    
    import (
    	"M/a"
    	"M/b"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 17:02:36 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. src/runtime/sys_windows_386.s

    	MOVL	$0, 0x34(FS)
    
    	MOVL	libcall_n(BX), CX
    
    	// Fast version, do not store args on the stack.
    	CMPL	CX, $0
    	JE	docall
    
    	// Copy args to the stack.
    	MOVL	CX, AX
    	SALL	$2, AX
    	SUBL	AX, SP			// room for args
    	MOVL	SP, DI
    	MOVL	libcall_args(BX), SI
    	CLD
    	REP; MOVSL
    
    docall:
    	// Call stdcall or cdecl function.
    	// DI SI BP BX are preserved, SP is not
    	CALL	libcall_fn(BX)
    	MOVL	BP, SP
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/TestableDaemon.groovy

            registryProbe.resetToken()
        }
    
        @Override
        int getPort() {
            Pattern pattern = Pattern.compile("^.*" + DaemonMessages.ADVERTISING_DAEMON + ".*port:(\\d+).*",
                Pattern.MULTILINE + Pattern.DOTALL);
    
            Matcher matcher = pattern.matcher(daemonLog.text);
            assert matcher.matches(): "Unable to find daemon address in the daemon log. Daemon: $context"
    
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/flag/flag.go

    	}
    	if pos := f.undef[name]; pos != "" {
    		panic(fmt.Sprintf("flag %s set at %s before being defined", name, pos))
    	}
    	if f.formal == nil {
    		f.formal = make(map[string]*Flag)
    	}
    	f.formal[name] = flag
    }
    
    // Var defines a flag with the specified name and usage string. The type and
    // value of the flag are represented by the first argument, of type [Value], which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/util/ClosureBackedAction.java

                        copy.call(delegate);
                    }
                }
            } catch (groovy.lang.MissingMethodException e) {
                if (Objects.equal(e.getType(), closure.getClass()) && Objects.equal(e.getMethod(), "doCall")) {
                    throw new InvalidActionClosureException(closure, delegate);
                }
                throw e;
            }
        }
    
        public Closure getClosure() {
            return closure;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top