Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 349 for connectat (0.13 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/static_range_ptq.h

    //
    // `quantization_config` configures the quantization behavior for the
    // static-range PTQ.
    //
    // `signature_keys` specify the signatures that correspond to functions to be
    // quantized. `signature_def_map` connects the signature keys to
    // `SignatureDef`s.
    //
    // Returns a non-OK status when the quantization is not successful.
    // LINT.IfChange
    absl::Status QuantizeStaticRangePtq(
        absl::string_view src_saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 02:44:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. test/typeparam/graph.go

    		if exit != 0 {
    			r = append(r, mazeEdge{
    				from: m.index,
    				to:   exit,
    				dir:  direction(i),
    			})
    		}
    	}
    	return r
    }
    
    // Nodes returns the rooms connected by an edge.
    //
    //go:noinline
    func (e mazeEdge) Nodes() (mazeRoom, mazeRoom) {
    	m1, ok := zork[e.from]
    	if !ok {
    		panic("bad edge")
    	}
    	m2, ok := zork[e.to]
    	if !ok {
    		panic("bad edge")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/base/base.go

    	exitMu.Lock()
    	if exitStatus < n {
    		exitStatus = n
    	}
    	exitMu.Unlock()
    }
    
    func GetExitStatus() int {
    	return exitStatus
    }
    
    // Run runs the command, with stdout and stderr
    // connected to the go command's own stdout and stderr.
    // If the command fails, Run reports the error using Errorf.
    func Run(cmdargs ...any) {
    	cmdline := str.StringList(cmdargs...)
    	if cfg.BuildN || cfg.BuildX {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker.go

    }
    
    // Sub interface of etcd client.
    type client interface {
    	// Endpoints returns list of endpoints in etcd client.
    	Endpoints() []string
    	// Status retrieves the status information from the etcd client connected to the specified endpoint.
    	// It takes a context.Context parameter for cancellation or timeout control.
    	// It returns a clientv3.StatusResponse containing the status information or an error if the operation fails.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/ads.go

    	for _, v := range s.Clients() {
    		if v.proxy.Metadata.ClusterID == clusterID && v.proxy.IPAddresses[0] == ip {
    			connection = v
    			break
    		}
    	}
    
    	// It is possible that the envoy has not connected to this pilot, maybe connected to another pilot
    	if connection == nil {
    		return
    	}
    	if log.DebugEnabled() {
    		currentlyPending := s.pushQueue.Pending()
    		if currentlyPending != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/os/exec/exec.go

    	Stdin io.Reader
    
    	// Stdout and Stderr specify the process's standard output and error.
    	//
    	// If either is nil, Run connects the corresponding file descriptor
    	// to the null device (os.DevNull).
    	//
    	// If either is an *os.File, the corresponding output from the process
    	// is connected directly to that file.
    	//
    	// Otherwise, during the execution of the command a separate goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

        protected int idPrefixLength = 445;
    
        protected FesenClient getClient() {
            if (!fesenClient.connected()) {
                synchronized (fesenClient) {
                    if (!fesenClient.connected()) {
                        fesenClient.connect();
                    }
                }
            }
            return fesenClient;
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Apr 04 09:58:36 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. src/net/net_windows_test.go

    	//----------------------------------------------
    	//IfLuid                             : ethernet_6
    	//IfIndex                            : 11
    	//State                              : connected
    	//Metric                             : 10
    	//...
    	var name string
    	lines := bytes.Split(out, []byte{'\r', '\n'})
    	for _, line := range lines {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. maven-resolver-provider/pom.xml

          <groupId>org.apache.maven.resolver</groupId>
          <artifactId>maven-resolver-impl</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven.resolver</groupId>
          <artifactId>maven-resolver-connector-basic</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven.resolver</groupId>
          <artifactId>maven-resolver-transport-file</artifactId>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. pilot/pkg/xds/nds_test.go

    		},
    	}
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    				ConfigString: mustReadFile(t, "./testdata/nds-se.yaml"),
    			})
    
    			ads := s.ConnectADS().WithType(v3.NameTableType)
    			res := ads.RequestResponseAck(t, &discovery.DiscoveryRequest{
    				Node: &core.Node{
    					Id:       ads.ID,
    					Metadata: tt.meta.ToStruct(),
    				},
    			})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top