Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,087 for makeID (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    :plugin-reference-documentation: https://plugins.gradle.org/docs/publish-plugin[reference documentation of the {publishplugin}]
    
    Publishing a plugin is the primary way to make it available for others to use.
    While you can publish to a private repository to restrict access, publishing to the https://plugins.gradle.org[{portal}] makes your plugin available to anyone in the world.
    
    image::plugin-portal-page.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue51233.go

    }
    
    type concreteF[RCT RC[RG], RG any] struct {
    	makeFn FFn /* ERROR "not enough type arguments for type FFn: have 1, want 2" */ [RCT]
    }
    
    func (c *concreteF[RCT, RG]) Fn() Fn /* ERROR "not enough type arguments for type Fn: have 1, want 2" */ [RCT] {
    	return c.makeFn()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 818 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

    Property 'prop' specifies file '${location}' which doesn't exist.
    
    Reason: An input file was expected to be present but it doesn't exist.
    
    Possible solutions:
      1. Make sure the file exists before the task is called.
      2. Make sure that the task which produces the file is declared as an input.
    
    ${validationMessage("input_file_does_not_exist")}
    """
    
            render inputDoesNotExist {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  4. src/math/big/natdiv.go

    And consider the two truncated quotients:
    
    	q = ⌊x/y⌋
    	q̂ = ⌊x₁/y₁⌋
    
    We will prove that q ≤ q̂ ≤ q+2.
    
    The guarantee makes no real demands on the scaling factor S: it is simply the
    magnitude of the digits cut from both x and y to produce x₁ and y₁.
    The guarantee makes only limited demands on T: it must be large enough to hold
    the quotient x/y, and y₁ must have roughly the same size.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    You would need to ensure that the absolute path is the same between machines. Most times it makes sense to track the file or the contents of the directory the absolute path points to.
    If the absolute path represents a tool being used it probably makes sense to track the tool version as an input instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. src/go/types/builtins.go

    		ptyp.index = tp.index
    
    		return ptyp
    	}
    
    	return f(x.typ)
    }
    
    // makeSig makes a signature for the given argument and result types.
    // Default types are used for untyped arguments, and res may be nil.
    func makeSig(res Type, args ...Type) *Signature {
    	list := make([]*Var, len(args))
    	for i, param := range args {
    		list[i] = NewVar(nopos, nil, "", Default(param))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/Authenticator.kt

       */
      @Throws(IOException::class)
      fun authenticate(
        route: Route?,
        response: Response,
      ): Request?
    
      companion object {
        /** An authenticator that knows no credentials and makes no attempt to authenticate. */
        @JvmField
        val NONE: Authenticator = AuthenticatorNone()
    
        private class AuthenticatorNone : Authenticator {
          override fun authenticate(
            route: Route?,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          }
          group.self += (place.Pos == stack.Sources.length-1) ? stack.Value : 0;
          group.places.push(place);
        }
    
        // Order by decreasing cost (makes it easier to spot heavy functions).
        // Though alphabetical ordering is a potential alternative that will make
        // profile comparisons easier.
        groups.sort(function(a, b) {
          return (b.sumpos + b.sumneg) - (a.sumpos + a.sumneg);
        });
    
        return groups;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/cache/cache.go

    	if size == 0 {
    		// File now exists with correct size.
    		// Only one possible zero-length file, so contents are OK too.
    		// Early return here makes sure there's a "last byte" for code below.
    		return nil
    	}
    
    	// From here on, if any of the I/O writing the file fails,
    	// we make a best-effort attempt to truncate the file f
    	// before returning, to avoid leaving bad bytes in the file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. test/prove.go

    		f := foobar[i]
    		foobar = foobar[:i] // ERROR "IsSliceInBounds"
    		f()
    	}
    }
    
    func make1(n int) []int {
    	s := make([]int, n)
    	for i := 0; i < n; i++ { // ERROR "Induction variable: limits \[0,\?\), increment 1"
    		s[i] = 1 // ERROR "Proved IsInBounds$"
    	}
    	return s
    }
    
    func make2(n int) []int {
    	s := make([]int, n)
    	for i := range s { // ERROR "Induction variable: limits \[0,\?\), increment 1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top