Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 214 for desc3 (0.04 sec)

  1. src/net/unixsock_test.go

    		}
    		return l.(*UnixListener)
    	}
    	checkExists := func(t *testing.T, desc string) {
    		if _, err := os.Stat(name); err != nil {
    			t.Fatalf("unix socket does not exist %s: %v", desc, err)
    		}
    	}
    	checkNotExists := func(t *testing.T, desc string) {
    		if _, err := os.Stat(name); err == nil {
    			t.Fatalf("unix socket does exist %s: %v", desc, err)
    		}
    	}
    
    	// Listener should remove on close.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseJavaClassChangeIncrementalCompilationIntegrationTest.groovy

            fails language.compileTaskName
            failure.assertHasErrorOutput(expectedFailure)
        }
    
        def "change to #retention retention annotation class recompiles #desc"() {
            def annotationClass = file("src/main/${language.name}/SomeAnnotation.${language.name}") << """
                import java.lang.annotation.*;
    
                @Retention(RetentionPolicy.$retention)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. pkg/proxy/metrics/metrics.go

    type nfacctMetricCollector struct {
    	metrics.BaseStableCollector
    	client      nfacct.Interface
    	counter     string
    	description *metrics.Desc
    }
    
    // DescribeWithStability implements the metrics.StableCollector interface.
    func (n *nfacctMetricCollector) DescribeWithStability(ch chan<- *metrics.Desc) {
    	ch <- n.description
    }
    
    // CollectWithStability implements the metrics.StableCollector interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/testing/fstest/testfs.go

    		t.errorf("%s: failed TestReader:\n\t%s", file, strings.ReplaceAll(err.Error(), "\n", "\n\t"))
    	}
    }
    
    func (t *fsTester) checkFileRead(file, desc string, data1, data2 []byte) {
    	if string(data1) != string(data2) {
    		t.errorf("%s: %s: different data returned\n\t%q\n\t%q", file, desc, data1, data2)
    		return
    	}
    }
    
    // checkBadPath checks that various invalid forms of file's name cannot be opened using t.fsys.Open.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.cc

      }
    
      void runOnOperation() override;
    
     private:
      Option<OpSet> op_set_{
          *this, "target-opset", llvm::cl::init(OpSet::UNIFORM_QUANTIZED),
          llvm::cl::desc("Choose target opset."),
          llvm::cl::values(
              clEnumValN(OpSet::TF, "TF",
                         "Uses TF ops that mimic quantization behavior"),
              clEnumValN(OpSet::XLA, "XLA", "Uses TF XLA ops"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pkg/kubelet/logs/container_log_manager_test.go

    	assert.Len(t, logs, 2)
    	assert.Equal(t, testLogs[0], filepath.Join(dir, logs[0].Name()))
    	assert.Equal(t, testLogs[3], filepath.Join(dir, logs[1].Name()))
    }
    
    func TestRemoveExcessLog(t *testing.T) {
    	for desc, test := range map[string]struct {
    		max    int
    		expect []string
    	}{
    		"MaxFiles equal to 2": {
    			max:    2,
    			expect: []string{},
    		},
    		"MaxFiles more than 2": {
    			max:    3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

        private static <T extends InCatalog<T>> String buildMessage(Class<T> clazz, VersionCatalogProblemId id, Closure<?> spec) {
            def desc = clazz.newInstance()
            desc.section = id.name().toLowerCase()
            spec.delegate = desc
            spec.resolveStrategy = Closure.DELEGATE_FIRST
            spec()
            desc.build()
        }
    
        abstract static class InCatalog<T extends InCatalog<T>> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  8. src/context/x_test.go

    }
    
    func TestAllocs(t *testing.T) {
    	bg := Background()
    	for _, test := range []struct {
    		desc       string
    		f          func()
    		limit      float64
    		gccgoLimit float64
    	}{
    		{
    			desc:       "Background()",
    			f:          func() { Background() },
    			limit:      0,
    			gccgoLimit: 0,
    		},
    		{
    			desc: fmt.Sprintf("WithValue(bg, %v, nil)", k1),
    			f: func() {
    				c := WithValue(bg, k1, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

            // changes above not being propagated to the map
            for (MojoDescriptor desc : getMojos()) {
                if (goal.equals(desc.getGoal())) {
                    return desc;
                }
            }
            return null;
        }
    
        public void setClassRealm(ClassRealm classRealm) {
            this.classRealm = classRealm;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:30.890178Z	info	Envoy proxy is ready
    2020-06-30T00:06:51.794303Z	info	Subchannel Connectivity change to CONNECTING
    2020-06-30T00:06:51.794349Z	info	transport: loopyWriter.run returning. connection error: desc = "transport is closing"
    2020-06-30T00:06:51.794488Z	info	pickfirstBalancer: HandleSubConnStateChange: 0xc00087d1e0, {CONNECTING <nil>}
    2020-06-30T00:06:51.794505Z	info	Channel Connectivity change to CONNECTING
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
Back to top