Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 6,670 for doens (0.05 sec)

  1. src/main/assemblies/files/generate-thumbnail

      if [[ ! -f ${tmp_pdf_file} ]] ; then
        echo "unoconv does not work."
        exit 1
      fi
      tmp_png_prefix=/tmp/thumbnail.png.$$
      pdftoppm -png -singlefile ${tmp_pdf_file} ${tmp_png_prefix}
      tmp_png_file="${tmp_png_prefix}.png"
      rm -f ${tmp_pdf_file}
      if [[ ! -f ${tmp_png_file} ]] ; then
        echo "pdftoppm does not work."
        exit 1
      fi
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jun 12 13:13:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerTest.groovy

                stringInterner
            )
        }
    
        def "does suppress exceptions from load"() {
            given:
            1 * remote.load(key, _) >> { throw new RuntimeException() }
    
            when:
            controller.load(key, cacheableEntity)
    
            then:
            1 * local.loadLocally(key, _)
            0 * local.storeLocally(key, _)
        }
    
        def "does suppress exceptions from store"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue60562.go

    func f0[T any](chan S[T]) {}
    
    func _() {
    	var x chan interface{ m(int) }
    	f0(x /* ERROR "type chan interface{m(int)} of x does not match chan S[T] (cannot infer T)" */)
    }
    
    // variants of the theme
    
    func f1[T any]([]S[T]) {}
    
    func _() {
    	var x []interface{ m(int) }
    	f1(x /* ERROR "type []interface{m(int)} of x does not match []S[T] (cannot infer T)" */)
    }
    
    type I[T any] interface {
    	m(T)
    }
    
    func f2[T any](func(I[T])) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 14:52:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. internal/hash/errors.go

    package hash
    
    import (
    	"errors"
    	"fmt"
    )
    
    // SHA256Mismatch - when content sha256 does not match with what was sent from client.
    type SHA256Mismatch struct {
    	ExpectedSHA256   string
    	CalculatedSHA256 string
    }
    
    func (e SHA256Mismatch) Error() string {
    	return "Bad sha256: Expected " + e.ExpectedSHA256 + " does not match calculated " + e.CalculatedSHA256
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 15 21:08:54 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/versions/ReleasedVersionDistributionsTest.groovy

            versions.all*.version == versions.all*.version.sort().reverse()
        }
    
        def "get most recent final does that"() {
            when:
            props.mostRecent = "1.2"
    
            then:
            versions().mostRecentRelease.version == version("1.2")
        }
    
        def "get most recent snapshot does that"() {
            when:
            props.mostRecentSnapshot = "2.5-20150413220018+0000"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. test/fixedbugs/bug248.dir/bug2.go

    var i0 I0 = t0(0) // ok
    var i1 I1 = t1(0) // ok
    
    var i2 I0 = t1(0) // ERROR "does not implement|incompatible"
    var i3 I1 = t0(0) // ERROR "does not implement|incompatible"
    
    var p0i p0.I = t0(0) // ok
    var p1i p1.I = t1(0) // ok
    
    var p0i1 p0.I = t1(0) // ERROR "does not implement|incompatible"
    var p0i2 p1.I = t0(0) // ERROR "does not implement|incompatible"
    
    func foobar() {
    	// check that cannot assign one to the other,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 19 06:26:35 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/common/adaptor.go

    	// Items returns the OpenAPI items. or nil of this field does not exist or
    	// contains no schema.
    	Items() Schema
    
    	// Properties returns the OpenAPI properties, or nil if this field does not
    	// exist.
    	// The values of the returned map are of the adapted type.
    	Properties() map[string]Schema
    
    	// AdditionalProperties returns the OpenAPI additional properties field,
    	// or nil if this field does not exist.
    	AdditionalProperties() SchemaOrBool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/compilerapi/deps/DependentsSet.java

            @Override
            public boolean isEmpty() {
                throw new UnsupportedOperationException("This dependents set does not have dependent classes information.");
            }
    
            @Override
            public boolean hasDependentClasses() {
                throw new UnsupportedOperationException("This dependents set does not have dependent classes information.");
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. cmd/typed-errors.go

    // error returned when temporary account is not found
    var errNoSuchTempAccount = errors.New("Specified temporary account does not exist")
    
    // error returned in IAM subsystem when an account doesn't exist.
    var errNoSuchAccount = errors.New("Specified account does not exist")
    
    // error returned in IAM subsystem when groups doesn't exist.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/typeinst1.go

    func f12[T I12]() {}
    var _ = f12[int /* ERROR "does not satisfy I12" */ ]
    var _ = f12[bool /* ERROR "does not satisfy I12" */ ]
    var _ = f12[string /* ERROR "does not satisfy I12" */ ]
    var _ = f12[float64]
    
    type I0_ interface {
    	E0
    	~int
    }
    
    func f0_[T I0_]() {}
    var _ = f0_[int]
    var _ = f0_[bool /* ERROR "does not satisfy I0_" */ ]
    var _ = f0_[string /* ERROR "does not satisfy I0_" */ ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top