Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 166 for preset (0.16 sec)

  1. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    		close(f.result)
    		f.stopped = true
    	}
    }
    
    func (f *FakeWatcher) IsStopped() bool {
    	f.Lock()
    	defer f.Unlock()
    	return f.stopped
    }
    
    // Reset prepares the watcher to be reused.
    func (f *FakeWatcher) Reset() {
    	f.Lock()
    	defer f.Unlock()
    	f.stopped = false
    	f.result = make(chan Event)
    }
    
    func (f *FakeWatcher) ResultChan() <-chan Event {
    	return f.result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSymbol.kt

            val importedFromObjectData = (this as FirCallableDeclaration).importedFromObjectOrStaticData
                ?: errorWithAttachment("Declaration has ImportedFromObject origin, but no importedFromObjectData present") {
                    withFirEntry("firToGetOrigin", this@ktSymbolOrigin)
                }
    
            importedFromObjectData.original.ktSymbolOrigin()
        }
    
        FirDeclarationOrigin.WrappedIntegerOperator -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/ObjectInputStreamAdapter.kt

        override fun markSupported(): Boolean = inputStream.markSupported()
    
        override fun mark(readlimit: Int) = inputStream.mark(readlimit)
    
        override fun reset() = inputStream.reset()
    
        override fun read(): Int = inputStream.read()
    
        override fun readChar(): Char = readContext.readInt().toChar()
    
        override fun readUnsignedByte(): Int = readByte().let {
            require(it >= 0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. cmd/bucket-versioning-handler.go

    			Description:    "An Object Lock configuration is present on this bucket, versioning cannot be suspended.",
    			HTTPStatusCode: http.StatusBadRequest,
    		}, r.URL)
    		return
    	}
    	if rc, _ := getReplicationConfig(ctx, bucket); rc != nil && v.Suspended() {
    		writeErrorResponse(ctx, w, APIError{
    			Code:           "InvalidBucketState",
    			Description:    "A replication configuration is present on this bucket, bucket wide versioning cannot be suspended.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionPropertyInternal.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 provider The provider of an element
         */
        @Incubating
        void append(Provider<? extends T> provider);
    
        /**
         * Adds zero or more elements to the property value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/projectresult/ResolvedLocalComponentsResultGraphVisitor.java

     * over this visitor, since here we only mark a configuration observed if its metadata is present in the final graph.
     * There are likely scenarios that this visitor does not cover, where a configuration's metadata is observed but
     * its component is not present in the final graph.
     */
    public class ResolvedLocalComponentsResultGraphVisitor implements DependencyGraphVisitor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/FixedFileCollectionExecutionTimeValue.groovy

            def collection = fileCollectionFactory().fixed("foo", new File("foo.txt"))
    
            when:
            def executionTimeValue = collection.calculateExecutionTimeValue()
    
            then:
            executionTimeValue.present
    
            and:
            def newCollection = executionTimeValue.get().toFileCollection(fileCollectionFactory())
    
            then:
            newCollection.files == [new File("foo.txt")] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 18:57:37 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/crossVersionTest/groovy/org/gradle/jvm/toolchain/internal/install/ProvisionedJdkReuseCrossVersionIntegrationTest.groovy

                }
            """
        }
    
        def cleanup() {
            jdkRepository.stop()
        }
    
        def "current version does not use jdk provisioned by previous version"() {
            given:
            jdkRepository.reset()
    
            when:
            def result = version previous withGradleUserHomeDir userHome withTasks 'run' withArguments '-Porg.gradle.java.installations.auto-download=true' run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            when:
            gitVcs.populate(target, repoHead, repoSpec)
    
            then:
            target.file( '.git').assertIsDir()
            target.file( 'submodule/foo.txt').text == "hello from submodule"
        }
    
        def 'reset a cloned repository with dirty working dir'() {
            given:
            def target = tmpDir.file('versionDir')
            gitVcs.populate(target, repoHead, repoSpec)
    
            def removed = target.file("source.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. cni/pkg/install/kubeconfig_test.go

    	if err != nil {
    		t.Fatalf("expected no error: %+v", err)
    	}
    	err = checkExistingKubeConfigFile(cfg, expectedKC)
    
    	if err == nil {
    		t.Fatalf("expected error, no kubeconfig present")
    	}
    }
    
    func TestCheckMismatchedExistingKubeConfig(t *testing.T) {
    	tmp := t.TempDir()
    	os.WriteFile(filepath.Join(tmp, "token"), []byte(saToken), 0o644)
    	tempDir := t.TempDir()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top