Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Osage (0.09 sec)

  1. docs/ko/docs/tutorial/extra-data-types.md

        * 생성된 스키마는 이것이 `binary` "형식"의 `str`임을 명시합니다.
    * `Decimal`:
        * 표준 파이썬의 `Decimal`.
        * 요청과 응답에서 `float`와 동일하게 다뤄집니다.
    * 여기에서 모든 유효한 pydantic 데이터 자료형을 확인할 수 있습니다: <a href="https://docs.pydantic.dev/latest/usage/types/types/" class="external-link" target="_blank">Pydantic 데이터 자료형</a>.
    
    ## 예시
    
    위의 몇몇 자료형을 매개변수로 사용하는 *경로 작동* 예시입니다.
    
    === "Python 3.10+"
    
        ```Python hl_lines="1  3  12-16"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 02:45:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    	}
    
    	subs, _ := deltaWatchedResources(nil, req)
    	request := &model.PushRequest{
    		Full:   true,
    		Push:   con.proxy.LastPushContext,
    		Reason: model.NewReasonStats(model.ProxyRequest),
    
    		// The usage of LastPushTime (rather than time.Now()), is critical here for correctness; This time
    		// is used by the XDS cache to determine if a entry is stale. If we use Now() with an old push context,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/endpointshards.go

    	Provider provider.ID
    }
    
    func (sk ShardKey) String() string {
    	return string(sk.Provider) + "/" + string(sk.Cluster) // format: %s/%s
    }
    
    // MarshalText implements the TextMarshaler interface (for json key usage)
    func (sk ShardKey) MarshalText() (text []byte, err error) {
    	return []byte(sk.String()), nil
    }
    
    // EndpointShards holds the set of endpoint shards of a service. Registries update
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway.go

    // Gateways directly referencing a Service, rather than label selectors. Warning: this label is
    // intended solely for as a workaround for Knative's Istio integration, and not intended for any
    // other usage. It can, and will, be removed immediately after the new direct reference is ready for
    // use.
    const DisableGatewayPortTranslationLabel = "experimental.istio.io/disable-gateway-port-translation"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	// changes and to update pod status. On the other hand, a shorter period
    	// will cause more frequent relisting (e.g., container runtime operations),
    	// leading to higher cpu usage.
    	// Note that even though we set the period to 1s, the relisting itself can
    	// take more than 1s to finish if the container runtime responds slowly
    	// and/or when there are many container changes in one cycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/absolute-envoy-filter-operation.yaml"},
    		analyzer:   &envoyfilter.EnvoyPatchAnalyzer{},
    		expected:   []message{
    			// Test no messages are received for absolute operation usage
    		},
    	},
    	{
    		name:       "EnvoyFilterUsesReplaceOperation",
    		inputFiles: []string{"testdata/envoy-filter-replace-operation.yaml"},
    		analyzer:   &envoyfilter.EnvoyPatchAnalyzer{},
    		expected: []message{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    * When you install `"fastapi[all]"` it now also includes:
        * <a href="https://docs.pydantic.dev/latest/usage/pydantic_settings/" target="_blank"><code>pydantic-settings</code></a> - for settings management.
        * <a href="https://docs.pydantic.dev/latest/usage/types/extra_types/extra_types/" target="_blank"><code>pydantic-extra-types</code></a> - for extra types to be used with Pydantic.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    				result = append(result, gatewayConfig)
    			}
    		}
    
    		// If "gateway.istio.io/alias-for" annotation is present, any Route
    		// that binds to the gateway will bind to its alias instead.
    		// The typical usage is when the original gateway is not managed by the gateway controller
    		// but the ( generated ) alias is. This allows people to build their own
    		// gateway controllers on top of Istio Gateway Controller.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    	cadvisor := cadvisortest.NewMockInterface(mockCtrl)
    	cadvisor.EXPECT().MachineInfo().Return(&cadvisorapi.MachineInfo{}, nil).AnyTimes()
    	cadvisor.EXPECT().ImagesFsInfo().Return(cadvisorapiv2.FsInfo{
    		Usage:     400,
    		Capacity:  1000,
    		Available: 600,
    	}, nil).AnyTimes()
    	tlsOptions := &server.TLSOptions{
    		Config: &tls.Config{
    			MinVersion: 0,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top