Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 166 for preset (1.49 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationsList.kt

        public fun hasAnnotation(classId: ClassId): Boolean = contains(classId)
    
        /**
         * A list of annotations applied with specified [classId].
         *
         * To check if annotation is present, please use [contains].
         *
         * The semantic is equivalent to
         * ```
         * annotationsList.annotationsByClassId(classId) == annotationsList.annotations.filter { it.classId == classId }
         * ```
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/GradleBuildModelCrossVersionSpec.groovy

    import org.gradle.tooling.model.gradle.GradleBuild
    import spock.lang.Issue
    
    class GradleBuildModelCrossVersionSpec extends ToolingApiSpecification {
    
        @TargetGradleVersion(">=3.3")
        def "Included builds are present in the model"() {
            given:
            def rootDir = singleProjectBuildInRootFolder("root") {
                settingsFile << """
                    rootProject.name = 'root'
                    includeBuild 'includedBuild'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapPropertyInternal.java

         * </p>
         * <p>Even if the given provider has no value, after this method is invoked,
         * the actual value of this property is guaranteed to be present.</p>
         *
         * @param key the key
         * @param providerOfValue the provider of the value
         */
        @Incubating
        void insert(K key, Provider<? extends V> providerOfValue);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/crypto/sha256/sha256.go

    func New() hash.Hash {
    	if boring.Enabled {
    		return boring.NewSHA256()
    	}
    	d := new(digest)
    	d.Reset()
    	return d
    }
    
    // New224 returns a new hash.Hash computing the SHA224 checksum.
    func New224() hash.Hash {
    	if boring.Enabled {
    		return boring.NewSHA224()
    	}
    	d := new(digest)
    	d.is224 = true
    	d.Reset()
    	return d
    }
    
    func (d *digest) Size() int {
    	if !d.is224 {
    		return Size
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/1-time.md

    now unbuffered, with capacity 0.
    The main effect of this change is that Go now guarantees
    that for any call to a `Reset` or `Stop` method, no stale values
    prepared before that call will be sent or received after the call.
    Earlier versions of Go used channels with a one-element buffer,
    making it difficult to use `Reset` and `Stop` correctly.
    A visible effect of this change is that `len` and `cap` of timer channels
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/RecordingObjectOutputStream.kt

            this.writeDouble(`val`)
        }
    
        override fun useProtocolVersion(version: Int) = Unit
    
        override fun flush() = Unit
    
        override fun close() = Unit
    
        override fun reset() = unsupported("ObjectOutputStream.reset")
    
        override fun writeFields() = unsupported("ObjectOutputStream.writeFields")
    
        override fun putFields(): PutField = unsupported("ObjectOutputStream.putFields")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/sha3/shake.go

    	c.initBlock = append(c.initBlock, leftEncode(uint64(len(S)*8))...)
    	c.initBlock = append(c.initBlock, S...)
    	c.Write(bytepad(c.initBlock, c.rate))
    	return &c
    }
    
    // Reset resets the hash to initial state.
    func (c *cshakeState) Reset() {
    	c.state.Reset()
    	c.Write(bytepad(c.initBlock, c.rate))
    }
    
    // Clone returns copy of a cSHAKE context within its current state.
    func (c *cshakeState) Clone() ShakeHash {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/crypto/sha1/sha1.go

    }
    
    func consumeUint64(b []byte) ([]byte, uint64) {
    	return b[8:], byteorder.BeUint64(b)
    }
    
    func consumeUint32(b []byte) ([]byte, uint32) {
    	return b[4:], byteorder.BeUint32(b)
    }
    
    func (d *digest) Reset() {
    	d.h[0] = init0
    	d.h[1] = init1
    	d.h[2] = init2
    	d.h[3] = init3
    	d.h[4] = init4
    	d.nx = 0
    	d.len = 0
    }
    
    // New returns a new hash.Hash computing the SHA1 checksum. The Hash also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbol.kt

        /**
         * We can use [FirRegularClassSymbol.rawStatus] to avoid unnecessary resolve unless there are status transformers present.
         * If they are present, we have to resort to [FirRegularClassSymbol.resolvedStatus] instead - otherwise we can observe incorrect status
         * properties.
         *
         * TODO This optimization should become obsolete after KT-56551 is fixed.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_progress.go

    		case <-timer.C():
    			shouldRequest := func() bool {
    				pr.mux.Lock()
    				defer pr.mux.Unlock()
    				return pr.waiting > 0 && !pr.stopped
    			}()
    			if !shouldRequest {
    				timer.Reset(0)
    				continue
    			}
    			timer.Reset(progressRequestPeriod)
    			err := pr.requestWatchProgress(ctx)
    			if err != nil {
    				klog.V(4).InfoS("Error requesting bookmark", "err", err)
    			}
    		case <-stopCh:
    			return
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 09:56:38 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top