Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 700 for tcagent (0.26 sec)

  1. docs_src/header_params/tutorial001.py

    from typing import Union
    
    from fastapi import FastAPI, Header
    
    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(user_agent: Union[str, None] = Header(default=None)):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 214 bytes
    - Viewed (0)
  2. pkg/collateral/cobra_agent.go

    //go:build agent
    // +build agent
    
    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. pilot/pkg/autoregistration/internal/health/controller.go

    	"istio.io/istio/pkg/kube/controllers"
    	istiolog "istio.io/istio/pkg/log"
    )
    
    var log = istiolog.RegisterScope("wle", "wle controller debugging")
    
    type HealthEvent struct {
    	// whether or not the agent thought the target is healthy
    	Healthy bool `json:"healthy,omitempty"`
    	// error message propagated
    	Message string `json:"errMessage,omitempty"`
    }
    
    type HealthCondition struct {
    	proxy     *model.Proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. releasenotes/notes/49029.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 49004
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 17:29:38 UTC 2024
    - 220 bytes
    - Viewed (0)
  5. docs_src/header_params/tutorial001_an_py39.py

    from typing import Annotated, Union
    
    from fastapi import FastAPI, Header
    
    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(user_agent: Annotated[Union[str, None], Header()] = None):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 230 bytes
    - Viewed (0)
  6. releasenotes/notes/27342.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 27342
    
    releaseNotes:
    - |
      **Improved** resolution of headless services via in-agent DNS to include endpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 241 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/helpers_test.go

    	req := &http.Request{}
    	req.Header = http.Header{}
    
    	ua := "short-agent"
    	req.Header.Set("User-Agent", ua)
    	uaNotTruncated := &lazyTruncatedUserAgent{req}
    	assert.Equal(t, ua, fmt.Sprintf("%v", uaNotTruncated))
    
    	ua = ""
    	for i := 0; i < maxUserAgentLength*2; i++ {
    		ua = ua + "a"
    	}
    	req.Header.Set("User-Agent", ua)
    	uaTruncated := &lazyTruncatedUserAgent{req}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 03 15:25:35 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. src/math/atan2.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    // Atan2 returns the arc tangent of y/x, using
    // the signs of the two to determine the quadrant
    // of the return value.
    //
    // Special cases are (in order):
    //
    //	Atan2(y, NaN) = NaN
    //	Atan2(NaN, x) = NaN
    //	Atan2(+0, x>=0) = +0
    //	Atan2(-0, x>=0) = -0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. platforms/software/distributions-publishing/build.gradle.kts

    }
    
    description = "The collector project for the 'publishing' portion of the Gradle distribution"
    
    dependencies {
        coreRuntimeOnly(platform(project(":core-platform")))
    
        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-basics")))
    
        pluginsRuntimeOnly(project(":signing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 13:18:41 UTC 2023
    - 398 bytes
    - Viewed (0)
  10. pkg/registry/batch/job/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Job.Store)
    	test.TestDelete(validNewJob())
    }
    
    type dummyRecorder struct {
    	agent string
    	text  string
    }
    
    func (r *dummyRecorder) AddWarning(agent, text string) {
    	r.agent = agent
    	r.text = text
    	return
    }
    
    func (r *dummyRecorder) getWarning() string {
    	return r.text
    }
    
    var _ warning.Recorder = &dummyRecorder{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top