Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 879 for RES (0.03 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/ifrt/sink_variable_as_named_array.mlir

    // CHECK-SAME:       used_by_host = false 
    // CHECK-NEXT:   [[RES:%.*]] = "tf.IfrtCall"([[KEY]], %arg0) <{program_id = 6515870160938153680 : i64, variable_arg_indices = [0 : i32]}>
    // CHECK-SAME:    : (tensor<!tf_type.string>, tensor<1x3xf32>) -> tensor<1x1xf32>
    // CHECK-NEXT:    return [[RES]] : tensor<1x1xf32>
    //
    module {
      func.func @serving_default(%arg0: tensor<1x3xf32>) -> tensor<1x1xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 15:33:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. pkg/kube/kclient/clienttest/test_helpers.go

    	t.t.Helper()
    	res, err := t.c.Create(object)
    	if err != nil {
    		t.t.Fatalf("create %v/%v: %v", object.GetNamespace(), object.GetName(), err)
    	}
    	return res
    }
    
    func (t TestWriter[T]) Update(object T) T {
    	t.t.Helper()
    	res, err := t.c.Update(object)
    	if err != nil {
    		t.t.Fatalf("update %v/%v: %v", object.GetNamespace(), object.GetName(), err)
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/go/ast/commentmap_test.go

    // associated with f2
    
    // f2
    func f2() {
    }
    
    func f3() {
    	i := 1 /* 1 */ + 2 // addition
    	_ = i
    }
    
    // the very last comment
    `
    
    // res maps a key of the form "line number: node type"
    // to the associated comments' text.
    var res = map[string]string{
    	" 5: *ast.File":       "the very first comment\npackage p\n",
    	" 5: *ast.Ident":      " the name is p\n",
    	" 8: *ast.GenDecl":    "imports\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. src/net/hosts_test.go

    		testLookupStaticHostAliases(t, ent.lookup, absDomainName(ent.res))
    	}
    }
    
    func testLookupStaticHostAliases(t *testing.T, lookup, lookupRes string) {
    	ins := []string{lookup, absDomainName(lookup), strings.ToLower(lookup), strings.ToUpper(lookup)}
    	for _, in := range ins {
    		_, res := lookupStaticHost(in)
    		if res != lookupRes {
    			t.Errorf("lookupStaticHost(%v): got %v, want %v", in, res, lookupRes)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. pkg/version/version.go

    			}
    			value := strings.TrimSpace(fields[1])
    			switch fields[0] {
    			case "Version":
    				res.Version = value
    			case "GitRevision":
    				res.GitRevision = value
    			case "GolangVersion":
    				res.GolangVersion = value
    			case "BuildStatus":
    				res.BuildStatus = value
    			case "GitTag":
    				res.GitTag = value
    			default:
    				// Skip unknown fields, as older versions may report other fields
    				continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy.go

    		return
    	}
    
    	removeHopByHopHeaders(res.Header)
    
    	if !p.modifyResponse(rw, res, outreq) {
    		return
    	}
    
    	copyHeader(rw.Header(), res.Header)
    
    	// The "Trailer" header isn't included in the Transport's response,
    	// at least for *http.Transport. Build it up from Trailer.
    	announcedTrailers := len(res.Trailer)
    	if announcedTrailers > 0 {
    		trailerKeys := make([]string, 0, len(res.Trailer))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/rc/WindowsResourcesIncrementalBuildIntegrationTest.groovy

                    // Use a compiler arg that will change the generated .res file
                    rcCompiler.args "-DFRENCH"
                }
            }
        }
    }
    """
            and:
            run "mainExecutable"
    
            then:
            executedAndNotSkipped ":compileMainExecutableMainRc", ":linkMainExecutable", ":mainExecutable"
        }
    
        def "stale .res files are removed when a resource source file is renamed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256_asm.go

    // If cond is not 0, sets val = -val mod p.
    //
    //go:noescape
    func p256NegCond(val *p256Element, cond int)
    
    // If cond is 0, sets res = b, otherwise sets res = a.
    //
    //go:noescape
    func p256MovCond(res, a, b *P256Point, cond int)
    
    //go:noescape
    func p256BigToLittle(res *p256Element, in *[32]byte)
    
    //go:noescape
    func p256LittleToBig(res *[32]byte, in *p256Element)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. pkg/kube/kclient/clienttest/direct.go

    	api := kubeclient.GetClient[T, TL](d.client, namespace)
    	res, err := api.Get(context.Background(), name, metav1.GetOptions{})
    	if err != nil && !kerrors.IsNotFound(err) {
    		d.t.Fatalf("get: %v", err)
    	}
    	return res
    }
    
    func (d *directClient[T, PT, TL]) List(namespace string, selector klabels.Selector) []T {
    	api := kubeclient.GetClient[T, TL](d.client, namespace)
    	res, err := api.List(context.Background(), metav1.ListOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    	req.Header.Set("Connection", "upgrade")
    	res, err := cst.c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if res.StatusCode != 101 {
    		t.Fatalf("expected 101 switching protocols; got %v, %v", res.Status, res.Header)
    	}
    	rwc, ok := res.Body.(io.ReadWriteCloser)
    	if !ok {
    		t.Fatalf("expected a ReadWriteCloser; got a %T", res.Body)
    	}
    	defer rwc.Close()
    	bs := bufio.NewScanner(rwc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top