Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for foobody (0.14 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      }
    
      std::unique_ptr<FunctionBody> fbody;
      TF_RETURN_IF_ERROR(FunctionDefToBodyHelper(*fdef, n->attrs(), fld, &fbody));
    
      int original_arg_count = fbody->arg_nodes.size();
    
      TF_ASSIGN_OR_RETURN(auto lifted_arg_nodes_and_outside_compilation_nodes,
                          LiftedArgsAndOutsideCompilationNodesInFunctionBody(
                              *fbody, outside_compilation_attr_to_node));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                              conversion_metadata.function_name);
    
        std::unique_ptr<FunctionBody> fbody;
        TF_RETURN_IF_ERROR(
            FunctionDefToBodyHelper(*func_def, AttrSlice(), &graph_flib_, &fbody));
        TF_RETURN_IF_ERROR(importer.PrepareConvert(*fbody->graph));
    
        TF_ASSIGN_OR_RETURN(auto func_type, importer.InferLibFunctionType(*fbody));
    
        absl::InlinedVector<OutputTensor, 4> arg_nodes;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		})
    	}
    }
    
    // TestStoreListResourceVersion tests that if List with ResourceVersion > 0, it will wait until
    // the results are as fresh as given version.
    func TestStoreListResourceVersion(t *testing.T) {
    	fooPod := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{Namespace: "test", Name: "foo"},
    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    	barPod := &example.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. src/net/http/server.go

    	}
    }
    
    // requestBodyRemains reports whether future calls to Read
    // on rc might yield more data.
    func requestBodyRemains(rc io.ReadCloser) bool {
    	if rc == NoBody {
    		return false
    	}
    	switch v := rc.(type) {
    	case *expectContinueReader:
    		return requestBodyRemains(v.readCloser)
    	case *body:
    		return v.bodyRemains()
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    			"Connection: close\r\n\r\nUnsupported transfer encoding")
    
    		if string(gotBody) != wantBody {
    			t.Errorf("%q. body\ngot\n%q\nwant\n%q", badTE, gotBody, wantBody)
    		}
    	}
    }
    
    // Issue 31753: don't sniff when Content-Encoding is set
    func TestContentEncodingNoSniffing(t *testing.T) { run(t, testContentEncodingNoSniffing) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf:1.0
    \\--- org:bom:1.0
         \\--- compileClasspath
    
    org:leaf -> 1.0
    \\--- compileClasspath
    """
            where:
            conf << ["",
                     // this is just a sanity check. Nobody should ever write this.
                     "{ capabilities { requireCapability('org:bom-derived-platform') } }"]
        }
    
        def "shows published dependency reason"() {
            given:
            mavenRepo.with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    		name string
    		req  *Request
    		want bool
    	}{
    		{
    			name: "GET",
    			req:  &Request{Method: "GET"},
    			want: true,
    		},
    		{
    			name: "GET_http.NoBody",
    			req:  &Request{Method: "GET", Body: NoBody},
    			want: true,
    		},
    		{
    			name: "GET_body",
    			req:  &Request{Method: "GET", Body: someBody},
    			want: false,
    		},
    		{
    			name: "POST",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    			notewakeup(&sched.safePointNote)
    		}
    	}
    	if sched.runqsize != 0 {
    		unlock(&sched.lock)
    		startm(pp, false, false)
    		return
    	}
    	// If this is the last running P and nobody is polling network,
    	// need to wakeup another M to poll network.
    	if sched.npidle.Load() == gomaxprocs-1 && sched.lastpoll.Load() != 0 {
    		unlock(&sched.lock)
    		startm(pp, false, false)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    the number of arguments bound to <code>p</code> and may differ for each
    call site.
    </p>
    
    <p>
    Given the function and calls
    </p>
    <pre>
    func Greeting(prefix string, who ...string)
    Greeting("nobody")
    Greeting("hello:", "Joe", "Anna", "Eileen")
    </pre>
    
    <p>
    within <code>Greeting</code>, <code>who</code> will have the value
    <code>nil</code> in the first call, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top