Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 97 for growing (0.11 sec)

  1. tensorflow/c/eager/c_api_unified_experimental.h

    int TF_OutputListNumOutputs(TF_OutputList* o);
    // Return the `i`th output in the list.
    TF_AbstractTensor* TF_OutputListGet(TF_OutputList* o, int i);
    // Append a tensor at the end of the output list, growing its size by one.
    void TF_OutputListPushBack(TF_OutputList* o, TF_AbstractTensor* tensor,
                               TF_Status*);
    
    // TF_ExecuteOperation will, if in eager mode, execute, if in graph mode, maybe
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 24 11:27:00 UTC 2021
    - 7K bytes
    - Viewed (0)
  2. src/runtime/debugcall.go

    	//
    	// Debuggers rely on us running on the same thread until we get to
    	// dispatch the function they asked as to.
    	//
    	// We're going to transfer this to the new G we just created.
    	lockOSThread()
    
    	// Create a new goroutine to execute the call on. Run this on
    	// the system stack to avoid growing our stack.
    	systemstack(func() {
    		// TODO(mknyszek): It would be nice to wrap these arguments in an allocated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/doc.go

    			.Networking.DNSDomain is needed for knowing which DNS name the internal Kubernetes service has
    			.Networking.ServiceSubnet is needed for knowing which IP the internal Kubernetes service is going to point to
    			.CertificatesDir is required for knowing where all certificates should be stored
    
    	OUTPUTS:
    		Files to .CertificatesDir (default /etc/kubernetes/pki):
    		 - ca.crt
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 02 09:38:56 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  4. pkg/probe/tcp/tcp_test.go

    	}
    
    	tests := []struct {
    		host string
    		port int
    
    		expectedStatus probe.Result
    		expectedError  error
    	}{
    		// A connection is made and probing would succeed
    		{tHost, tPort, probe.Success, nil},
    		// No connection can be made and probing would fail
    		{tHost, -1, probe.Failure, nil},
    	}
    
    	prober := New()
    	for i, tt := range tests {
    		status, _, err := prober.Probe(tt.host, tt.port, 1*time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 18:23:33 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/kubeconfig/doc.go

    		From InitConfiguration
    			The API Server endpoint (AdvertiseAddress + BindPort) is required so the kubeconfig file knows where to find the control-plane
    			The KubernetesDir path is required for knowing where to put the kubeconfig files
    			The PKIPath is required for knowing where all certificates should be stored
    
    	OUTPUTS:
    		Files to KubernetesDir (default /etc/kubernetes):
    		 - admin.conf
    		 - kubelet.conf
    		 - scheduler.conf
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 13 15:13:31 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/bitmask/bitmask.go

    }
    
    // String converts mask to string
    func (s *bitMask) String() string {
    	grouping := 2
    	for shift := 64 - grouping; shift > 0; shift -= grouping {
    		if *s > (1 << uint(shift)) {
    			return fmt.Sprintf("%0"+strconv.Itoa(shift+grouping)+"b", *s)
    		}
    	}
    	return fmt.Sprintf("%0"+strconv.Itoa(grouping)+"b", *s)
    }
    
    // Count counts number of bits in mask set to one
    func (s *bitMask) Count() int {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  7. releasenotes/notes/agent-probe-keepalives.yaml

    upgradeNotes:
    - title: Health Probes will no longer re-use connections
      content: |
        Health probes using the istio-agent [health probe rewrite](https://istio.io/latest/docs/ops/configuration/mesh/app-health-check/) will
        now no longer re-use connections for the probe. This behavior was changed to match probing behavior of Kubernetes',
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 07 20:06:21 UTC 2021
    - 963 bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/SmallCharMatcher.java

    import com.google.common.base.CharMatcher.NamedFastMatcher;
    import java.util.BitSet;
    
    /**
     * An immutable version of CharMatcher for smallish sets of characters that uses a hash table with
     * linear probing to check for matches.
     *
     * @author Christopher Swenson
     */
    @GwtIncompatible // no precomputation is done in GWT
    @ElementTypesAreNonnullByDefault
    final class SmallCharMatcher extends NamedFastMatcher {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/workerApi/md5NoIsolation/kotlin/src/feynman.txt

    I was born not knowing and have had only a little time to change that here and there....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/workerApi/md5ClassloaderIsolation/groovy/src/feynman.txt

    I was born not knowing and have had only a little time to change that here and there....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86 bytes
    - Viewed (0)
Back to top