Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 302 for place (0.05 sec)

  1. pilot/pkg/xds/adstest.go

    // limitations under the License.
    
    package xds
    
    import (
    	"context"
    	"sync"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	sds "github.com/envoyproxy/go-control-plane/envoy/service/secret/v3"
    	"google.golang.org/genproto/googleapis/rpc/status"
    	"google.golang.org/grpc"
    
    	"istio.io/istio/pilot/pkg/model"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. pkg/kube/apimirror/probe.go

    type GRPCAction struct {
    	// Port number of the gRPC service. Number must be in the range 1 to 65535.
    	Port int32 `json:"port" protobuf:"bytes,1,opt,name=port"`
    
    	// Service is the name of the service to place in the gRPC HealthCheckRequest
    	// (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).
    	//
    	// If this is not specified, the default behavior is defined by gRPC.
    	// +optional
    	// +default=""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    //   4) Adding initializer function's ops into @main function for correct
    //      resource initialization when loading the exported model.
    //
    // Duplicating shape-determining constants is required to place constants that
    // affect the shape of a tensor to be placed in the TPU graph instead of in the
    // CPU graph, when the graph gets converted for TPU inference. This allows these
    // constants to be known at XLA compilation time.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. src/go/printer/gobuild.go

    		}
    		// Skip over \n at end of line.
    		if pos >= len(p.output) || !isNL(p.output[pos]) {
    			break
    		}
    		pos++
    
    		if blank {
    			insert = pos
    		}
    	}
    
    	// If there is a //go:build comment before the place we identified,
    	// use that point instead. (Earlier in the file is always fine.)
    	if len(p.goBuild) > 0 && p.goBuild[0] < insert {
    		insert = p.goBuild[0]
    	} else if len(p.plusBuild) > 0 && p.plusBuild[0] < insert {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/internal/trace/batchcursor.go

    	return n, timestamp(ts), nil
    }
    
    func heapInsert(heap []*batchCursor, bc *batchCursor) []*batchCursor {
    	// Add the cursor to the end of the heap.
    	heap = append(heap, bc)
    
    	// Sift the new entry up to the right place.
    	heapSiftUp(heap, len(heap)-1)
    	return heap
    }
    
    func heapUpdate(heap []*batchCursor, i int) {
    	// Try to sift up.
    	if heapSiftUp(heap, i) != i {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. tensorflow/api_template.__init__.py

    `tf` instead of `tensorflow`, following the common practice of importing
    TensorFlow via the command `import tensorflow as tf`.
    
    The primary function of this module is to import all of the public TensorFlow
    interfaces into a single place. The interfaces themselves are located in
    sub-modules, as described below.
    
    Note that the file `__init__.py` in the TensorFlow source code tree is actually
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 06:27:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. docs/fr/docs/history-design-future.md

    ## Développement
    
    Au moment où j'ai commencé à créer **FastAPI** lui-même, la plupart des pièces étaient déjà en place, la conception était définie, les exigences et les outils étaient prêts, et la connaissance des normes et des spécifications était claire et fraîche.
    
    ## Futur
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/mergelocals_test.go

    		}
    	}
    }
    
    func TestMergeLocalsIntegration(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// This test does a build of a specific canned package to
    	// check whether merging of stack slots is taking place.
    	// The idea is to do the compile with a trace option turned
    	// on and then pick up on the frame offsets of specific
    	// variables.
    	//
    	// Stack slot merging is a greedy algorithm, and there can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:43:53 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. operator/cmd/mesh/shared.go

    var installerScope = log.RegisterScope("installer", "installer")
    
    func init() {
    	// adding to remove message about the controller-runtime logs not getting displayed
    	// We cannot do this in the `log` package since it would place a runtime dependency on controller-runtime for all binaries.
    	scope := log.RegisterScope("controlleruntime", "scope for controller runtime")
    	controllruntimelog.SetLogger(log.NewLogrAdapter(scope))
    }
    
    type Printer interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/utils/fake_quant_utils.h

        }
        if (!matchPattern(max, m_Constant(&max_value))) {
          return false;
        }
        return true;  // Successfully matched and fetched.
      }
    };
    
    // Inserts a "quant.qcast" and "quant.dcast" op pair (QDQs) in place of the
    // tf.FakeQyantWithMinMax{Vars|VarsPerChannel|Args}Op
    // before the op being constant folded. Since the constant
    // folding logic will use a "arith.constant" op to replace the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top