Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 144 for NEW (0.1 sec)

  1. tensorflow/c/c_api.cc

      cond_graph->parent_inputs = inputs;
      body_graph->parent = g;
      body_graph->parent_inputs = inputs;
    
      TF_Output* cond_inputs = new TF_Output[ninputs];
      TF_Output cond_output = {nullptr, -1};
      TF_Output* body_inputs = new TF_Output[ninputs];
      TF_Output* body_outputs = new TF_Output[ninputs];
      for (int i = 0; i < ninputs; ++i) body_outputs[i] = {nullptr, -1};
      const char* name = nullptr;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    			MaxConnections: 1,
    			ConnectTimeout: durationpb.New(2 * time.Second),
    			TcpKeepalive: &networking.ConnectionPoolSettings_TCPSettings_TcpKeepalive{
    				Probes:   3,
    				Time:     durationpb.New(4 * time.Second),
    				Interval: durationpb.New(5 * time.Second),
    			},
    			MaxConnectionDuration: durationpb.New(6 * time.Second),
    		},
    	}
    
    	overrideSettings := &networking.ConnectionPoolSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

    kind: VirtualService
    metadata:
      name: default
    spec:
      hosts:
        - {{ .dstSvc }}
      http:
      - match:
        - uri:
            exact: /foo
        redirect:
          uri: /new/path
      - match:
        - uri:
            exact: /new/path
        route:
        - destination:
            host: {{ .dstSvc }}`,
    		opts: echo.CallOptions{
    			Port: echo.Port{
    				Name: "http",
    			},
    			HTTP: echo.HTTP{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. src/net/http/server.go

    	}
    }
    
    func (mux *ServeMux) registerErr(patstr string, handler Handler) error {
    	if patstr == "" {
    		return errors.New("http: invalid pattern")
    	}
    	if handler == nil {
    		return errors.New("http: nil handler")
    	}
    	if f, ok := handler.(HandlerFunc); ok && f == nil {
    		return errors.New("http: nil handler")
    	}
    
    	pat, err := parsePattern(patstr)
    	if err != nil {
    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

    			check: func(got, logs string) error {
    				if !strings.Contains(got, "Content-Length:") {
    					return errors.New("no content-length")
    				}
    				if !strings.Contains(got, "Content-Type: some/type") {
    					return errors.New("wrong content-type")
    				}
    				if strings.Contains(got, "Too-Late") {
    					return errors.New("don't want too-late header")
    				}
    				return nil
    			},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      Status s;
      // Convert the GraphDef to a Graph
      std::unique_ptr<FunctionLibraryDefinition> lib_def(
          new FunctionLibraryDefinition(OpRegistry::Global(), *library));
      GraphConstructorOptions options;
      options.allow_internal_ops = true;
      std::unique_ptr<Graph> graph(new Graph(lib_def.get()));
      s = ConvertGraphDefToGraph(options, *graphdef, graph.get());
      if (!s.ok()) return s;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  7. pkg/registry/batch/job/strategy_test.go

    		enableJobSuccessPolicy        bool
    		job                           batch.Job
    		updatedJob                    batch.Job
    		wantJob                       batch.Job
    	}{
    		"update job with a new field; updated when JobSuccessPolicy enabled": {
    			enableJobSuccessPolicy: true,
    			job: batch.Job{
    				ObjectMeta: getValidObjectMeta(0),
    				Spec: batch.JobSpec{
    					Selector:      validSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework_test.go

    }
    var nodes = []*v1.Node{
    	{ObjectMeta: metav1.ObjectMeta{Name: "node1"}},
    	{ObjectMeta: metav1.ObjectMeta{Name: "node2"}},
    }
    
    var (
    	errInjectedStatus       = errors.New(injectReason)
    	errInjectedFilterStatus = errors.New(injectFilterReason)
    )
    
    func newFrameworkWithQueueSortAndBind(ctx context.Context, r Registry, profile config.KubeSchedulerProfile, opts ...Option) (framework.Framework, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                                          data_types, outside_compilation_nodes, g,
                                          n);
    
      // In body_graph, create new _Arg/_Retval nodes, and replace lifted arg
      // nodes with the new _Arg nodes.
      std::vector<Node*> lifted_arg_nodes;
      lifted_arg_nodes.reserve(
          lifted_arg_nodes_and_outside_compilation_nodes.size());
      std::transform(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    		byteData []byte
    		md5sum   string
    	}{
    		{byteData: generateBytesData(6 * humanize.KiByte)},
    	}
    	h := md5.New()
    	h.Write(bytesData[0].byteData)
    	bytesData[0].md5sum = hex.EncodeToString(h.Sum(nil))
    
    	buffers := []*bytes.Buffer{
    		new(bytes.Buffer),
    		new(bytes.Buffer),
    	}
    	bucketInfo, err := obj.GetBucketInfo(context.Background(), bucketName, BucketOptions{})
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top