Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,135 for produced (0.14 sec)

  1. guava-testlib/src/com/google/common/collect/testing/features/CollectionSize.java

    import java.util.Collection;
    import java.util.Collections;
    import java.util.Set;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * When describing the features of the collection produced by a given generator (i.e. in a call to
     * {@link
     * com.google.common.collect.testing.FeatureSpecificTestSuiteBuilder#withFeatures(Feature...)}),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt

                        delete { delete(stateDir) }
                    }
                }
            }
        }
    }
    
    
    /**
     * Clean up daemon log files produced in integration tests.
     */
    fun FileSystemOperations.removeDaemonLogFiles(dir: Directory) {
        if (dir.asFile.isDirectory) {
            val daemonLogFiles = dir.asFileTree.matching {
                include("**/*.log")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 12:45:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pkg/revisions/default_watcher_test.go

    }
    
    func expectRevisionChan(t test.Failer, revisionChan chan string, expected string) {
    	select {
    	case rev := <-revisionChan:
    		if rev != expected {
    			t.Fatalf("expected revision %q to be produced on chan, got %q", expected, rev)
    		}
    	case <-time.After(time.Second * 5):
    		t.Fatalf("timed out waiting for value on default revision chan")
    	}
    }
    
    func TestNoDefaultRevision(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 23 17:46:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/html/template/context.go

    import (
    	"fmt"
    	"text/template/parse"
    )
    
    // context describes the state an HTML parser must be in when it reaches the
    // portion of HTML produced by evaluating a particular template node.
    //
    // The zero value of type context is the start context for a template that
    // produces an HTML fragment as defined at
    // https://www.w3.org/TR/html5/syntax.html#the-end
    // where the context element is null.
    type context struct {
    	state   state
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		// responsible for ensuring that all text strings they produce contain valid UTF-8
    		// sequences and may use the byte string major type to encode strings that have not
    		// been validated.
    		UTF8: cbor.UTF8RejectInvalid,
    
    		// Never make a case-insensitive match between a map key and a struct field.
    		FieldNameMatching: cbor.FieldNameMatchingCaseSensitive,
    
    		// Produce string concrete values when decoding a CBOR byte string into interface{}.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/testing/fixture/GroovyCoverage.groovy

            return groovyVersionsSupportedByJdk(javaVersion).contains(groovyVersion)
        }
    
        /**
         * Computes the Java version that corresponds to the Java bytecode version actually produced by the Groovy compiler.
         */
        static JavaVersion getEffectiveTarget(VersionNumber groovyVersion, JavaVersion target) {
            if (groovyVersion.major == 4) {
                return target
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/NullnessCasts.java

    import com.google.common.annotations.GwtCompatible;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** A utility method to perform unchecked casts to suppress errors produced by nullness analyses. */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class NullnessCasts {
      /**
       * Accepts a {@code @Nullable T} and returns a plain {@code T}, without performing any check that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 17 15:44:29 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/NullnessCasts.java

    import com.google.common.annotations.GwtCompatible;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** A utility method to perform unchecked casts to suppress errors produced by nullness analyses. */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class NullnessCasts {
      /**
       * Accepts a {@code @Nullable T} and returns a plain {@code T}, without performing any check that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 12 20:58:36 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultInstrumentedGroovyCallsTrackerTest.groovy

            when:
            instance.leaveCall(entryBar)
            instance.leaveCall(entryFoo)
    
            then:
            noExceptionThrown()
        }
    
        def 'entry points are not interchangeable even if produced by similar calls'() {
            given:
            def entryFoo1 = instance.enterCall("FooCallerClass", "foo", INVOKE_METHOD)
            def entryFoo2 = instance.enterCall("FooCallerClass", "foo", INVOKE_METHOD)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/internal/trace/raw/doc.go

    useful for testing and debugging the tracer in the runtime and more sophisticated
    trace parsers.
    
    # Text format specification
    
    The trace text format produced and consumed by this package is a line-oriented
    format.
    
    The first line in each text trace is the header line.
    
    	Trace Go1.XX
    
    Following that is a series of event lines. Each event begins with an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top