Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 118 for foobody (0.3 sec)

  1. guava/src/com/google/common/base/FinalizableReferenceQueue.java

     *       public void finalizeReferent() {
     *         references.remove(this):
     *         if (!serverSocket.isClosed()) {
     *           ...log a message about how nobody called close()...
     *           try {
     *             serverSocket.close();
     *           } catch (IOException e) {
     *             ...
     *           }
     *         }
     *       }
     *     };
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/FinalizableReferenceQueue.java

     *       public void finalizeReferent() {
     *         references.remove(this):
     *         if (!serverSocket.isClosed()) {
     *           ...log a message about how nobody called close()...
     *           try {
     *             serverSocket.close();
     *           } catch (IOException e) {
     *             ...
     *           }
     *         }
     *       }
     *     };
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. src/net/http/client_test.go

    		}
    	}))
    
    	bodyr, bodyw := io.Pipe()
    	var gotBody string
    	var wg sync.WaitGroup
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		req, _ := NewRequest("GET", cst.ts.URL, bodyr)
    		res, err := cst.c.Do(req)
    		b, err := io.ReadAll(res.Body)
    		if err != nil {
    			t.Error(err)
    		}
    		gotBody = string(b)
    	}()
    
    	select {
    	case <-reqc:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. src/net/http/response.go

    		if err != nil && err != io.EOF {
    			return err
    		}
    		if n == 0 {
    			// Reset it to a known zero reader, in case underlying one
    			// is unhappy being read repeatedly.
    			r1.Body = NoBody
    		} else {
    			r1.ContentLength = -1
    			r1.Body = struct {
    				io.Reader
    				io.Closer
    			}{
    				io.MultiReader(bytes.NewReader(buf[:1]), r.Body),
    				r.Body,
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. pkg/volume/util/subpath/subpath_windows.go

    	if err != nil {
    		return err
    	}
    
    	klog.V(4).Infof("%q already exists, %q to create", fullExistingPath, filepath.Join(toCreate...))
    	currentPath := fullExistingPath
    	// create the directories one by one, making sure nobody can change
    	// created directory into symlink by lock that directory immediately
    	for _, dir := range toCreate {
    		currentPath = filepath.Join(currentPath, dir)
    		klog.V(4).Infof("Creating %s", dir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 12:57:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. pkg/kube/inject/webhook_test.go

    			}
    
    			if res.StatusCode != http.StatusOK {
    				return
    			}
    
    			gotBody, err := io.ReadAll(res.Body)
    			if err != nil {
    				t.Fatalf("could not read body: %v", err)
    			}
    			var gotReview v1beta1.AdmissionReview
    			if err := json.Unmarshal(gotBody, &gotReview); err != nil {
    				t.Fatalf("could not decode response body: %v", err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  7. tensorflow/c/c_api.h

                                                  TF_Output* dx, TF_Status* status,
                                                  TF_Output* dy);
    
    // Create a TF_Function from a TF_Graph
    //
    // Params:
    //  fn_body - the graph whose operations (or subset of whose operations) will be
    //            converted to TF_Function.
    //  fn_name - the name of the new TF_Function. Should match the operation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  8. src/net/http/cgi/host_test.go

    		"X-Foo: val2\n"+
    		"Host: example.com\n\n",
    		expectedMap)
    }
    
    // Issue 16405: CGI+http.Transport differing uses of HTTP_PROXY.
    // Verify we don't set the HTTP_PROXY environment variable.
    // Hope nobody was depending on it. It's not a known header, though.
    func TestDropProxyHeader(t *testing.T) {
    	testenv.MustHaveExec(t)
    	h := &Handler{
    		Path: os.Args[0],
    	}
    	expectedMap := map[string]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        }
        std::unique_ptr<FunctionBody> fbody;
        TF_RETURN_IF_ERROR(
            FunctionDefToBodyHelper(*fdef, node->attrs(), library, &fbody));
    
        InlineFunctionBodyOptions inline_opts;
        TF_RETURN_IF_ERROR(InlineFunctionBody(*library, pruned_graph->get(), node,
                                              fbody.get(), inline_opts));
      }
    
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. internal/grid/muxclient.go

    		m.respMu.Lock()
    	}
    
    	defer m.respMu.Unlock()
    	m.closeLocked()
    }
    
    func (m *muxClient) closeLocked() {
    	if m.closed {
    		return
    	}
    	// We hold the lock, so nobody can modify m.respWait while we're closing.
    	if m.respWait != nil {
    		xioutil.SafeClose(m.respWait)
    		m.respWait = nil
    	}
    	m.closed = true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top