Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for pref (0.04 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    func (r *MXResource) GoString() string {
    	return "dnsmessage.MXResource{" +
    		"Pref: " + printUint16(r.Pref) + ", " +
    		"MX: " + r.MX.GoString() + "}"
    }
    
    func unpackMXResource(msg []byte, off int) (MXResource, error) {
    	pref, off, err := unpackUint16(msg, off)
    	if err != nil {
    		return MXResource{}, &nestedError{"Pref", err}
    	}
    	var mx Name
    	if _, err := mx.unpack(msg, off); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    	"fixedbugs/bug176.go", // types2 reports all errors (pref: types2)
    	"fixedbugs/bug195.go", // types2 reports slight different errors, and an extra error
    	"fixedbugs/bug412.go", // types2 produces a follow-on error
    
    	"fixedbugs/issue11614.go", // types2 reports an extra error
    	"fixedbugs/issue17038.go", // types2 doesn't report a follow-on error (pref: types2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/math/big/float_test.go

    	} {
    		x := makeFloat(test.x).SetPrec(test.prec)
    		prec := test.prec
    		if prec > MaxPrec {
    			prec = MaxPrec
    		}
    		if got := x.Prec(); got != prec {
    			t.Errorf("%s.SetPrec(%d).Prec() == %d; want %d", test.x, test.prec, got, prec)
    		}
    		if got, acc := x.String(), x.Acc(); got != test.want || acc != test.acc {
    			t.Errorf("%s.SetPrec(%d) = %s (%s); want %s (%s)", test.x, test.prec, got, acc, test.want, test.acc)
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  4. src/html/template/escape_test.go

    			`<a href='/search?q=%3cHello%3e'>`,
    		},
    		{
    			"urlFragment",
    			`<a href='/faq#{{.H}}'>`,
    			`<a href='/faq#%3cHello%3e'>`,
    		},
    		{
    			"urlBranch",
    			`<a href="{{if .F}}/foo?a=b{{else}}/bar{{end}}">`,
    			`<a href="/bar">`,
    		},
    		{
    			"urlBranchConflictMoot",
    			`<a href="{{if .T}}/foo?a={{else}}/bar#{{end}}{{.C}}">`,
    			`<a href="/foo?a=%3cCincinnati%3e">`,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

      %graph = tf_executor.graph {
        %island, %ctrl = tf_executor.island {
          %pred = "tf.SomeOp"(%arg2) : (tensor<f32>) -> tensor<i32>
          tf_executor.yield %pred : tensor<i32>
        }
        tf_executor.fetch %island : tensor<i32>
      }
      func.return %graph : tensor<i32>
    }
    
    // CHECK-LABEL:   func @simple_independent_chains
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  6. fess-crawler/src/test/resources/extractor/eml/sample2.eml

    <tbody>
    <tr align="left">
    <td align="left" width="15" style="width:15px;padding:0;margin:0;line-height:1px;font-size:1px;"></td>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 91.6K bytes
    - Viewed (0)
  7. docs/ru/docs/deployment/docker.md

    * <a href="https://hub.docker.com/_/postgres" class="external-link" target="_blank">PostgreSQL</a>
    * <a href="https://hub.docker.com/_/mysql" class="external-link" target="_blank">MySQL</a>
    * <a href="https://hub.docker.com/_/mongo" class="external-link" target="_blank">MongoDB</a>
    * <a href="https://hub.docker.com/_/redis" class="external-link" target="_blank">Redis</a>
    
    и т.п.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			t.Fatalf("unexpected error waiting for the cache to be ready")
    		}
    	}
    	pred := storage.Everything
    	pred.AllowWatchBookmarks = allowWatchBookmarks
    
    	ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
    	defer cancel()
    	w, err := cacher.Watch(ctx, "pods/ns", storage.ListOptions{ResourceVersion: "0", Predicate: pred})
    	if err != nil {
    		t.Fatalf("Failed to create watch: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            assertNodeReadyAndNoMoreToStart(entry)
            assertAllWorkComplete()
        }
    
        def "node can provide pre-execution dependency that is already scheduled"() {
            def dep = node("dep")
            def preNode1 = node("pre1", dependsOn: dep)
            def preNode2 = node("pre2")
            def target = node("target", preNodes: [preNode1, preNode2])
            def entry = node("entry", dependsOn: [preNode1, target])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	podInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			pod := obj.(*v1.Pod)
    			nc.podUpdated(nil, pod)
    		},
    		UpdateFunc: func(prev, obj interface{}) {
    			prevPod := prev.(*v1.Pod)
    			newPod := obj.(*v1.Pod)
    			nc.podUpdated(prevPod, newPod)
    		},
    		DeleteFunc: func(obj interface{}) {
    			pod, isPod := obj.(*v1.Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top