Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 447 for Mainer (0.1 sec)

  1. android/guava-tests/test/com/google/common/io/CharSinkTester.java

     * limitations under the License.
     */
    
    package com.google.common.io;
    
    import static com.google.common.io.SourceSinkFactory.CharSinkFactory;
    
    import com.google.common.base.Joiner;
    import com.google.common.collect.ImmutableList;
    import java.io.IOException;
    import java.io.Writer;
    import java.lang.reflect.Method;
    import java.util.Map.Entry;
    import junit.framework.TestSuite;
    
    /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/NormalizingScalaCompiler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.scala;
    
    import com.google.common.base.Joiner;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Lists;
    import org.gradle.api.internal.tasks.compile.CompilationFailedException;
    import org.gradle.api.internal.tasks.compile.JavaCompileSpec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/text/DefaultTextReportBuilder.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.tasks.diagnostics.internal.text;
    
    import com.google.common.base.Joiner;
    import org.gradle.api.Action;
    import org.gradle.api.UncheckedIOException;
    import org.gradle.api.internal.file.FileResolver;
    import org.gradle.internal.logging.text.StyledTextOutput;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 08 05:52:01 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  4. pkg/test/util/yml/file.go

    	WriteYAML(filenamePrefix string, contents ...string) ([]string, error)
    
    	// WriteYAMLOrFail calls WriteYAML and fails the test if an error occurs.
    	WriteYAMLOrFail(t test.Failer, filenamePrefix string, contents ...string) []string
    }
    
    type writerImpl struct {
    	workDir string
    }
    
    // NewFileWriter creates a new FileWriter that stores files under workDir.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 07 14:33:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/XCTestSourceFileElement.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app;
    
    import com.google.common.base.Joiner;
    import org.gradle.integtests.fixtures.SourceFile;
    import org.gradle.integtests.fixtures.TestClassExecutionResult;
    import org.gradle.util.internal.CollectionUtils;
    import org.hamcrest.CoreMatchers;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ComponentModuleMetadataContainer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.dsl;
    
    import com.google.common.base.Joiner;
    import org.gradle.api.InvalidUserDataException;
    import org.gradle.api.artifacts.ComponentModuleMetadataDetails;
    import org.gradle.api.artifacts.ModuleIdentifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompiler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.compile;
    
    import com.google.common.base.Joiner;
    import com.google.common.base.Predicate;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Iterables;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. pkg/monitoring/monitortest/test.go

    		return nil, err
    	}
    	return reg, nil
    })
    
    func TestRegistry(t test.Failer) prometheus.Gatherer {
    	r, err := reg.Get()
    	if err != nil {
    		t.Fatal(err)
    	}
    	return r
    }
    
    func New(t test.Failer) *MetricsTest {
    	r := TestRegistry(t)
    	mt := &MetricsTest{t: t, reg: r, deltas: computeDeltas(t, r)}
    	return mt
    }
    
    func computeDeltas(t test.Failer, reg prometheus.Gatherer) map[metricKey]float64 {
    	res := map[metricKey]float64{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. pkg/revisions/default_watcher_test.go

    		TypeMeta: metav1.TypeMeta{},
    		ObjectMeta: metav1.ObjectMeta{
    			Name: defaultTagWebhookName,
    			Labels: map[string]string{
    				label.IoIstioRev.Name: revision,
    			},
    		},
    	}
    }
    
    func expectRevision(t test.Failer, watcher DefaultWatcher, expected string) {
    	t.Helper()
    	retry.UntilSuccessOrFail(t, func() error {
    		got := watcher.GetDefault()
    		if got != expected {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 23 17:46:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. tests/integration/pilot/analyze_test.go

    		}
    	}
    }
    
    func expectNoMessages(t test.Failer, g *GomegaWithT, output []string) {
    	t.Helper()
    	g.Expect(output).To(HaveLen(1))
    	g.Expect(output[0]).To(ContainSubstring("No validation issues found when analyzing"))
    }
    
    func expectJSONMessages(t test.Failer, g *GomegaWithT, output string, expected ...*diag.MessageType) {
    	t.Helper()
    
    	var j []map[string]any
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top